cutoff {FSelector} | R Documentation |
Cutoffs
Description
The algorithms select a subset from a ranked attributes.
Usage
cutoff.k(attrs, k)
cutoff.k.percent(attrs, k)
cutoff.biggest.diff(attrs)
Arguments
attrs |
a data.frame containing ranks for attributes in the first column and their names as row names |
k |
a positive integer in case of |
Details
cutoff.k
chooses k best attributes
cutoff.k.percent
chooses best k * 100% of attributes
cutoff.biggest.diff
chooses a subset of attributes which are significantly better than other.
Value
A character vector containing selected attributes.
Author(s)
Piotr Romanski
Examples
data(iris)
weights <- information.gain(Species~., iris)
print(weights)
subset <- cutoff.k(weights, 1)
f <- as.simple.formula(subset, "Species")
print(f)
subset <- cutoff.k.percent(weights, 0.75)
f <- as.simple.formula(subset, "Species")
print(f)
subset <- cutoff.biggest.diff(weights)
f <- as.simple.formula(subset, "Species")
print(f)
[Package FSelector version 0.34 Index]