Re: [R] Add ID numbers on a plot

2009-06-29 Thread Jorge Ivan Velez
Hi Steve, Take a look at ?matplot; it might be useful in this particular case. HTH, Jorge On Mon, Jun 29, 2009 at 2:16 PM, Steve Hong wrote: > Dear List, > > I have (for example) 50 observations collected from 50 experimental sites > and want to look at changes of 50 observations as function

Re: [R] Add ID numbers on a plot

2009-06-29 Thread Uwe Ligges
See ?text Uwe Ligges Steve Hong wrote: Dear List, I have (for example) 50 observations collected from 50 experimental sites and want to look at changes of 50 observations as function of time in a graph. I found that I could do that using R-code below: time2 <- 1:25 y1=rnorm(25, mean=0, sd=

[R] Add ID numbers on a plot

2009-06-29 Thread Steve Hong
Dear List, I have (for example) 50 observations collected from 50 experimental sites and want to look at changes of 50 observations as function of time in a graph. I found that I could do that using R-code below: time2 <- 1:25 y1=rnorm(25, mean=0, sd=1) y2=rnorm(25, mean=0, sd=1) ... y50=rnorm