Skip to content
Prev 29014 / 63424 Next

quartz identify bug (PR#11491)

On Wed, 28 May 2008, someone ashamed of his real identity wrote:
[...]
Correct, but it is user error.  From the help for identify:

      x,y: coordinates of points in a scatter plot.  Alternatively, any
           object which defines coordinates (a plotting structure, time
           series etc: see 'xy.coords') can be given as 'x', and 'y'
           left missing.

and qqnorm does not do a scatter plot of 'x'.  You need something like 
(look at qqnorm.default)

xx <- qnorm(ppoints(length(x)))[order(order(x))]
identify(xx, x)

(If there were missing values you would need to work harder.)

And please have the courtesy to use your real name and give a signature 
block with your credentials -- it is what is expected in return from the 
expert free consultancy you receive here.