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
wrote:
> Hello Arunkamar!
>
> Basically:
>
> plot(x1,y)
> lines(x2,y)
> line
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
t
2 matches
Mail list logo