Displaying 1 result from an estimated 1 matches for "ijwbug".
Did you mean:
idebug
2001 Feb 15
1
(PR#849)
The symbol( circle) function does not create
circles.
See following function
ijwbug <- function()
{
plot.new()
plot.window(c(-1,1),c(-1,1));
symbols(0,0,circle=1,add=T,inches=F);
curve(sqrt(1 - x^2), from = -1, to = 1, add = T, lty = 1)
curve(-sqrt(1 - x^2), from = -1, to = 1, add = T, lty = 1)
lines(c(-1,1),c(1,1));
lines(c(-1,1),c(-1,-1));
}
--please...