Re: [R] vertical lines in R plot

2013-03-11 Thread Naser Jamil
@r-project.org] > On Behalf > > Of Sarah Goslee > > Sent: Monday, March 11, 2013 8:49 AM > > To: Naser Jamil > > Cc: R help > > Subject: Re: [R] vertical lines in R plot > > > > Like this: > > > > segments(x0=c(5.0,5.5,6), y0=c(0,0,0), x1=c(

Re: [R] vertical lines in R plot

2013-03-11 Thread William Dunlap
nlap Spotfire, TIBCO Software wdunlap tibco.com > -Original Message- > From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On > Behalf > Of Sarah Goslee > Sent: Monday, March 11, 2013 8:49 AM > To: Naser Jamil > Cc: R help > Subject: Re:

Re: [R] vertical lines in R plot

2013-03-11 Thread Sarah Goslee
Like this: segments(x0=c(5.0,5.5,6), y0=c(0,0,0), x1=c(5.0,5.5,6), y1=c(0.12,0.60,0.20)) If you wanted them to extend the entire height of the plot, abline(v=c(5.0,5.5,6)) is simpler. Thanks for the reproducible example, Sarah On Mon, Mar 11, 2013 at 10:10 AM, Naser Jamil wrote: > Dear All, >

Re: [R] vertical lines in R plot

2013-03-11 Thread PIKAL Petr
ject: [R] vertical lines in R plot > > Dear All, > May I seek your suggestion on a simple issue. I want to draw vertical > lines at some positions in the following R plot. To be more specific, I > wish to draw vertical lines at d=c(5.0,5.5,6) and they should go till > p=c(0.12,0.

[R] vertical lines in R plot

2013-03-11 Thread Naser Jamil
Dear All, May I seek your suggestion on a simple issue. I want to draw vertical lines at some positions in the following R plot. To be more specific, I wish to draw vertical lines at d=c(5.0,5.5,6) and they should go till p=c(0.12,0.60,0.20) . I haven't found any way out, though made several atte