Re: [R] square and points on the same figure

2005-10-08 Thread Chuck Cleland
Sam R. Smith wrote: > after typing > symbols(x=0.5, y=0.5, squares=c(0.3), add=TRUE) > it works. > I want to add one more using different length such as > symbols(x=0.5, y=0.5, squares=c(0.15), add=TRUE) > but this square did not show. Specify both (all) squares in the same call to symbols: csr <

Re: [R] square and points on the same figure

2005-10-08 Thread Sam R. Smith
after typing symbols(x=0.5, y=0.5, squares=c(0.3), add=TRUE) it works. I want to add one more using different length such as symbols(x=0.5, y=0.5, squares=c(0.15), add=TRUE) but this square did not show. Chuck Cleland <[EMAIL PROTECTED]> wrote: Sam R. Smith wrote: > Hi, > I have the following code

Re: [R] square and points on the same figure

2005-10-08 Thread Chuck Cleland
Sam R. Smith wrote: > Hi, > I have the following code to > randomly generate the > points: > csr <-function(n=60){ > x=runif(n) > y=runif(n) > f=cbind(x,y) > } > plot(csr()) > > I wonder how to code to draw a square centering on 0.5,0.5; with the length > of each side to be 0.3 on the same figu

[R] square and points on the same figure

2005-10-08 Thread Sam R. Smith
Hi, I have the following code to randomly generate the points: csr <-function(n=60){ x=runif(n) y=runif(n) f=cbind(x,y) } plot(csr()) I wonder how to code to draw a square centering on 0.5,0.5; with the length of each side to be 0.3 on the same figure with these plotted points? Thanks, Sam

Re: [R] square and points on the same figure

2005-10-08 Thread vincent
?rect (and don't forget par(new=T)) hih __ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

[R] square and points on the same figure

2005-10-08 Thread Sam R. Smith
Hi, I have the following code to randomly generate the points: csr <-function(n=60){ x=runif(n) y=runif(n) f=cbind(x,y) } plot(csr()) I wonder how to code to draw a square centering on 0.5,0.5; with the length of each side to be 0.3 on the same figure with these plotted points? Thanks, Sam