R决策树中的变量不分裂

时间:2018-03-30 16:13:38

标签: r decision-tree

我正在使用R中的party包来构建一个决策树,其性别作为我的变量之一(男性为1,女性为2,未知为99),我的树输出仅显示一个节点(基本上不分裂)成为女性或男性)。下面是我正在使用的代码。我希望能够看到我的目标变量(收入)是否因性别而异。

library(party)
tree <- ctree(Mean_Incomef~Gender, data = mdftrain,controls = ctree_control(mincriterion=0.95,minsplit=20))
tree
plot(tree)

0 个答案:

没有答案