Lattice

Tips

Description

Note

High level Lattice functions (like xyplot) are different from conventional R graphics functions because they don't actually draw anything. Instead, they return an object of class "trellis" which has to be then printed or plotted to create the actual plot. This is normally done automatically, but not when the high level functions are called inside another function (most often source) or other contexts where automatic printing is suppressed (e.g. for or while loops). In such situations, an explicit call to print or plot is required.

Lattice plots are highly customizable via user-modifiable settings. However, these are completely unrelated to base graphics settings; in particular, changing par() settings usually have no effect on lattice plots.

Information taken from '?lattice' within R

Deepayan's Short Description

"I have written and maintain an R package called Lattice which implements Trellis Graphics in R. It is for the most part a clone of the Trellis library in S-PLUS, and is built using the Grid add-on package by Paul Murrell."

Links

Deepayan wrote a book (see below) and included all of his graphic codes on the internet. It is a huge resource of different plots. The bad part is that the code is not documented as to what he is doing. Make sure you take a look at the Figures and Code

Recommendations

Buy the book that Deepayan Sarkar has written, "Lattice: Multivariate Data Visualization with R (Use R) (Paperback)".(USA Link, Basel Link)

It contains a lot of useful references, better than the web, and the book takes you through the learning stages of how Lattice works. (It will ease any transition pain that may occur, :-D )