Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
rpart是自动剪枝吗?
rpart生成的决策树比 Oracle Data Mining 生成的具有自动剪枝功能的决策树要多得多。
不,但拟合函数的默认值可能会“早”停止分裂(对于“早”的某些定义)。
查看?rpart.control您可以调整的参数。特别是,请参阅该参数minsplit和minbucket该帮助文件。如果不满足这些条件,这些停止规则将防止任何节点被拆分。
?rpart.control
minsplit
minbucket
您很可能需要使用prune()成本复杂度参数的某个最佳值来修剪树。
prune()