Visualizing non-complaints
Now let's visualize the word counts associated with non-complaints.
Este ejercicio forma parte del curso
Introduction to Text Analysis in R
Instrucciones del ejercicio
- Only keep the non-complaints.
- Create a bar plot using the new
word_counts. - Title the plot "Non-Complaint Word Counts".
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
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"
___(___)