mallet (version 1.0)

mallet.top.words: Get the most probable words and their probabilities for one topic.

Description

This function returns a data frame with two columns, one containing the most probable words as character values, the second containing the weight assigned to that word in the word weights vector you supplied.

Usage

mallet.top.words(topic.model, word.weights, num.top.words)

Arguments

topic.model
The model returned by MalletLDA
word.weights
A vector of word weights for one topic, usually a row from the topic.words matrix from mallet.topic.words.
num.top.words
The number of most probable words to return. If not specified, defaults to 10.