plot | R Documentation |
This is a wrapper for R's plot function. See R's documentation for graphics::plot for further details.
plot(x, y, Rcss = "default", Rcssclass = NULL, ...)
x , y |
coordinates for points on the plot |
Rcss |
style sheet object. Leave "default" to use a style defined via RcssSetDefaultStyle() |
Rcssclass |
character, style class |
... |
Further parameters, see documentation of graphics::plot |
# draw a new empty plot area - unit square
plot(c(0, 1), c(0, 1), type="n", xlab="", ylab="")
# draw a plot area, automatically add some points
plot(runif(20), rpois(20, 100))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.