varUsed(RRF)
varUsed()所属R语言包:RRF
Variables used in a random forest
使用的变量,在随机森林
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Find out which predictor variables are actually used in the random forest.
找出哪些预测变量中实际使用的随机森林。
用法----------Usage----------
varUsed(x, by.tree=FALSE, count=TRUE)
参数----------Arguments----------
参数:x
An object of class RRF.
对象的类RRF。
参数:by.tree
Should the list of variables used be broken down by trees in the forest?
如果使用的变量列表被分解树中的?
参数:count
Should the frequencies that variables appear in trees be returned?
如果变量出现的频率,在树回来了吗?
值----------Value----------
If count=TRUE and by.tree=FALSE, a integer vector containing frequencies that variables are used in the forest. If by.tree=TRUE, a matrix is returned, breaking down the counts by tree (each column corresponding to one tree and each row to a variable).
如果count=TRUE和by.tree=FALSE,频率变量是用来在森林中一个整数向量。如果by.tree=TRUE,返回矩阵,打破树的计数(每列对应的一棵树,每行一个变量)。
If count=FALSE and by.tree=TRUE, a list of integer indices is returned giving the variables used in the trees, else if by.tree=FALSE, a vector of integer indices giving the variables used in the entire forest.
如果count=FALSE和by.tree=TRUE,整数指数的列表返回给使用的变量在树上,否则如果by.tree=FALSE,提供使用的变量在整个森林的向量整数索引。
(作者)----------Author(s)----------
Andy Liaw
参见----------See Also----------
RRF
RRF
实例----------Examples----------
data(iris)
set.seed(17)
varUsed(RRF(Species~., iris, ntree=100))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|