var_imp {HPiP} | R Documentation |
A graphical display of variable importance of selected features.
var_imp(x, cex.x = 1, cex.y = 2)
x |
A list of elements returned from RFE analysis.
See |
cex.x |
The size of x axis label. |
cex.y |
The size of y axis label. |
var_imp
Variable Importance Plot.
Matineh Rahmatbakhsh, matinerb.94@gmail.com.
data('example_data') x <- na.omit(example_data) #perform feature selection s <- FSmethod(x, type = 'both', cor.cutoff = 0.7, resampling.method = "repeatedcv", iter = 5, repeats = 3, metric = "ROC", verbose = TRUE) var_imp(s$rf.result$rfProfile, cex.x = 10, cex.y = 10)