gpt4 book ai didi

r - 如何在geom_segment中获取T型箭头?

转载 作者:行者123 更新时间:2023-12-03 06:05:06 24 4
gpt4 key购买 nike

我需要使用 geom_crossbar 在 ggplot 上手动添加误差线。

我尝试过“geom_arrow”,但我找不到如何更改箭头的大小或将箭头的角度更改为 90 (就像我可以使用图中的函数箭头一样)。我得到的最接近的是“geom_segment”,我可以在其中选择箭头长度,但仍然无法更改箭头angme。

下面是我想要得到的示例: enter image description here

这是带有 geom_segment 的代码:

xaxis = c(5,6,7,8)
yaxis1 = c(3,3,2,1)
yaxis2 = c(6,5,3,3)
df = data.frame(cbind(xaxis,yaxis1,yaxis2))
ggplot(df) +
geom_crossbar(aes(ymin=yaxis1, ymax=yaxis2,
x=xaxis, y=yaxis1),
fill = alpha("black",0.5), fatten=0) +
geom_segment(mapping=aes(x=xaxis, y=yaxis1-0.4, xend=xaxis, yend=yaxis1+0.4),
color="black",
arrow=arrow(length = unit(0.25, "cm"), ends="both"))

感谢任何帮助!

最佳答案

ggplot中,您可以使用geom_errorbar向条形图添加误差线,然后使用参数width设置宽度:

library(ggplot2)
ggplot(df) +
geom_crossbar(aes(ymin=yaxis1, ymax=yaxis2,
x=xaxis, y=yaxis1),
fill = alpha("black",0.5), fatten=0) +
geom_errorbar(mapping=aes(x=xaxis, ymin=yaxis1-0.4, ymax=yaxis1+0.4),
color="black", width = 0.25)

enter image description here

这是您要找的吗?

关于r - 如何在geom_segment中获取T型箭头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60784026/

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