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.
Este exercício faz parte do curso
Introduction to Text Analysis in R
Instruções do exercício
- Join
tidy_twitter
and the NRC sentiment dictionary. - Count the sentiments in
sentiment_twitter
. - Arrange the sentiment counts in descending order.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Join tidy_twitter and the NRC sentiment dictionary
sentiment_twitter <- ___ %>%
___(___("nrc"))
# Count the sentiments in sentiment_twitter
___ %>%
___(___) %>%
# Arrange the sentiment counts in descending order
___(___)