Re: [R] creating overall title for plots made with par(mfrow=c(2, 2))

2008-08-06 Thread Arthur Roberts
Dear Mark, I asked a similar question, yesterday. The answer is: par(mfrow=c(1,2),oma=c(0,0,2,0)) plot(x) plot(x) title("My Title", outer=TRUE) You need to set up a margin for the title and set the title to outer. I hope this helps. Best wishes, Art On Aug 5, 2008, at 4:05 PM, Mark Kimpe

Re: [R] creating overall title for plots made with par(mfrow=c(2, 2))

2008-08-05 Thread Mark Kimpel
Ouch! I had searched the archives and read over ?par and ?plot, but sure missed the post of today. Thanks, Mark On Tue, Aug 5, 2008 at 7:27 PM, Marc Schwartz <[EMAIL PROTECTED]>wrote: > on 08/05/2008 06:05 PM Mark Kimpel wrote: > >> I'm making some plots on the same page and would like to include

Re: [R] creating overall title for plots made with par(mfrow=c(2, 2))

2008-08-05 Thread Marc Schwartz
on 08/05/2008 06:05 PM Mark Kimpel wrote: I'm making some plots on the same page and would like to include an overall title instead of individual main titles as they are similar and their x and y axis labels are sufficient to distinguish them. Is there a way to assign an overall "main" to this p