RYandexTranslate

R package to translate text using Yandex Translate API

https://github.com/mukul13/ryandextranslate

Science Score: 10.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
    1 of 2 committers (50.0%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (8.4%) to scientific vocabulary
Last synced: 11 months ago · JSON representation

Repository

R package to translate text using Yandex Translate API

Basic Info
  • Host: GitHub
  • Owner: mukul13
  • License: other
  • Language: R
  • Default Branch: master
  • Size: 223 KB
Statistics
  • Stars: 17
  • Watchers: 2
  • Forks: 6
  • Open Issues: 2
  • Releases: 0
Created over 10 years ago · Last pushed almost 7 years ago
Metadata Files
Readme License

README.md

RYandexTranslate

Travis-CI Build Status Downloads cran version

R package to translate text using Yandex Translate API.

Installation

To install from CRAN repository:

R install.packages("RYandexTranslate")

To install from github:

R library(devtools) install_github("mukul13/RYandexTranslate")

To get free API key, sign up here

Examples

To list all functions supported by RYandexTranslate package

R library(RYandexTranslate) ls("package:RYandexTranslate") ```R

>"detectlanguage" "gettranslation_direction" "translate"

```

To get a list of translation directions supported by the service

R api_key="YOUR API KEY" directions=get_translation_direction(api_key) head(directions) ```

>"az-ru" "be-bg" "be-cs" "be-de" "be-en" "be-es"

``` To detect the language of the specified text

R data=detect_language(api_key,text="how are you?") data ```R

>"en"

```

To translate text to the specified language

R data=translate(api_key,text="how are you?",lang="en-hi" ) ```R

>$lang

>[1] "en-hi"

>

>$text

>[1] "आप कैसे हैं?"

```

Resources

Owner

  • Name: Mukul Chaware
  • Login: mukul13
  • Kind: user
  • Location: Bangalore

GitHub Events

Total
Last Year

Committers

Last synced: almost 3 years ago

All Time
  • Total Commits: 21
  • Total Committers: 2
  • Avg Commits per committer: 10.5
  • Development Distribution Score (DDS): 0.048
Past Year
  • Commits: 0
  • Committers: 0
  • Avg Commits per committer: 0.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
Mukul Chaware m****3@g****m 20
Frank Loesche F****e@P****k 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: almost 2 years ago

All Time
  • Total issues: 3
  • Total pull requests: 1
  • Average time to close issues: over 2 years
  • Average time to close pull requests: 10 months
  • Total issue authors: 3
  • Total pull request authors: 1
  • Average comments per issue: 1.0
  • Average comments per pull request: 0.0
  • Merged pull requests: 1
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • yuanzhouIR (1)
  • statkclee (1)
  • Nikhil5harma (1)
Pull Request Authors
  • floesche (1)
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • cran 215 last-month
  • Total docker downloads: 43,390
  • Total dependent packages: 0
  • Total dependent repositories: 1
  • Total versions: 1
  • Total maintainers: 1
cran.r-project.org: RYandexTranslate

R Interface to Yandex Translate API

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 215 Last month
  • Docker Downloads: 43,390
Rankings
Docker downloads count: 0.6%
Forks count: 9.6%
Stargazers count: 13.7%
Dependent repos count: 23.9%
Average: 25.5%
Dependent packages count: 28.7%
Downloads: 76.5%
Maintainers (1)
Last synced: 11 months ago

Dependencies

DESCRIPTION cran
  • RCurl * imports
  • httr * imports
  • jsonlite * imports