Tidying LDA output
We've loaded the LDA output lda_out from the previous exercise. While there are a number of things of interest in the output, the topics themselves are of general interest. Let's extract these values.
Diese Übung ist Teil des Kurses
Introduction to Text Analysis in R
Anleitung zur Übung
- Print a summary of the topic model output using
glimpse(). - Tidy the matrix of word probabilities.
- Arrange the topics by word probabilities in descending order.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Glimpse the topic model output
___(___)
# Tidy the matrix of word probabilities
lda_topics <- ___ %>%
___(__)
# Arrange the topics by word probabilities in descending order
___ %>%
___(___)