ComenzarEmpieza gratis

Visualizing topics

Using what we've covered in previous chapters, let's visualize the topics produced by the LDA.

Este ejercicio forma parte del curso

Introduction to Text Analysis in R

Ver curso

Instrucciones del ejercicio

  • Keep the top 10 highest word probabilities by topic.
  • Create term2, a factor ordering term by word probability.
  • Plot term2 and the word probabilities.
  • Facet the bar plot by (i.e., ~) topic.

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

word_probs <- lda_topics %>%
  # Keep the top 10 highest word probabilities by topic
  ___(___) %>% 
  ___(___) %>% 
  ___() %>%
  # Create term2, a factor ordered by word probability
  ___(term2 = ___(___))

# Plot term2 and the word probabilities
___(___) +
  geom_col() +
  # Facet the bar plot by topic
  ___(___, scales = "free") +
  coord_flip()
Editar y ejecutar código