Naming four topics
Now let's compare the previous solution with a four topic model, lda_topics3.
Diese Übung ist Teil des Kurses
Introduction to Text Analysis in R
Anleitung zur Übung
- 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?
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Select the top 15 terms by topic and reorder term
word_probs3 <- ___ %>%
___(___) %>%
___(___) %>%
___() %>%
___(___)
# Plot word_probs3, color and facet based on topic
___(
___,
___(___)
) +
___(___) +
___(___) +
coord_flip()