Plot a varSelRF object
Plots a varSelRF object, showing the initial variable importances, and the change in OOB error with the number of variables.
## S3 method for class 'varSelRF' plot(x, nvar = NULL, which = c(1, 2), ...)
x |
The varSelRF object. |
nvar |
The number of variables for which the initial variable importances should be shown. By default, only the 30 with the largest importance are shown. |
which |
which plots should be drawn, either |
... |
Not used. |
This function is only used for its side effect of producing plots.
The OOB Error rate is biased down (and can be severely biased down) because we do (potentially many) rounds of reducing the set of predictor variables until we minimize this OOB error rate.
Ramon Diaz-Uriarte rdiaz02@gmail.com
Diaz-Uriarte, R. and Alvarez de Andres, S. (2005) Variable selection from random forests: application to gene expression data. Tech. report. http://ligarto.org/rdiaz/Papers/rfVS/randomForestVarSel.html
x <- matrix(rnorm(25 * 30), ncol = 30) x[1:10, 1:2] <- x[1:10, 1:2] + 2 cl <- factor(c(rep("A", 10), rep("B", 15))) rf.vs1 <- varSelRF(x, cl, ntree = 200, ntreeIterat = 100, vars.drop.frac = 0.2) rf.vs1 plot(rf.vs1)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.