emotion: Detects emotion of the text

Description Usage Arguments Value See Also Examples

Description

Given input text, returns a probability distribution over 33 possible languages of what language the text was written in.

Usage

1

Arguments

text

text for analysis

version

for api version

...

additional arguments to passed to request

Value

List with emotion probability pairs

See Also

political, sentiment

Examples

1
2
3
4
5
6
emotions <- emotion("Monday: Delightful with mostly sunny skies. Highs in the low 70s.")
most.possible <- sort(unlist(emotions), decreasing = TRUE)[1:2]
cat(sprintf("Detected %s emotion with probability %0.4f.\n",
            names(most.possible)[1], most.possible[1]))
cat(sprintf("Next possible is %s with probability %0.4f.",
            names(most.possible)[2], most.possible[2]))

IndicoDataSolutions/IndicoIo-R documentation built on May 7, 2019, 6:37 a.m.