Learn R Programming

tidylda (version 0.0.7)

print.tidylda: Print Method for tidylda

Description

Print a summary for objects of class tidylda

Usage

# S3 method for tidylda
print(x, digits = max(3L, getOption("digits") - 3L), n = 5, ...)

Value

Silently returns x

Arguments

x

an object of class tidylda

digits

minimal number of significant digits

n

Number of rows to show in each displayed tibble.

...

further arguments passed to or from other methods

Examples

Run this code
# \donttest{
dtm <- nih_sample_dtm

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

print(lda)

lda

print(lda, digits = 2)
# }

Run the code above in your browser using DataLab