plot.LDA_set {LDATS} | R Documentation |
Plot a set of LDATS LDA models
Description
Generalization of the plot
function to
work on a list of LDA topic models (class LDA_set
).
Usage
## S3 method for class 'LDA_set'
plot(x, ...)
Arguments
x |
An |
... |
Additional arguments to be passed to subfunctions. |
Value
NULL
.
Examples
data(rodents)
lda_data <- rodents$document_term_table
r_LDA <- LDA_set(lda_data, topics = 2, nseeds = 2)
plot(r_LDA)
[Package LDATS version 0.3.0 Index]