findFreqTerms-methods {tm}R Documentation

Methods for Function findFreqTerms in Package ‘tm’

Description

Methods for function findFreqTerms in package tm.

Methods

object = "TermDocMatrix", lowfreq = 0, highfreq = Inf
Return those terms from object which occur more or equal often than lowfreq times and less or equal often than highfreq times. This method works for all numeric weightings but is probably most meaningful for the standard term frequency (tf) weighting of object.

Examples

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

[Package tm version 0.3-3 Index]