CommencerCommencer gratuitement

Counting by product and reordering

tidy_twitter has been tokenized and stop words, including custom stop words, have been removed. You would like to visualize the differences in word counts based on complaints and non-complaints.

Cet exercice fait partie du cours

Introduction to Text Analysis in R

Afficher le cours

Instructions

  • Count words by whether or not its a complaint.
  • Keep the top 20 words by whether or not its a complaint.
  • Ungroup before reordering word as a factor by the count.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

word_counts <- tidy_twitter %>%
  # Count words by whether or not its a complaint
  ___(___, ___) %>%
  # Group by whether or not its a complaint
  group_by(___) %>%
  # Keep the top 20 words
  ___(___, ___) %>%
  # Ungroup before reordering word as a factor by the count
  ___() %>%
  ___(word2 = ___(___, ___))
Modifier et exécuter le code