print.rpart(rpart)
print.rpart()所属R语言包:rpart
Print an Rpart Object
打印的软件rpart对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function prints an rpart object. It is a method for the generic function print of class rpart.
此功能打印rpart对象。它是一种通用的功能print类rpart的。
用法----------Usage----------
## S3 method for class 'rpart'
print(x, minlength=0, spaces=2, cp, digits= getOption("digits"), ...)
参数----------Arguments----------
参数:x
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函数返回的结果。
参数:minlength
Controls the abbreviation of labels: see labels.rpart.
控制的标签:labels.rpart的缩写。
参数:spaces
the number of spaces to indent nodes of increasing depth.
数的空格来缩进深度增加的节点。
参数:digits
the number of digits of numbers to print.
打印的数字的位数的数目。
参数:cp
prune all nodes with a complexity less than cp from the printout. Ignored if unspecified.
清理所有节点的复杂度小于cp打印输出。如果未指定忽略。
参数:...
arguments to be passed to or from other methods. </table>
参数被传递到或从其他方法。 </ TABLE>
Details
详细信息----------Details----------
This function is a method for the generic function print for class "rpart". It can be invoked by calling print for an object of the appropriate class, or directly by calling print.rpart regardless of the class of the object.
这个函数是一个方法的通用函数print类"rpart"。它可以通过调用适当的类的一个目的的打印,或直接通过调用print.rpart不管该对象的类调用。
副作用----------Side Effects----------
A semi-graphical layout of the contents of x$frame is printed. Indentation is used to convey the tree topology. Information for each node includes the node number, split, size, deviance, and fitted value. For the "class" method, the class probabilities are also printed.
一个半图形的布局x$frame的内容被打印出来。缩进被用来传达树的拓扑结构。每个节点的信息包含的节点数量,分割,尺寸,偏差,拟合值。对于"class"方法中,类的概率也印。
参见----------See Also----------
print, rpart.object, summary.rpart, printcp
print,rpart.object,summary.rpart,printcp
实例----------Examples----------
z.auto <- rpart(Mileage ~ Weight, car.test.frame)
z.auto
## Not run: node), split, n, deviance, yval[#不运行节点),分割,正偏差,yval]
* denotes terminal node
1) root 60 1354.58300 24.58333
2) Weight>=2567.5 45 361.20000 22.46667
4) Weight>=3087.5 22 61.31818 20.40909 *
5) Weight<3087.5 23 117.65220 24.43478
10) Weight>=2747.5 15 60.40000 23.80000 *
11) Weight<2747.5 8 39.87500 25.62500 *
3) Weight<2567.5 15 186.93330 30.93333 *
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|