[R] identify() output doesn't print

Paul Murrell paul at stat.auckland.ac.nz
Wed Feb 23 03:52:24 CET 2000


hi


> I'm using R 0.99 for Windows under Win98.  When I label points in a
scatterplot
> with identify(), the labels appear as expected on the graphics device, but
do
> not print when I select the printer icon.  The scatter plot itself prints
just
> fine-- only the output from identfy() is missing.  Can anyone offer any
hints?


its a bug.
there is now a fix which will appear in 1.0.0 (early next week)
thanks for drawing our attention to it :)

if you can't wait, you can probably do what you want with something like ...

x <- 1:10
y <- 1:10
plot(x, y)
temp <- identify(x, y, pos=TRUE)
text(x[temp$ind], y[temp$ind], temp$ind, pos=temp$pos)

paul


-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !)  To: r-help-request at stat.math.ethz.ch
_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._



More information about the R-help mailing list