Re: [R] Arranging multiple lattice plots in one page

2007-11-16 Thread Markus Gesmann
: +44 (0)207 826 9080│ dir: +44 (0)207 826 9085│fax: +44 (0)207 826 9090 www.libero.uk.com AUTHORISED AND REGULATED BY THE FINANCIAL SERVICES AUTHORITY -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Judith Flores Sent: 16 November 2007 15:47 To: RHelp Subje

Re: [R] Arranging multiple lattice plots in one page

2007-11-16 Thread Gabor Grothendieck
par is for classic graphics -- not grid-based graphics like lattice. See: http://tolstoy.newcastle.edu.au/R/help/05/06/5629.html On Nov 16, 2007 10:46 AM, Judith Flores <[EMAIL PROTECTED]> wrote: > Hi, > > I am trying to arrange 3 different lattice plots in > one page. I tried defining par and l

[R] Arranging multiple lattice plots in one page

2007-11-16 Thread Judith Flores
Hi, I am trying to arrange 3 different lattice plots in one page. I tried defining par and layout without success. What I wrote looks something like this: par(mfrow=c(3,1)) barplot(...) xyplot(...) barplot(...) ___