powered by
This is a wrapper for R's par function. See R's documentation for graphics::par for further details.
par(Rcss = "default", Rcssclass = NULL, ...)
style sheet object. Leave "default" to use a style defined via RcssSetDefaultStyle()
character, style class
Further parameters, see documentation of graphics::par
# NOT RUN { # set properties for plot par(ps=8, mar=c(3, 8, 3, 1)) plot(c(0, 1), c(0, 1), type="n", frame=FALSE) text(rep(0.5, 2), c(0.2, 0.5), c("abc", "def")) par(ps=12) text(0.5, 0.8, "xyz") # }
Run the code above in your browser using DataLab