plot.result: Showing result benchmark

Description Usage Arguments Details Value Examples

View source: R/plot.result.R

Description

Showing result benchmark

Usage

1
2
## S3 method for class 'result'
plot(data, y)

Arguments

data

A data.frame with data result metrics model and Lustgarten’s stability measure

y

what is showing , please selected : stability, acc, auc, mcc.

Details

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

Value

graph showing

Examples

 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')

pavhrablis/benchmarkFS documentation built on Feb. 5, 2021, 12:47 a.m.