gpt4 book ai didi

r - 使用 ctree 显示每个节点的体积,在 R 中绘图

转载 作者:行者123 更新时间:2023-12-04 05:20:13 26 4
gpt4 key购买 nike

任何人都可以告诉我如何在每个节点中添加音量,而不是最终节点音量

t <- ctree(is_return ~ a + b + c)    
plot(t, type="simple")

我的树看起来像

enter image description here

我如何修改该图,它会在每个圆形节点上显示 N=,而不仅仅是黑色或最终节点。

谢谢

最佳答案

enter image description here

这个想法是指定用于绘制内部节点的面板函数。

我生成了一些数据,树

lls <- data.frame(N = gl(3, 50, labels = c("A", "B", "C")), 
a = rnorm(150) + rep(c(1, 0,150)),
b = runif(150))
pond= sample(1:5,150,replace=TRUE)
tt <- ctree(formula=N~a+b, data=lls,weights = pond)

自定义内部绘图功能。我画了一个圆圈,在那里我写了一些权重。
innerWeights <- function(node){
grid.circle(gp = gpar(fill = "White", col = 1))
mainlab <- paste( node$psplit$variableName, "\n(n = ")
mainlab <- paste(mainlab, sum(node$weights),")" , sep = "")
grid.text(mainlab,gp = gpar(col='red'))
}

我绘制树
plot(tt, type='simple', inner_panel = innerWeights)

PS:结果取决于随机生成的数据,因此您可能不会得到相同的图。

关于r - 使用 ctree 显示每个节点的体积,在 R 中绘图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13772715/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com