lda_distribution | R Documentation |
View the distribution of your fitted LDA model.
lda_distribution(lda_model, param = "gamma", tidy = FALSE)
lda_model |
Object of class LDA). |
param |
String. Specify either "beta" to return the term distribution over topics (term per document) or "gamma" for the document distribution over. topics (i.e. hashtag pool per topic probability). |
tidy |
Logical. Specify |
Data frame or tbl of Term (beta) or document (gamma) distribution over topics.
## Not run: library(Twitmo) # load tweets (included in package) mytweets <- load_tweets(system.file("extdata", "tweets_20191027-141233.json", package = "Twitmo")) # Pool tweets into longer pseudo-documents pool <- pool_tweets(data = mytweets) pooled_dfm <- pool$document_term_matrix # fit your LDA model with 7 topics model <- fit_lda(pooled_dfm, n_topics = 7, method = "Gibbs") # Choose either "beta" to return the term distribution # over topics (term per document) or "gamma" for the document distribution over # topics (hashtag pool per topic probability) lda_distribution(model, param = "gamma") ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.