Description Usage Arguments Value Examples
Send a request, and retrieve the entities
and language
responses.
This function retrieves the results from the analyzeEntities method.
1 | analyze_entities(text_body, flatten = TRUE)
|
text_body |
The text string to send to the API. |
flatten |
If |
A list containing two elements: entities
and language
.
If flatten
is TRUE
, then the entities
element is converted to a data frame.
1 2 3 4 5 6 7 8 9 10 | ## Not run:
sample_entities <- analyze_entities(text_body = "Google, headquartered in Mountain View, unveiled
the new Android phone at the Consumer Electronic Show.
Sundar Pichai said in his keynote that users love
their new Android phones.",
flatten = TRUE)
sample_entities$entities
sample_entities$language
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.