Description Usage Arguments Value Examples
Ungroup a sentiment_by
object, stretching to the element_id
and
sentence_id
levels.
1 |
x |
A |
... |
Ignored. |
Returns a data.table with grouping variables plus:
element_id - The id number of the original vector passed to sentiment
word_count - Word count sum
med by grouping variable
sd - Standard deviation (sd
) of the sentiment/polarity score by grouping variable
ave_sentiment - Sentiment/polarity score mean
average by grouping variable
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | mytext <- c(
'do you like it? But I hate really bad dogs',
'I am the best friend.',
"Do you really like it? I'm not happy"
)
mytext <- get_sentences(mytext)
(x <- sentiment_by(mytext))
uncombine(x)
## Not run:
(y <- with(
presidential_debates_2012,
sentiment_by(
text.var = get_sentences(dialogue),
by = list(person, time)
)
))
uncombine(y)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.