如何在R中的ctree,plot中修改终端节点

时间:2019-03-19 13:34:53

标签: r party ctree

我想获得这样的画面, enter image description here

以下是我现在所拥有的: enter image description here

如何修改代码以获取图片?我的意思是,如何删除终端节点中的$ err和$ distribution? 我已阅读Rdocumentation的派对图,但徒劳无功。 预先感谢。

library(openxlsx)
library('partykit')
data<- read.xlsx("2005.XLSX", sheet = 1)
tree<-ctree(inc_total~.,data=data,control = ctree_control(maxdepth = 5))
plot(tree,type='simple',inner_panel=node_inner(tree,id=FALSE),
     terminal_panel = node_terminal(tree,digits=1,id=FALSE,fill=c('white','white'),width = 14,gp=gpar(fontsize=5)))
mean((data$inc_total-predict(tree))^2)

0 个答案:

没有答案