[R] adding text to the corner of a lattice plot

Deepayan Sarkar deepayan.sarkar at gmail.com
Fri Sep 9 22:51:22 CEST 2005


On 9/9/05, Wiener, Matthew <matthew_wiener at merck.com> wrote:
> I think this message from the help archives might address your question
> (found using the query "lattice mtext" on R site search:
> http://finzi.psych.upenn.edu/R/Rhelp02a/archive/51605.html.

That's what I would recommend. You can even set 

lattice.options(default.args = list(page = function(n) 
    grid::grid.text(date(), x = 0.01, y = 0.01, 
                    default.units = "npc", 
                    just = c("left", "bottom"))))

to do this for all plots by default without having to change any code.

Deepayan

> Hope this helps,
> 
> Matt Wiener
> 
> -----Original Message-----
> From: r-help-bounces at stat.math.ethz.ch
> [mailto:r-help-bounces at stat.math.ethz.ch] On Behalf Of RINNER Heinrich
> Sent: Friday, September 09, 2005 4:16 AM
> To: r-help at stat.math.ethz.ch
> Subject: [R] adding text to the corner of a lattice plot
> 
> 
> Dear R community,
> 
> I am using R 2.1.1 on Windows XP, package lattice Version 0.12-5, and
> want to add text (sort of a dat-stamp actually) to the lower left corner
> of a lattice plot, prefarably _after_ the plot has been created.
> 
> Here is a simple example what I do in base graphics:
> 
> # base graphics:
> > plot(rnorm(100), rnorm(100))
> > mtext(as.character(Sys.Date()), side = 1,line = -2, outer = T, adj =
> 0, font = 1, cex = 0.7)
> 
> How can I get the same using lattice?
> # lattice:
> > require(lattice)
> > xyplot(rnorm(100) ~ rnorm(100))
> > ???
> 
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide!
> http://www.R-project.org/posting-guide.html
> 
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
>




More information about the R-help mailing list