Adding a splash of color
What about just the complaints? And let's add some color. Red seems appropriate. The wordcloud
package has been loaded along with tidy_twitter
.
Cet exercice fait partie du cours
Introduction to Text Analysis in R
Instructions
- Compute the word counts only for the complaints and assign it to
word_counts
. - Create a complaint word cloud of the top 50 terms, colored red.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Compute complaint word counts and assign to word_counts
word_counts <- ___ %>%
___(___) %>%
___(___)
# Create a complaint word cloud of the top 50 terms, colored red
___(
___,
___,
___,
___
)