Last data update: 2014.03.03

R: The most important function in this package.
youdaoLookUpR Documentation

The most important function in this package.

Description

You can use your word, API key and keyfrom in this function to get query result directly. That is to say, other functions are included in this function.

Usage

youdaoLookUp(word, api, keyfrom)

Arguments

word

The word you want to look up.

api

A Youdao API key. You can get it from http://fanyi.youdao.com/openapi.

keyfrom

A Youdao keyfrom. You can get it from http://fanyi.youdao.com/openapi.

Author(s)

Ke-Hao Wu

Examples

	library(RCurl)
	library(rjson)
	apikey = "498375134"
	keyfrom = "JustForTestYouDao"
	word = c("youdao", "China", "Homo Sapiens")
	for( i in word)
	{
		Res = youdaoLookUp(i,api=apikey,keyfrom=keyfrom)
		print(Res)
	}

Results


R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> library(RYoudaoTranslate)
Loading required package: RCurl
Loading required package: bitops
Loading required package: rjson
> png(filename="/home/ddbj/snapshot/RGM3/R_CC/result/RYoudaoTranslate/youdaoLookUp.Rd_%03d_medium.png", width=480, height=480)
> ### Name: youdaoLookUp
> ### Title: The most important function in this package.
> ### Aliases: youdaoLookUp
> ### Keywords: Youdao
> 
> ### ** Examples
> 
> 	library(RCurl)
> 	library(rjson)
> 	apikey = "498375134"
> 	keyfrom = "JustForTestYouDao"
> 	word = c("youdao", "China", "Homo Sapiens")
> 	for( i in word)
+ 	{
+ 		Res = youdaoLookUp(i,api=apikey,keyfrom=keyfrom)
+ 		print(Res)
+ 	}
                                                                                                                             youdao 
"Youdao,<U+6709><U+9053><U+589E><U+5F3A><U+7248><U+6709><U+9053>; Li Youdao,<U+674E><U+6E38><U+9053>; Youdao Translator,<U+6709><U+9053><U+7FFB><U+8BD1><U+5B98>" 
                                                                                                                                                                                                                                                                                  China 
"China,<U+4E2D><U+56FD><U+4E2D><U+534E><U+4EBA><U+6C11><U+5171><U+548C><U+56FD>China (<U+4E50><U+56E2>); China Mobile,<U+4E2D><U+56FD><U+79FB><U+52A8><U+4E2D><U+56FD><U+4E2D><U+56FD><U+79FB><U+52A8><U+901A><U+4FE1>; China Daily,<U+4E2D><U+56FD><U+65E5><U+62A5><U+4E2D><U+56FD><U+65E5><U+62A5><U+793E><U+4E2D><U+56FD><U+65E5><U+62A5><U+82F1><U+6587><U+7248>" 
                                                                                                                                                                       Homo Sapiens 
"Homo sapiens,<U+667A><U+4EBA><U+73B0><U+4EE3><U+4EBA><U+667A><U+4EBA><U+79CD>; Homo sapiens sapiens,<U+665A><U+671F><U+667A><U+4EBA><U+73B0><U+4EE3><U+4EBA><U+665A><U+671F><U+667A><U+4EBA>; homo-sapiens,<U+4EBA><U+7C7B>" 
> 
> 
> 
> 
> 
> dev.off()
null device 
          1 
>