为x轴的指定间隔添加水平线到ggplot()

时间:2013-12-01 11:40:47

标签: r ggplot2

我想在现有的绘图中添加水平线,但我只想绘制x轴某些间隔的线条。

例如,我想在X = 1:5和y = 50时有一条水平线。

我会使用existing_plot+geom_hline(yintercept = 50)

是否也可以某种方式指定x值?

2 个答案:

答案 0 :(得分:26)

您可以使用geom_segment()添加具有您自己定义的起点和终点的线段(不仅是水平/垂直线)。

ggplot(mtcars,aes(mpg,qsec))+geom_point()+
  geom_segment(aes(x=15,xend=20,y=18,yend=18))

enter image description here

答案 1 :(得分:7)

您可以使用geom_line

qplot(x=x,y=y,data=data.frame(x=1:10,y=100:1)) +
  geom_line(data=data.frame(x=1:5,y=50))

enter image description here