Description Usage Arguments Value Examples
Takes topics by terms matrix and returns top M terms for each topic
1 | GetTopTerms(phi, M)
|
phi |
A matrix whose rows index topics and columns index words |
M |
An integer for the number of terms to return |
Returns a data.frame
whose columns correspond to a topic and
whose m-th row correspond to the m-th top term from the input phi
.
1 2 3 4 5 6 7 | # Load a pre-formatted dtm and topic model
data(nih_sample_dtm)
data(nih_sample_topic_model)
top_terms <- GetTopTerms(phi = nih_sample_topic_model$phi, M = 5)
str(top_terms)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.