Re: [R] Contour plots of four two-dimensional matrices

2009-03-15 Thread David Winsemius
You would use layout to set up the page in base graphics. It sets up the page to receive multiple plots. Unfortunately, this will *not* give you side by side plots because filled.contour is restricted to a full page per its help page layout(matrix(c(1,2,3,4), 2,2 byrow=TRUE) for (i in 1:4)

Re: [R] Contour plots of four two-dimensional matrices

2009-03-15 Thread Thomas Levine
I want to plot them side by side. On Sun, Mar 15, 2009 at 12:41 PM, David Winsemius wrote: > What is it that you want to do with these 4 plots? Overlay them with > different color contours or plot them side-by-side on the same page? > > ?par # for filled.contour but the implementation will be di

Re: [R] Contour plots of four two-dimensional matrices

2009-03-15 Thread David Winsemius
What is it that you want to do with these 4 plots? Overlay them with different color contours or plot them side-by-side on the same page? ?par # for filled.contour but the implementation will be different for those two options. contourplot is is a lattice plotting function. See Figure 6.1

[R] Contour plots of four two-dimensional matrices

2009-03-15 Thread Thomas Levine
I have four large two-dimensional matrices of which I want to create contour plots. Something like filled.contour() contourplot() works but only gives me one plot at a time. If I combine the four matrices into one three-dimensional matrix, which I'll name "seven", there should be a way of doing s