Skip to content
Prev 74183 / 398498 Next

R:plot and dots

Here is an example :

   x <- rnorm(20)
   y <- rnorm(20)
   plot(x, y, type="n")
   text(x, y, labels=as.character(1:20))

Also look into help(identify) if you want to point out specific points.

Regards, Adai
On Thu, 2005-07-21 at 16:18 +0200, Clark Allan wrote: