powered by
This is a wrapper for R's points function. See R's documentation for graphics::points for further details.
points(x, y = NULL, 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::points
# NOT RUN { # draw a set of points onto an existing plot plot(c(0, 1), c(0, 1), type="n") points(runif(10), runif(10)) points(runif(10), runif(10), col="blue", pch=19) # }
Run the code above in your browser using DataLab