cld3 | R Documentation |
The function detect_language()
is vectorised and guesses the the language of each string
in text
or returns NA
if the language could not reliably be determined. The function
detect_language_multi()
is not vectorised and detects all languages inside the entire
character vector as a whole.
detect_language(text)
detect_language_mixed(text, size = 3)
text |
a string with text to classify or a connection to read from |
size |
number of languages to detect |
# Vectorized best guess
text <- c("To be or not to be?", "Ce n'est pas grave.",
"Hij heeft de klok horen luiden maar weet niet waar de klepel hangt.")
detect_language(text)
# Multiple languages in one text (doesn't seem to work well)
detect_language_mixed(text)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.