| glance.tidylda {tidylda} | R Documentation |
Glance method for tidylda objects
Description
glance constructs a single-row summary "glance" of a tidylda
topic model.
Usage
## S3 method for class 'tidylda'
glance(x, ...)
Arguments
x |
an object of class |
... |
other arguments passed to methods,currently not used |
Value
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
Examples
dtm <- nih_sample_dtm
lda <- tidylda(data = dtm, k = 10, iterations = 100, burnin = 75)
glance(lda)
[Package tidylda version 0.0.5 Index]