varimpplot.r

来自「本程序是基于linux系统下c++代码」· R 代码 · 共 16 行

R
16
字号
### Name: varImpPlot
### Title: Variable Importance Plot
### Aliases: varImpPlot
### Keywords: regression classif tree

### ** Examples

set.seed(4543)
data(mtcars)
mtcars.rf <- randomForest(mpg ~ ., data=mtcars, ntree=1000, keep.forest=FALSE,
                          importance=TRUE)
varImpPlot(mtcars.rf)



⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?