我的数据看起来像这样
> head(main)
X MYDEPV Price Income Age price20 price30
1 1 1 10 33 37 0 0
2 2 0 20 21 55 1 0
我正在尝试修剪 R 中的决策树。我收到错误“不是合法树”。这个错误是什么意思?什么是合法树?我该如何解决?
> tree <- rpart(MYDEPV ~ Price + Income + Age, main, method="class", parms = list(split = "gini"))
> tree = prune.tree(tree)
Error in prune.tree(tree) : not legitimate tree