作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要使用 geom_crossbar 在 ggplot 上手动添加误差线。
我尝试过“geom_arrow”,但我找不到如何更改箭头的大小或将箭头的角度更改为 90 (就像我可以使用图中的函数箭头一样)。我得到的最接近的是“geom_segment”,我可以在其中选择箭头长度,但仍然无法更改箭头angme。
这是带有 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)
这是您要找的吗?
关于r - 如何在geom_segment中获取T型箭头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60784026/
我是一名优秀的程序员,十分优秀!