Description Usage Arguments Value Examples
Remove documents from a TermDocumentMatrix
or DocumentTermMatrix
not meeting a rowSums
/
colSums
threshold. Useful for removing empty documents.
1 | filter_documents(x, min = 1)
|
x |
A |
min |
A minimal threshold that a documents row/column must sum to. |
Returns a TermDocumentMatrix
or DocumentTermMatrix
.
1 2 3 4 | (x <-with(presidential_debates_2012, q_dtm(dialogue, paste(time, tot, sep = "_"))))
filter_documents(x)
(y <- with(presidential_debates_2012, q_tdm(dialogue, paste(time, tot, sep = "_"))))
filter_documents(y)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.