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
="YOUR API KEY"
api_key=get_translation_direction(api_key) directions
To detect the language of the specified text
=detect_language(api_key,text="आप कैसे है?") data
To translate text to the specified language
=translate(api_key,text="how are you?",lang="en-hi" ) data
##Resources