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
Hi ?segments segments(x0=c(5.0,5.5,6), y0=c(0,0,0), y1=c(0.12,0.60,0.20)) Regards Petr > -Original Message- > From: r-help-boun...@r-project.org [mailto:r-help-bounces@r- > project.org] On Behalf Of Naser Jamil > Sent: Monday, March 11, 2013 3:10 PM > To: R help > Subject: [R] vertical