document_weights {LDATS} | R Documentation |
Calculate document weights for a corpus
Description
Simple calculation of document weights based on the average number of words in a document within the corpus (mean value = 1).
Usage
document_weights(document_term_table)
Arguments
document_term_table |
Table of observation count data (rows:
documents, columns: terms. May be a class |
Value
Vector of weights, one for each document, with the average sample receiving a weight of 1.0.
Examples
data(rodents)
document_weights(rodents$document_term_table)
[Package LDATS version 0.3.0 Index]