findFreqTerms-methods {tm}R Documentation

Methods for Function findFreqTerms in Package 'tm'

Description

Methods for function findFreqTerms in package tm.

Methods

object = "TermDocMatrix", lowfreq = "numeric", highfreq = "numeric"
Return those terms from object which occur more or equal often than lowfreq times and less or equal often than highfreq times.

Examples

data("crude")
tdm <- TermDocMatrix(crude)
findFreqTerms(tdm, 2, 3)

[Package tm version 0.2 Index]