Re: [R] side by side plots

2008-01-07 Thread John Kane
?par and have a look at mfcol or mfrow. Example exp<-cbind(abs(round(rnorm(10),2)*10), seq(100, 200, by=10)) ref<-cbind(abs(round(rnorm(10),2)*10), seq(100, 200, by=10)) op <- par(mfrow=c(1,2)) plot(ref, col="red") plot(exp, col="blue") par(op) --- [EMAIL PROTECTED] wrote: > Hello everyone, > >

Re: [R] side by side plots

2008-01-07 Thread Domenico Vistocco
[EMAIL PROTECTED] wrote: > Hello everyone, > > I have an overlay plot it's nice but you can't see all the data. I would > like to know if there is a way to get a plot that gives a side by side > plot so that each plot would be next to each other. The two plots have > the same data are of different

Re: [R] side by side plots

2008-01-07 Thread Dylan Beaudette
On Monday 07 January 2008, [EMAIL PROTECTED] wrote: > Hello everyone, > > I have an overlay plot it's nice but you can't see all the data. I would > like to know if there is a way to get a plot that gives a side by side > plot so that each plot would be next to each other. The two plots have > the

Re: [R] side by side plots

2008-01-07 Thread Sundar Dorai-Raj
[EMAIL PROTECTED] said the following on 1/7/2008 2:59 PM: > Hello everyone, > > I have an overlay plot it's nice but you can't see all the data. I would > like to know if there is a way to get a plot that gives a side by side > plot so that each plot would be next to each other. The two plots h

[R] side by side plots

2008-01-07 Thread hpbenton
Hello everyone, I have an overlay plot it's nice but you can't see all the data. I would like to know if there is a way to get a plot that gives a side by side plot so that each plot would be next to each other. The two plots have the same data are of different species. At the moment this is the