-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtutorial.Rmd
88 lines (64 loc) · 1.72 KB
/
tutorial.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
title: "RYandexTranslate"
author: "Mukul Chaware"
date: "9 March 2016"
output: html_document
---
R Interface to Yandex Translate API. [Yandex Translate](https://translate.yandex.com/) is
a statistical machine translation system. The system translates separate words, complete
texts, and webpages. This package can be used to detect language from text and to
translate it to supported target language.
###Installation
To install from CRAN repository:
```{r eval=F}
install.packages("RYandexTranslate")
```
To install from github:
```{r eval=F}
library(devtools)
install_github("mukul13/RYandexTranslate")
```
To get free API key, sign up [here](https://tech.yandex.com/translate/doc/dg/concepts/api-overview-docpage/)
```{r eval=F}
api_key="YOUR API KEY"
```
###Examples
To list all functions supported by RYandexTranslate package
```{r eval=F}
library(RYandexTranslate)
ls("package:RYandexTranslate")
```
```{r eval=F}
#>"detect_language" "get_translation_direction" "translate"
```
To get a list of translation directions supported by the service
```{r eval=F}
directions=get_translation_direction(api_key)
head(directions$dirs)
```
```{r eval=F}
#>"az-ru" "be-bg" "be-cs" "be-de" "be-en" "be-es"
```
To detect the language of the specified text
```{r eval=F}
data=detect_language(api_key,text="how are you?")
data
```
```{r eval=F}
#>"en"
```
To translate text to the specified language
```{r eval=F}
data=translate(api_key,text="how are you?",lang="en-hi")
data
```
```{r eval=F}
#>$lang
#>[1] "en-hi"
#>
#>$text
#>[1] "आप कैसे हैं?"
```
###Resources
* [Github repo](https://github.com/mukul13/RYandexTranslate)
* [Yandex Translate API](https://tech.yandex.com/translate/doc/dg/concepts/About-docpage)