R语言
printcp
位于 rpart
包(package)。 说明
显示已安装 rpart
对象的 cp
表。
用法
printcp(x, digits = getOption("digits") - 2)
参数
x |
类 |
digits |
要打印的数字位数。 |
细节
根据复杂性参数打印最佳修剪表。
例子
z.auto <- rpart(Mileage ~ Weight, car.test.frame)
printcp(z.auto)
## Not run:
Regression tree:
rpart(formula = Mileage ~ Weight, data = car.test.frame)
Variables actually used in tree construction:
[1] Weight
Root node error: 1354.6/60 = 22.576
CP nsplit rel error xerror xstd
1 0.595349 0 1.00000 1.03436 0.178526
2 0.134528 1 0.40465 0.60508 0.105217
3 0.012828 2 0.27012 0.45153 0.083330
4 0.010000 3 0.25729 0.44826 0.076998
## End(Not run)
也可以看看
相关用法
- R print.rpart 打印 Rpart 对象
- R predict.rpart 根据拟合的 Rpart 对象进行预测
- R prune.rpart Rpart 对象的成本复杂性修剪
- R post.rpart Rpart 对象的 PostScript 演示图
- R path.rpart 沿着路径到达 Rpart 对象的选定节点
- R plot.rpart 绘制 Rpart 对象
- R plotcp 绘制 Rpart 拟合的复杂性参数表
- R snip.rpart 剪切 Rpart 对象的子树
- R labels.rpart 为 Rpart 对象创建分割标签
- R summary.rpart 总结拟合的 Rpart 对象
- R residuals.rpart 拟合 Rpart 对象的残差
- R rpart.control Rpart 配合控制
- R car90 1990 年《消费者报告》中的汽车数据
- R rpart.exp 指数拟合的初始化函数
- R rsq.rpart 绘制不同分割的近似 R 方
- R meanvar.rpart Rpart 对象的均值-方差图
- R car.test.frame 1990 年《消费者报告》中的汽车数据
- R rpart 递归分区和回归树
- R solder.balance 印刷电路板上的元件焊接
- R cu.summary 1990 年《消费者报告》中的汽车数据
- R xpred.rpart 返回交叉验证的预测
- R kyphosis 接受过脊柱矫正操作的儿童的数据
- R stagec C期前列腺癌
- R na.rpart 处理 Rpart 对象中的缺失值
- R text.rpart 将文本放置在树状图上
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Displays CP table for Fitted Rpart Object。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。