在R中添加部分水平线和ggplot2

时间:2015-06-12 13:34:38

标签: r ggplot2

我有以下数据:

mydf = read.table(text="
name a b
x 10 15
y 20 25
z 35 45
", header = T)

我想按如下方式创建一个情节:

plot example

我无法在x = 50处从点到垂直线添加水平线。这些线(蓝色)已在上图中手动绘制。我尝试了以下代码,但它不起作用:

ggplot(mydf, aes(a, b)) + geom_point()+ 
     geom_vline(xintercept=50)+ 
     geom_line(aes(x=50,y=b, group=name))

1 个答案:

答案 0 :(得分:9)

尝试geom_segment

ggplot(mydf, aes(a, b)) +
  geom_point()+ 
  geom_vline(xintercept=50) + 
  geom_segment(aes(x=a, xend=50, y=b, yend=b), colour="blue")

plot