Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multi-panel titles in R

Tags:

plot

r

I have an ultra short question about R

My aim is to assign a common title to a multi-panel plot generated using par, e.g.

par(mfrow=c(1,2))
plot(rnorm(1000))
plot(rnorm(1000))

So, something like "main" for the plot function, but extended to both plots. Is there a canonical way to do this?

Thanks for any answer :-)

like image 433
Federico Giorgi Avatar asked Jan 20 '10 14:01

Federico Giorgi


1 Answers

Use mtext with option outer:

set.seed(42)
oldpar <- par(mfrow=c(1,2), mar=c(3,3,1,1), oma=c(0,0,3,1))  ## oma creates space 
plot(cumsum(rnorm(100)), type='l', main="Plot A")
plot(cumsum(rnorm(100)), type='l', main="Plot B")
mtext("Now isn't this random", side=3, line=1, outer=TRUE, cex=2, font=2)
par(oldpar)
like image 180
Dirk Eddelbuettel Avatar answered Sep 19 '22 23:09

Dirk Eddelbuettel