Learn R Programming

ecce

ecce offers some functions which translate English sentence into Chinese, or translate Chinese sentence into English. Learn more in vignette("ecce") or help(package = "ecce"). You can visit https://cxy.cc/rproj/ecce/ for the latest information.

Installation

# Install development version via GitHub
remotes::install_github("chuxinyuan/ecce")
# Install from CRAN
install.packages("ecce")

Configure the ID and PASSWORD for the Youdao API

To use the ecce package, user 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.

cat(
  '\n# ID and PASSWORD of Youdao Translation',
  'app_key = "Your Youdao API ID"',
  'app_secret = "Your Youdao API PASSWORD"',
  file = '~/.Renviron', sep = '\n', append = TRUE
)

Usage

Get started with pass a Chinese or English sentence into the translation function. In addition, also support obtain the pinyin of the Chinese character, so that you can more easily understand the pronunciation of the Chinese character.

# Example-1
translate("我喜欢中国")

# Example-2
translate("I like China")

# Example-3
translate_view("我喜欢中国")

# Example-4
translate_view("I like China")

# Example-5
pinyin("时间序列模型")

License

ecce is free and open source software, licensed under MIT + file LICENSE.

Copy Link

Version

Install

install.packages('ecce')

Monthly Downloads

165

Version

3.0.3

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Xinyuan Chu

Last Published

April 11th, 2025

Functions in ecce (3.0.3)

translate_view

Open a Youdao website browse translation results
pinyin

Obtain and label Chinese pinyin
translate

Translate English sentence into Chinese, or translate Chinese sentence into English