meanvar.rpart(rpart)
meanvar.rpart()所属R语言包:rpart
Mean-Variance Plot for an Rpart Object
均值 - 方差图为一个软件rpart的对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Creates a plot on the current graphics device of the deviance of the node divided by the number of observations at the node. Also returns the node number.
创建一个积除以观测值的数量的节点,在该节点上的越轨在当前图形上的移动设备。同时返回节点数量。
用法----------Usage----------
meanvar(tree, ...)
## S3 method for class 'rpart'
meanvar(tree, xlab="ave(y)", ylab="ave(deviance)", ...)
参数----------Arguments----------
参数:tree
fitted model object of class rpart. This is assumed to be the result of some function that produces an object with the same named components as that returned by the rpart function.
拟合模型对象的类rpart。这被认为是一些函数,该函数产生的对象具有相同的命名组件rpart函数返回的结果。
参数:xlab
x-axis label for the plot.
X轴标签的图。
参数:ylab
y-axis label for the plot.
Y轴标签的图。
参数:...
additional graphical parameters may be supplied as arguments to this function.
作为这个函数的参数,可以提供额外的图形参数。
值----------Value----------
an invisible list containing the following vectors is returned.
一种无形的列表,其中包含以下向量被返回。
参数:x
fitted value at terminal nodes (yval).
在终端节点(yval)的拟合值。
参数:y
deviance of node divided by number of observations at node.
越轨行为的节点分成若干意见节点。
参数:label
node number.
节点号码。
副作用----------Side Effects----------
a plot is put on the current graphics device.
有一个图是把当前的图形设备。
参见----------See Also----------
plot.rpart.
plot.rpart。
实例----------Examples----------
z.auto <- rpart(Mileage ~ Weight, car.test.frame)
meanvar(z.auto, log='xy')
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|