Hope this isn't a faq, but....
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?
--Mike C.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Michael A. Camann mac24 at axe.humboldt.edu
Assistant Professor of Zoology Voice: 707-826-3676
Dept. of Biological Sciences Fax: 707-826-3201
Humboldt State University
Arcata, CA 95521-8299
http://www.humboldt.edu/~mac24/camann.html
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
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
_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
hi> I'm using R 0.99 for Windows under Win98. When I label points in ascatterplot> with identify(), the labels appear as expected on the graphics device, butdo> not print when I select the printer icon. The scatter plot itself printsjust> fine-- only the output from identfy() is missing. Can anyone offer anyhints? 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 _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._