powered by
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, ...)
coordinates for points on the plot
style sheet object. Leave "default" to use a style defined via RcssSetDefaultStyle()
character, style class
Further parameters, see documentation of graphics::plot
# NOT RUN { # 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)) # }
Run the code above in your browser using DataLab