On 12/8/07, Judith Flores <[EMAIL PROTECTED]> wrote: > Hello, > > I need to add some text in the upper left position, > outside a lattice plot. > > xyplot(x~y) > ltext(locator(1), label='My text') > > doesn't work.
library(grid) ltext(grid.locator(), label='My text') should. -Deepayan ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.