[R] Multiple plots per page

2005-12-16 Thread Bill Hunsicker
R-help, I am trying to run a number of plots and want to generate 45 plots with 9 pages per plot. I sent an email about four hours ago, but my email has been funky, I apologize in advance if this message is duplicate. Regards, Bill Bill Hunsicker RF Micro Devices 7625 Thorndike Road Gree

Re: [R] multiple plots per page

2005-12-16 Thread Earl F. Glynn
"Bill Hunsicker" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > R-help, > > I would like to place nine (3X3) plots per page. I am not properly > implement mfrow(3,3) in the script below: Does this help? jpeg("3x3.jpg") oldpar <- par( mfcol=c(3,3) ) plot(1) plot(2) plot(3) plot(4)

[R] multiple plots per page

2005-12-16 Thread Bill Hunsicker
R-help, I would like to place nine (3X3) plots per page. I am not properly implement mfrow(3,3) in the script below: jpeg("xyplot.jpg") #names output file my_args <- commandArgs() #sets up to take args from dos batch command mfcol(3,3) #set page for 3X3 TEMPS <- c(-15,25,85)#list of temps VBATS