| glance.tidylda | R Documentation |
tidylda objectsglance constructs a single-row summary "glance" of a tidylda
topic model.
## S3 method for class 'tidylda'
glance(x, ...)
x |
an object of class |
... |
other arguments passed to methods,currently not used |
glance returns a one-row tibble with the
following columns:
num_topics: the number of topics in the model
num_documents: the number of documents used for fitting
num_tokens: the number of tokens covered by the model
iterations: number of total Gibbs iterations run
burnin: number of burn-in Gibbs iterations run
dtm <- nih_sample_dtm
lda <- tidylda(data = dtm, k = 10, iterations = 100, burnin = 75)
glance(lda)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.