Skip to content
Prev 86510 / 398513 Next

common title for graphs in a (1x2) layout

Something like this?

def.par <- par(no.readonly = TRUE)
nf <- layout(matrix(c(1,2), 1,2,byrow=T), c(1,1), c(1,1), T)
plot(rnorm(10,0,1))
plot(rnorm(10,0,0.1))
mtext("Common Title", adj=-1.0, line=2)
par(def.par)


on 2/15/2006 11:22 AM Rodrigo Tsai said the following: