RYandexTranslate
R package to translate text using Yandex Translate API
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
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
Metadata Files
README.md
RYandexTranslate
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
- Website: https://changelogg.io
- Twitter: mukul_chaware
- Repositories: 7
- Profile: https://github.com/mukul13
GitHub Events
Total
Last Year
Committers
Last synced: almost 3 years ago
Top Committers
| Name | 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
- Homepage: https://github.com/mukul13/RYandexTranslate
- Documentation: http://cran.r-project.org/web/packages/RYandexTranslate/RYandexTranslate.pdf
- License: MIT + file LICENSE
-
Latest release: 1.0
published over 10 years ago
Rankings
Maintainers (1)
Dependencies
- RCurl * imports
- httr * imports
- jsonlite * imports