ComeçarComece de graça

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.

Este exercício faz parte do curso

Introduction to Text Analysis in R

Ver curso

Instruções do exercício

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

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

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 = ___(___, ___))
Editar e executar o código