Title {hacks} | R Documentation |
Creates a title for the graphical device. This function is useful for adding
overall titles on layouts described by the mfrow
or mfcol
graphical parameters.
Title(...)
... |
arguments passed to title . |
Nathan Stephens
par(mfrow=c(2,2)) for(i in 1:4){ plot(airquality[,i],type='l') title(names(airquality)[i],line=0.5) } Title('Air Quality',cex.main=2,line=3)