Re: [R] lattice with bwplot

2008-07-21 Thread Henrique Dallazuanna
Maybe you can use split argument in plot.trellis. See ?print.trellis. On Mon, Jul 21, 2008 at 2:28 PM, Roberts, Kyle <[EMAIL PROTECTED]> wrote: > Dear All, > > How come par(mfrow=c(1,2)) works with boxplot, but not with bwplot? > > This works > par(mfrow=c(1,2)) > boxplot(dv~index, depend)

[R] lattice with bwplot

2008-07-21 Thread Roberts, Kyle
Dear All, How come par(mfrow=c(1,2)) works with boxplot, but not with bwplot? This works par(mfrow=c(1,2)) boxplot(dv~index, depend) boxplot(dv~index, depend2) This does not work par(mfrow=c(1,2)) bwplot(index~dv, depend) bwplot(index~dv, depend2) Thanks, Kyle ***