circles | R Documentation |
This function plots circles at given locations with given radii.
circles(x, y, r, ...)
x |
vector of x coordinates |
y |
vector of y coordinates |
r |
vactor of radii |
... |
additional graphic parameters will be passed through |
This function needs a previous plot where it adds the circles.
A. Gebhardt
lines
,
points
x<-rnorm(10)
y<-rnorm(10)
r<-runif(10,0,0.5)
plot(x,y, xlim=c(-3,3), ylim=c(-3,3), pch="+")
circles(x,y,r)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.