[R] plotting multiple plot in same graph

2012-04-10 Thread arunkumar1111
Hi I have four sets of datas x1, x2, x3,y I want to sactter plot between (x1,y) and line chart between (x2 ,y) and (x3,y) all these should come in a single graph Can anyone help - Thanks in Advance Arun -- View this message in context:

Re: [R] plotting multiple plot in same graph

2012-04-10 Thread Jessica Streicher
Hello Arunkamar! Basically: plot(x1,y) lines(x2,y) lines(x3,y) You might need to adjust the first plot so all data is shown. For that you could use something like plot(c(min(x),max(x)) , c(min(y),max(y)),type=n) x is all data from x1,x2,x3. type=n says that these points won't be shown in the

Re: [R] plotting multiple plot in same graph

2012-04-10 Thread R. Michael Weylandt
A slightly easier formulation of the second proposal from Jessica: plot(c(0,0) , xlim = range(x1, x2, x3), ylim = range(y), type = n) will set the canvas correctly. On Tue, Apr 10, 2012 at 10:10 AM, Jessica Streicher j.streic...@micromata.de wrote: Hello Arunkamar! Basically: plot(x1,y)