Re: [R] two curves at one graph

2008-05-19 Thread Jim Lemon
hanen wrote: i try to use par(new=TRUE) i get them at the same graph but the y_axis and x_axis are drowen with two unevenly graduations that graph become unreadable. Hi Hanen, If you want to plot two sets of values that fit into the same range, plot the one with the larger range first, then use

Re: [R] two curves at one graph

2008-05-18 Thread jim holtman
plot(...) par(new=TRUE) plot(..., axes=FALSE, xlab='', ylab='') # prevent redraw of the axis axis(4) # add secondary y-axis on the right. On Sun, May 18, 2008 at 4:44 PM, hanen <[EMAIL PROTECTED]> wrote: > > i try to use par(new=TRUE) i get them at the same graph but the y_axis and > x_axis ar

Re: [R] two curves at one graph

2008-05-18 Thread Rolf Turner
?lines ?points On 19/05/2008, at 8:44 AM, hanen wrote: i try to use par(new=TRUE) i get them at the same graph but the y_axis and x_axis are drowen with two unevenly graduations that graph become unreadable. -- View this message in context: http://www.nabble.com/two-curves-at- one-graph-tp

[R] two curves at one graph

2008-05-18 Thread hanen
i try to use par(new=TRUE) i get them at the same graph but the y_axis and x_axis are drowen with two unevenly graduations that graph become unreadable. -- View this message in context: http://www.nabble.com/two-curves-at-one-graph-tp17307590p17307590.html Sent from the R help mailing list archi