cfs {FSelector} | R Documentation |
The algorithm finds attribute subset using correlation and entropy measures for continous and discrete data.
cfs(formula, data)
formula |
a symbolic description of a model |
data |
data to process |
The alorithm makes use of best.first.search
for searching the attribute subset space.
a character vector containing chosen attributes
Piotr Romanski
data(iris) subset <- cfs(Species~., iris) f <- as.simple.formula(subset, "Species") print(f)