powered by
This is a wrapper for R's grid function. See R's documentation for graphics::grid for further details.
grid(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::grid
# NOT RUN { # add a grid to an existing plot plot(c(0, 10), c(0, 10), type="n", xaxs="i", yaxs="i", las=1) grid(nx=10, ny=5, col="#777777") # }
Run the code above in your browser using DataLab