Counting the NRC sentiments
The fourth dictionary included with the tidytext package is the nrc dictionary. Let's start our exploration with sentiment counts.
Diese Übung ist Teil des Kurses
Introduction to Text Analysis in R
Anleitung zur Übung
- I usually do this for you, but start with loading the
tidyverseandtidytextpackages. - Count the number of words associated with each sentiment in
nrc. - Arrange the counts in descending order.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Load the tidyverse and tidytext packages
___(___)
___(___)
# Count the number of words associated with each sentiment in nrc
___(___) %>%
___(___) %>%
# Arrange the counts in descending order
___(___)