ecce offers some functions which translate English words into Chinese, or translate Chinese words into English. Learn more in vignette("ecce")
or help(package = "ecce")
. You can visit https://cxy.rbind.io/ecce/ for the latest information.
To use the ecce package, users need to first register with the Youdao Wisdom Cloud AI open platform, and then open the text translation application. Then put your Youdao API ID and PASSWORD in the following code and run it once.
if (!file.exists("~/.Renviron")){
file.create("~/.Renviron")
}
file_path = "~/.Renviron"
file = file(file_path, open = "a")
comment = "# ID and PASSWORD of Youdao Translation"
writeLines(comment, file)
code_lines = c(
"app_key = \"Your Youdao API ID\"",
"app_secret = \"Your Youdao API PASSWORD\""
)
for (code in code_lines) {
writeLines(code, file)
}
close(file)