LoslegenKostenlos loslegen

Visualizing non-complaints

Now let's visualize the word counts associated with non-complaints.

Diese Übung ist Teil des Kurses

Introduction to Text Analysis in R

Kurs anzeigen

Anleitung zur Übung

  • Only keep the non-complaints.
  • Create a bar plot using the new word_counts.
  • Title the plot "Non-Complaint Word Counts".

Interaktive Übung

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

word_counts <- tidy_twitter %>% 
  # Only keep the non-complaints
  ___(___) %>% 
  count(word) %>% 
  filter(n > 150)

# Create a bar plot using the new word_counts
ggplot(___, aes(___, ___)) +
  ___() +
  coord_flip() +
  # Title the plot "Non-Complaint Word Counts"
  ___(___)
Code bearbeiten und ausführen