ComeçarComece de graça

Naming four topics

Now let's compare the previous solution with a four topic model, lda_topics3.

Este exercício faz parte do curso

Introduction to Text Analysis in R

Ver curso

Instruções do exercício

  • Select the top 15 terms by topic and reorder term.
  • Plot word_probs3, color and facet based on topic.
  • What would you name these four topics?

Exercício interativo prático

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

# Select the top 15 terms by topic and reorder term
word_probs3 <- ___ %>% 
  ___(___) %>% 
  ___(___) %>% 
  ___() %>%
  ___(___)

# Plot word_probs3, color and facet based on topic
___(
  ___, 
  ___(___)
) +
  ___(___) +
  ___(___) +
  coord_flip()
Editar e executar o código