Learn R Programming

tidylda (version 0.0.7)

glance.tidylda: Glance method for tidylda objects

Description

glance constructs a single-row summary "glance" of a tidylda topic model.

Usage

# S3 method for tidylda
glance(x, ...)

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

Arguments

x

an object of class tidylda

...

other arguments passed to methods,currently not used

Examples

Run this code
# \donttest{
dtm <- nih_sample_dtm

lda <- tidylda(data = dtm, k = 10, iterations = 100, burnin = 75)

glance(lda)
# }

Run the code above in your browser using DataLab