points(x, y, pch="o", ...) points.default(x, y=NULL, pch=1, col="black", ...)
x, y
| coordinate vectors of points to plot. |
pch
|
plotting 'character', i.e. symbol to use. pch can
either be a character or an integer code for a set of
graphics symbols. The full set of S symbols is available with pch=0:18 .
In addition, there is a special set of R plotting symbols which
can be obtained with |
col
| color to use. |
...
|
Further graphical parameters (see par ) may
also be supplied as arguments.
|
points
is a generic function to draw a sequence of points at the
specified coordinates.
The specified character(s) are plotted, centered at the coordinates.
Graphical parameters are permitted as arguments to this function.
plot
, lines
.