WeightFunction {tm} | R Documentation |
Construct a weighting function for term-document matrices.
WeightFunction(x, name, acronym)
x |
A function which takes a |
name |
A character naming the weighting function. |
acronym |
A character giving an acronym for the name of the weighting function. |
An object of class WeightFunction
which extends the class
function
representing a weighting function.
weightCutBin <- WeightFunction(function(m, cutoff) m > cutoff,
"binary with cutoff", "bincut")