LoslegenKostenlos loslegen

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.

Diese Übung ist Teil des Kurses

Introduction to Text Analysis in R

Kurs anzeigen

Anleitung zur Übung

  • 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.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Compute complaint word counts and assign to word_counts
word_counts <- ___ %>% 
  ___(___) %>% 
  ___(___)

# Create a complaint word cloud of the top 50 terms, colored red
___(
  ___, 
  ___, 
  ___, 
  ___
)
Code bearbeiten und ausführen