View source: R/features.ranking.R
ranking.feature | R Documentation |
Function for ranking selected variables
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
## Not run:
class <- data$class
data$class <- NULL
list.index.cross <- cross.val(x = data,
y = decisions,
method = 'kfoldcv',
params.cv = list(niter = 10, k = 3))
list.selected.var <- feature.selection(x = data,
y = class,
method = 'fs.utest',
list.index.cross = list.index.cross,
params = list(adjust = 'holm'))
ranking.var <- ranking.feature(list.selected.var = list.selected.var)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.