Re: [R] Multi-plot figures with different numbers of plots indifferent rows

2005-03-29 Thread Earl F. Glynn
Anne York [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] par(mfrow=c(2,3)) #set up 2 rows x 3 colums plot(1:10) #plot 1 plot(1:10) #plot 2 plot(1:10) #plot 3 par(mfg=c(2,2)) # start next plot at 2,2 instead of 2,1 plot(1:10) # 4th plot If you want to leave the last

Re: [R] Multi-plot figures with different numbers of plots indifferent rows

2005-03-29 Thread Paul Murrell
Hi Earl F. Glynn wrote: Anne York [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] par(mfrow=c(2,3)) #set up 2 rows x 3 colums plot(1:10) #plot 1 plot(1:10) #plot 2 plot(1:10) #plot 3 par(mfg=c(2,2)) # start next plot at 2,2 instead of 2,1 plot(1:10) # 4th plot If you want to