feat.agg | R Documentation |
Use Borda count to get the final feature order.
feat.agg(fs.rank.list)
fs.rank.list |
A data frame of feature orders by different feature selectors. |
A list with components:
fs.order |
Final feature order. |
fs.rank |
Aggregated rank list by Borda count. |
Wanchang Lin
feat.rank.re
, feat.mfs
data(abr1)
dat <- preproc(abr1$pos[,200:400], method="log10")
cls <- factor(abr1$fact$class)
## feature selection without resampling
fs <- feat.mfs(dat, cls, method=c("fs.anova","fs.rf","fs.rfe"),
is.resam=FALSE)
## rank aggregation
fs.1 <- feat.agg(fs$fs.rank)
names(fs.1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.