Counting sentiment
The tidy_twitter
dataset has been loaded for you. Let's see what sort of sentiments are most prevalent in our Twitter data.
Cet exercice fait partie du cours
Introduction to Text Analysis in R
Instructions
- Join
tidy_twitter
and the NRC sentiment dictionary. - Count the sentiments in
sentiment_twitter
. - Arrange the sentiment counts in descending order.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Join tidy_twitter and the NRC sentiment dictionary
sentiment_twitter <- ___ %>%
___(___("nrc"))
# Count the sentiments in sentiment_twitter
___ %>%
___(___) %>%
# Arrange the sentiment counts in descending order
___(___)