Description Usage Arguments Details Value Examples
Showing result benchmark
1 2 |
data |
A |
y |
what is showing , please selected : stability, acc, auc, mcc. |
The function creates a graph showing Lustgarten's stability measure ASM (N) for top-N variables N = 5,10,15,20,30,40,50,75,100 for selected FS The function creates a graph showing the dependence of the selected metrics model(N) N = 5,10,15,20,30,40,50,75,100 for selected FS
graph showing
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | decisions <- data$class
data$class <- NULL
result <- benchmarkFS(data,
decisions,
methods = c('fs.utest', 'fs.mrmr'),
method = 'kfoldcv',
params.cv = list(k = 3, iter = 10),
level.cor = 0.75,
params = list(adjust = 'SGoF', feature.number = 10, alpha = 0.05),
asm = c('fs.utest', 'fs.mrmr'),
model = c('fs.utest', 'fs.mrmr')
)
plot.result(result$stability, 'stability')
plot.result(result$model, 'acc')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.