Naming four topics
Now let's compare the previous solution with a four topic model, lda_topics3
.
Cet exercice fait partie du cours
Introduction to Text Analysis in R
Instructions
- 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?
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Select the top 15 terms by topic and reorder term
word_probs3 <- ___ %>%
___(___) %>%
___(___) %>%
___() %>%
___(___)
# Plot word_probs3, color and facet based on topic
___(
___,
___(___)
) +
___(___) +
___(___) +
coord_flip()