Re: [R] More complicated multi-plot layouts?

2009-07-25 Thread Mark Knecht
Thanks guys! I appreciate the pointers. Cheers, Mark On Sat, Jul 25, 2009 at 5:57 PM, Gabor Grothendieck wrote: > See ?layout > > opar <- par(mar = c(2, 2, 2, 2)) > m <- matrix(c(1, 1, 1, 2, 2, 2, >       1, 1, 1, 2, 2, 2, >       3, 4, 5, 9, 10, 11, >       6, 7, 8, 12, 13, 14), 4, byrow = TRUE)

Re: [R] More complicated multi-plot layouts?

2009-07-25 Thread Gabor Grothendieck
See ?layout opar <- par(mar = c(2, 2, 2, 2)) m <- matrix(c(1, 1, 1, 2, 2, 2, 1, 1, 1, 2, 2, 2, 3, 4, 5, 9, 10, 11, 6, 7, 8, 12, 13, 14), 4, byrow = TRUE) layout(m) for(i in 1:14) plot(i) On Sat, Jul 25, 2009 at 8:34 PM, Mark Knecht wrote: > Hi, >   I made the attached pictur

Re: [R] More complicated multi-plot layouts?

2009-07-25 Thread jim holtman
Use 'layout' to define the regions: may need to change the 'mar' layout(rbind(c(1,1,2,2), c(3,4,7,8), c(5,6,9,10)), height=c(2,1,1)) layout.show(10) plot(0) plot(1) for (i in 1:4) plot(i) for (i in 11:14) plot(i) On Sat, Jul 25, 2009 at 8:34 PM, Mark Knecht wrote: > Hi, >   I made the atta