[R] Further png() question

2004-09-07 Thread Laura Quinn
Ok, I have reinstalled R-1.9.0 and this appears to have fixed the problems I was having with png(). However, I have a further question regarding png() Is it possible to pass a par() argument to the png() command? I am wanting to produce 4 plots per object, which I normally acheive on an X window

Re: [R] Further png() question

2004-09-07 Thread Sean Davis
Are you calling png before your par command--I think you should. png (file='filename') par(mfrow=c(1,4)) plot(1:10) plot(1:10) plot(1:10) plot(1:10) dev.off() See if that works for you. Sean On Sep 7, 2004, at 10:37 AM, Laura Quinn wrote: Ok, I have reinstalled R-1.9.0 and this appears to

Re: [R] Further png() question

2004-09-07 Thread Uwe Ligges
Laura Quinn wrote: Ok, I have reinstalled R-1.9.0 and this appears to have fixed the problems I was having with png(). However, I have a further question regarding png() Is it possible to pass a par() argument to the png() command? I am wanting to produce 4 plots per object, which I normally

Re: [R] Further png() question

2004-09-07 Thread partha_bagchi
AM To: [EMAIL PROTECTED] cc: Subject:[R] Further png() question Ok, I have reinstalled R-1.9.0 and this appears to have fixed the problems I was having with png(). However, I have a further question regarding png() Is it possible to pass a par() argument

RE: [R] Further png() question

2004-09-07 Thread Liaw, Andy
Insert the par() call after png(). par() is device-specific. Andy From: Laura Quinn Ok, I have reinstalled R-1.9.0 and this appears to have fixed the problems I was having with png(). However, I have a further question regarding png() Is it possible to pass a par() argument to the

Re: [R] Further png() question

2004-09-07 Thread Petr Pikal
On 7 Sep 2004 at 15:37, Laura Quinn wrote: Ok, I have reinstalled R-1.9.0 and this appears to have fixed the problems I was having with png(). However, I have a further question regarding png() Is it possible to pass a par() argument to the png() command? I am wanting to produce 4 plots

Re: [R] Further png() question

2004-09-07 Thread Laura Quinn
Thanks all! It appears I just had the par in the wrong place in my loop. Laura Quinn Institute of Atmospheric Science School of Earth and Environment University of Leeds Leeds LS2 9JT tel: +44 113 343 1596 fax: +44 113 343 6716 mail: [EMAIL PROTECTED] On Tue, 7 Sep 2004, Petr Pikal wrote: