Dear all, Many thanks for your help, especially for RSiteSearch().
The problem was that I used mtext **before** the plots. best regards Rodrigo ---------- Forwarded message ---------- From: Chuck Cleland <[EMAIL PROTECTED]> Date: Feb 15, 2006 4:00 PM Subject: Re: [R] common title for graphs in a (1x2) layout To: Rodrigo Tsai <[EMAIL PROTECTED]> Cc: [email protected] Rodrigo Tsai wrote: > Dear all, > > Many thanks for the help suggesting the use of "layout" cmd. > > How to insert a title in a 1x2 layout? The title is related to both graphs. > I looked for it in help, unsuccessfully. > > Thanks in advance, > Rodrigo. > > my reproductible code: > ---------------------------------------------------------------------- > > def.par <- par(no.readonly = TRUE) > > nf <- layout(matrix(c(1,2), 1,2,byrow=T), c(1,1), c(1,1), T) > > layout.show(nf) > > > > plot(rnorm(10,0,1)) > > plot(rnorm(10,0,0.1)) > > par(def.par) > > ---------------------------------------------------------------------- > > [[alternative HTML version deleted]] RSiteSearch("Overall Title") def.par <- par(no.readonly = TRUE) par(oma = c(0, 0, 3, 0)) nf <- layout(matrix(c(1,2), 1,2,byrow=T), c(1,1), c(1,1), T) layout.show(nf) plot(rnorm(10,0,1)) plot(rnorm(10,0,0.1)) mtext("Centered Overall Title", outer = TRUE) par(def.par) Or without layout(), something like this: par(mfrow=c(1,2), oma=c(0,0,2,0)) plot(1:10) plot(1:10) title("Centered Overall Title", outer=TRUE) > ______________________________________________ > [email protected] mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html > -- Chuck Cleland, Ph.D. NDRI, Inc. 71 West 23rd Street, 8th floor New York, NY 10010 tel: (212) 845-4495 (Tu, Th) tel: (732) 452-1424 (M, W, F) fax: (917) 438-0894 [[alternative HTML version deleted]] ______________________________________________ [email protected] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
