[R] common title for graphs in a (1x2) layout
Chuck Cleland
ccleland at optonline.net
Wed Feb 15 19:00:08 CET 2006
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)
> ______________________________________________
> R-help at stat.math.ethz.ch 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
More information about the R-help
mailing list