Is it possible to annotate lattice (or ggplot2) figures with elements created with polygon() (or elements created with a similar function) from the graphics library?
I'm not too familiar with either library beyond examples of simple graphs posted on the web and printed in Deepayan Sarkar's book. Therefore, while I have code for what I've been doing in R with the graphics library, pointing me to relevant, equivalent functions and usage examples for lattice or ggplot2 specifically would be appreciated. Thanks.


?panel.polygonand?geom_polygonrespectively (admittedly there are no examples in lattice doc, but the idea is the same as with base graphics polygons) – baptiste Nov 29 '11 at 1:27