powered by
This is a wrapper for R's title function. See R's documentation for graphics::title for further details.
title( main = NULL, sub = NULL, xlab = NULL, ylab = NULL, Rcss = "default", Rcssclass = NULL, ... )
plot title
plot sub title
labels on axes
style sheet object. Leave "default" to use a style defined via RcssSetDefaultStyle()
character, style class
Further parameters, see documentation of graphics::title
# NOT RUN { # add a title plot(c(0, 1), c(0, 1), type="n", xlab="", ylab="") title("This is the title") title(sub="This is a bottom title") # }
Run the code above in your browser using DataLab