Description Usage Arguments Details Value Examples
View source: R/features.ranking.R
Function for ranking selected variables
1 | ranking.feature(list.selected.var)
|
list.selected.var |
A |
Ranking is calculated based on selected variables that are more common in cross-validation iterations.
A data.frame
with the result of the rating of the variables that were most often performed in each iteration of cross-validation
1 2 3 4 5 6 7 8 9 10 11 12 | 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'))
ranking.var <- ranking.feature(list.selected.var = list.selected.var)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.