Re: [R] graphical parameters and acf

2007-11-12 Thread Bernardo Rangel Tura
On Sun, 2007-11-11 at 21:32 -0600, David Kaplan wrote: Hi, I'm plotting 5 autocorrelation plots on one page. Using par(mfrow=c(3,2)) everything comes out fine. However, for each plot, it prints a title on top of each plot that says Series followed by the variable name used in the plot.

Re: [R] graphical parameters and acf

2007-11-11 Thread Gabor Grothendieck
Try this: par(mfrow = 1:2) acf(cbind( = 1:10)) acf(cbind( = 1:10)) par(mfrow=c(1,1)) par(mfrow=c(1,1), oma=c(0,0,1,0)) mtext(My Title, 3, outer = TRUE, cex = par(cex.main)) Please provide reproducible code next time as requested in last line of every message to r-help. On Nov 11, 2007 10:32