Re: [R] skip plot/blank plot on purpose (multi-plot question)

2009-07-28 Thread Greg Snow
Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r- project.org] On Behalf Of Greg Snow Sent: Monday, July 27, 2009 5:42 PM To: Mark Knecht; Bert Gunter Cc: r-help Subject: Re: [R] skip plot/blank plot on purpose (multi-plot question) Also look at the frame

[R] skip plot/blank plot on purpose (multi-plot question)

2009-07-27 Thread Mark Knecht
Hi, Say that I've got a function that has the following code in it: X11(width=10, height=10) layout(rbind(c(1,1,1,2,2,2), c(3,4,5,6,7,8), c(9,10,11,12,13,14)), height=c(3,1,1)) layout.show(14) Sometimes when I call this function it will turn out by design that one or more of the data sets

Re: [R] skip plot/blank plot on purpose (multi-plot question)

2009-07-27 Thread Bert Gunter
Well, all of this can be done quite nicely with lattice graphics: ?xyplot (See, e.g. the skip argument) 1) Is there some generic way to call plot and have it plot, but it plots nothing so I don't see anything at all in position 12? This could be a blank plot function I call when I notice the

Re: [R] skip plot/blank plot on purpose (multi-plot question)

2009-07-27 Thread Mark Knecht
On Mon, Jul 27, 2009 at 12:21 PM, Bert Guntergunter.ber...@gene.com wrote: Well, all of this can be done quite nicely with lattice graphics: ?xyplot (See, e.g. the skip argument) 1) Is there some generic way to call plot and have it plot, but it plots nothing so I don't see anything at all

Re: [R] skip plot/blank plot on purpose (multi-plot question)

2009-07-27 Thread Greg Snow
Also look at the frame and plot.new functions. -Original Message- From: Mark Knecht markkne...@gmail.com To: Bert Gunter gunter.ber...@gene.com Cc: r-help r-help@r-project.org Sent: 7/27/09 1:56 PM Subject: Re: [R] skip plot/blank plot on purpose (multi-plot question) On Mon, Jul 27