powered by
Dotchart of variable importance as measured by a Random Forest
varImpPlot(x, sort=TRUE, n.var=min(30, nrow(x$importance)), type=NULL, class=NULL, scale=TRUE, main=deparse(substitute(x)), ...)
Invisibly, the importance of the variables that were plotted.
An object of class randomForest.
randomForest
Should the variables be sorted in decreasing order of importance?
How many variables to show? (Ignored if sort=FALSE.)
sort=FALSE
arguments to be passed on to importance
importance
plot title.
Other graphical parameters to be passed on to dotchart.
dotchart
Andy Liaw andy_liaw@merck.com
randomForest, importance
set.seed(4543) data(mtcars) mtcars.rf <- randomForest(mpg ~ ., data=mtcars, ntree=1000, keep.forest=FALSE, importance=TRUE) varImpPlot(mtcars.rf)
Run the code above in your browser using DataLab