Description Usage Arguments Details Value Examples
View source: R/stability.selection.R
Compute Lustgarten's stability measure ASM (N) dependence for top-N variables N = 5,10,15,20,30,40,50,75,100
1 | stability.selection.top.var(list.selected.var, list.index.cross)
|
list.selected.var |
A |
list.index.cross |
A |
Compute Lustgarten's stability measure ASM (N) dependence for top-N variables N = 5,10,15,20,30,40,50,75,100 for variables selected in cross-validation
A data.frame
with the result Lustgarten's stability measure ASM (N) dependence for top-N variables N = 5,10,15,20,30,40,50,75,100
1 2 3 4 5 6 7 8 9 10 11 | class <- data$class
data$class <- NULL
list.index.cross <- cross.validation(x = data, y = class, method= 'cv.kfold', k = 3, niter = 10)
list.selected.var <- feature.selection(x = data,
y = class,
method = 'fs.utest',
list.index.cross = indexes,
params = list(adjust = 'holm'))
result.stability <- stabilty.selection.top.var(list.selected.var, list.index.cross)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.