varImpPlot(RRF)
varImpPlot()所属R语言包:RRF
Variable Importance Plot
变量重要性图
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Dotchart of variable importance as measured by a Random Forest
作为衡量一个随机森林的变量重要性Dotchart
用法----------Usage----------
varImpPlot(x, sort=TRUE, n.var=min(30, nrow(x$importance)),
type=NULL, class=NULL, scale=TRUE,
main=deparse(substitute(x)), ...)
参数----------Arguments----------
参数:x
An object of class RRF.
对象的类RRF。
参数:sort
Should the variables be sorted in decreasing order of importance?
如果变量重要性递减的顺序进行排序?
参数:n.var
How many variables to show? (Ignored if sort=FALSE.)
多少个变量来说明了什么? (如果忽略sort=FALSE。)
参数:type, class, scale
arguments to be passed on to importance
参数被传递给importance
参数:main
plot title.
图称号。
参数:...
Other graphical parameters to be passed on to dotchart.
其他图形来传递参数到dotchart。
值----------Value----------
Invisibly, the importance of the variables that were plotted.
不可见的,绘制的变量的重要性。
(作者)----------Author(s)----------
Andy Liaw <a href="mailto:andy\_liaw@merck.com">andy\_liaw@merck.com</a>
参见----------See Also----------
RRF, importance
RRF,importance
实例----------Examples----------
set.seed(4543)
data(mtcars)
mtcars.rf <- RRF(mpg ~ ., data=mtcars, ntree=1000, keep.forest=FALSE,
importance=TRUE)
varImpPlot(mtcars.rf)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|