Description Usage Arguments Value References See Also Examples
This function plots the feature ranking results from a fitted 'RaSE'
object via ggplot2
. In the figure, x-axis represents the feature number and y-axis represents the selected percentage of each feature in B1 subspaces.
1 2 3 4 5 6 7 |
object |
fitted |
main |
title of the plot. Default = |
xlab |
the label of x-axis. Default = 'feature'. |
ylab |
the label of y-axis. Default = 'selected percentage'. |
... |
additional arguments. |
a 'ggplot'
object.
Tian, Y. and Feng, Y., 2021. RaSE: Random subspace ensemble classification. Journal of Machine Learning Research, 22(45), pp.1-93.
Rase
.
1 2 3 4 5 6 7 8 9 10 11 | set.seed(0, kind = "L'Ecuyer-CMRG")
train.data <- RaModel("classification", 1, n = 100, p = 50)
xtrain <- train.data$x
ytrain <- train.data$y
# fit RaSE classifier with QDA base classifier
fit <- Rase(xtrain, ytrain, B1 = 50, B2 = 50, iteration = 1, base = 'qda',
cores = 2, criterion = 'ric')
# plot the selected percentage of each feature appearing in B1 subspaces
RaPlot(fit)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.