Title {hacks}R Documentation

Create a Device Title

Description

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.

Usage

Title(...)

Arguments

... arguments passed to title.

Author(s)

Nathan Stephens

See Also

title

Examples

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)

[Package hacks version 0.1-5 Index]