draw.circle(x,y,radius,nv=100,border=NULL,col=NA,lty=1,lwd=1)
draw.circle requires "plotrix" package, to install:
>install.packages("plotrix")
Let's first plot the BOD data frame:
>plot(BOD)
Add a circle to the plot:
>require(plotrix) >draw.circle(4,14,2,border="blue",col="tan2")