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
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
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. I
want to suppress those titles, but I also want a general
3 matches
Mail list logo