circles | R Documentation |
Draw circles on the current graphics device.
circles(center, radius, ...)
center |
A two-column matrix giving the coordinates of the circle center. If a single circle is to be drawn then a 2-element vector can be passed instead. |
radius |
The radii of the circles. A scalar value will be
repeated if |
... |
Extra arguments passed to 'segments'. See
|
Draws circles on the current graphics device. This is a
low-level plotting function similar to points
,
lines
, segments
, etc.
Returns invisible NULL
.
Steven L. Scott steve.the.bayesian@gmail.com
plot(1:10, type = "n")
circles(cbind(c(2, 3, 4), c(4, 5,6 )), radius = c(.3, .4, .5))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.