gpt4 book ai didi

r - 绘制带有悬挂叶子的水平树状图? (右)

转载 作者:行者123 更新时间:2023-12-01 01:08:14 29 4
gpt4 key购买 nike

我想创建一个带有水平标签的树状图,但让叶子根据它们的高度悬挂,而不是仅仅下降到图的边缘。

例子:

par(mfrow = c(1,2))
hc <- hclust(dist(USArrests), "ave")
plot(hc) # a plot with hanging branches
plot(as.dendrogram(hc), horiz = TRUE) # a horizontal plot, but the branches are not hanging

enter image description here

关于如何编程的任何建议?

谢谢。

最佳答案

您可以更改 hang 的值在 as.dendrogram功能。

par(mfrow = c(1,2))
hc <- hclust(dist(USArrests), "ave")
plot(hc)
plot(as.dendrogram(hc, hang=0.02), horiz = TRUE)

关于r - 绘制带有悬挂叶子的水平树状图? (右),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17088136/

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