如何使用此结构制作高级绘图

时间:2015-09-19 14:20:00

标签: r ggplot2

我正在尝试制作一个特定的图表来显示我的数据。它由一个ID和4个值组成,第一个是应该根据值在x轴上移位的值,第二个和第三个是间隔的开始和结束,第四个是一个值是一部分的值数据点的位置应该与其他点对齐。我用油漆画了一张照片来展示我想要的东西:

enter image description here

以下是相应的数据:

id <- c(1,2,3,4,5,6)
v1 <- c(3,4,3,6,5,1)
v2 <- c(5,6,6,9,8,4)
v3 <- c(10,12,12,15,12,13)
v4 <- c(1,2,1,1,4,3)
df <- data.frame(id,v1,v2,v3,v4)

  id v1 v2 v3 v4
1  1  3  5 10  1
2  2  4  6 12  2
3  3  3  6 12  1
4  4  6  9 15  1
5  5  5  8 12  4
6  6  1  4 13  3

我和ggplot2很熟悉,间隔看起来像置信区间,所以也许我可以做些什么呢?非常感谢!

1 个答案:

答案 0 :(得分:7)

您需要geom_pointgeom_segmentgeom_text的组合:

ggplot(df) +
  geom_point(aes(x=id,y=v1), size=4, color="red") +
  geom_segment(aes(x=id, xend=id, y=v2, yend=v3), size=2) +
  geom_text(aes(x=id, y=16, label=v4)) +
  scale_x_continuous(breaks=id) +
  coord_flip() +
  theme_bw()

给出:

enter image description here

另一种选择是使用geom_errorbar代替geom_segment

ggplot(df) +
  geom_point(aes(x=id,y=v1), size=4, color="red") +
  geom_errorbar(aes(x=id, ymin=v2, ymax=v3), size=2, width=0.2) +
  geom_text(aes(x=id, y=16, label=v4)) +
  scale_x_continuous(breaks=id) +
  coord_flip() +
  theme_bw()

这导致:

enter image description here