LDAvis {sentopics} | R Documentation |
Visualize a LDA model using LDAvis
Description
This function call LDAvis to create a dynamic visualization of an estimated topic model.
Usage
LDAvis(x, ...)
Arguments
x |
an |
... |
further arguments passed on to |
Details
The CRAN release of LDAvis does not support UTF-8 characters
and automatically reorder topics. To solve these two issues, please install
the development version of LDAvis from github
(devtools::install_github("cpsievert/LDAvis")
).
Value
Nothing, called for its side effects.
See Also
Examples
lda <- LDA(ECB_press_conferences_tokens)
lda <- fit(lda, 100)
LDAvis(lda)
[Package sentopics version 0.7.3 Index]