The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

RYandexTranslate

R package to translate text using Yandex Translate API.

##Installation

To install RYandexTranslate package:

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

To get free API key, sign up here

##Examples

To list all functions supported by RYandexTranslate package

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

To get a list of translation directions supported by the service

api_key="YOUR API KEY"
directions=get_translation_direction(api_key)

To detect the language of the specified text

data=detect_language(api_key,text="आप कैसे है?")

To translate text to the specified language

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

##Resources

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.