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[#无法运行节点),分割,N,越轨,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:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|