Learn R Programming

ecce (version 3.0.3)

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

Description

When you pass in an English or Chinese sentence, this function will calls the Youdao text translation API for R to return the corresponding type of Chinese or English representation.

Usage

translate(input, from = "auto", to = "auto")

Value

The translation results about target language.

Arguments

input

An English or Chinese sentence.

from

The source language, an optional parameter.

to

The target language, an optional parameter.

Examples

Run this code
if (FALSE) {
  translate("I like China")
  translate("quarto", from = "en", to = "zh-CHS")
}

Run the code above in your browser using DataLab