get_lang {languagelayeR} | R Documentation |
Get language
Description
Detect language from a character string.
Usage
get_lang(query, api_key = NULL)
Arguments
query |
the character string you want to detect the language from. |
api_key |
your API key. |
Details
Takes a character string, returns a data.frame with the available values.
Value
Returns a data.frame with the detected languages, in descending order of probability. Values are : language_code, language_name, probability (length of the provided query text and how well it is identified as a language), percentage (confidence margin between multiple matches), and reliable_result (whether or not the API is completely confident about the main match).
Note
Before running a function of this package for the first time, you need to get your API key.
Examples
## Not run:
get_lang(query = "I really really love R and that's a good thing, right?", api_key = "apikey")
## End(Not run)
[Package languagelayeR version 1.2.4 Index]