makeTitle {GenomeGraphs} | R Documentation |
Creates an object of class Title which can be used to add a title to the plot
makeTitle(text, cex, color, size)
text |
The text that will make up the title |
cex |
Font size of the title |
color |
Font color of the title |
size |
Size of the viewport in which the title resides |
Object of class Title
Steffen Durinck and Jim Bullard
~put references to the literature/web site here ~
##---- Should be DIRECTLY executable !! ---- ##-- ==> Define data, use random, ##-- or do help(data=index) for the standard data sets. ## The function is currently defined as function (text, cex, color, size) { dp <- getClass("Title")@prototype@dp if (!missing(cex)) setPar(dp, "cex", cex) if (!missing(color)) setPar(dp, "color", color) if (!missing(size)) setPar(dp, "size", size) new("Title", title = text, dp = dp) }