Re: [R] Plot Axes

2010-11-11 Thread Gavin Simpson
On Thu, 2010-11-11 at 01:41 -0800, dpender wrote: > Thanks Jim, > > The next issue is how i get the RP lines to cut the axes. The lines either > cut the x axis at D=35 or the y axis at H=4.5. > > How do I set the axes so that the lines start and end on the axes? > > http://r.789695.n4.nabble.co

Re: [R] Plot Axes

2010-11-11 Thread dpender
Thanks Jim, The next issue is how i get the RP lines to cut the axes. The lines either cut the x axis at D=35 or the y axis at H=4.5. How do I set the axes so that the lines start and end on the axes? http://r.789695.n4.nabble.com/file/n3037496/plot.jpeg -- View this message in context: htt

Re: [R] Plot Axes

2010-11-10 Thread jim holtman
apply the xlim/ylim in the initial plot plot(..., xlim=range(H2, H.10, H.20, H.50, H.100), ylim=range(D2, D.10, D.20, D.50, D.100)) On Wed, Nov 10, 2010 at 12:50 PM, dpender wrote: > > R community, > > I am creating a bivariate return level plot by adding calculated return > period values as lin

Re: [R] Plot Axes

2010-11-10 Thread dpender
http://r.789695.n4.nabble.com/file/n3036574/plot.jpeg -- View this message in context: http://r.789695.n4.nabble.com/Plot-Axes-tp3036571p3036574.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list https

[R] Plot Axes

2010-11-10 Thread dpender
R community, I am creating a bivariate return level plot by adding calculated return period values as lines onto an existing plot using the following code with the points representing the return periods. plot(H2,D2,pch="+",axes=TRUE) points(H.10,D.10, type="l",col="blue") points(H.20,D.20, type=