latticeCombineLayer {Orcs} | R Documentation |
This function combines multiple lattice plot objects drawing each as a
layer on top of the previous plots. Note that the global plot settings (e.g.
'xlim', 'ylim', ...) are taken from the first object. This is particularly
useful when looping over large amounts of data using lapply()
(see
Examples).
latticeCombineLayer(trellis.list, ...)
trellis.list |
A |
... |
Additional arguments passed to |
A single lattice plot object.
Tim Appelhans
library(latticeExtra)
dat <- list(1:10,
10:1,
3:7,
7:3)
plist <- lapply(seq(dat), function(i) {
tmp <- xyplot(dat[[i]] ~ seq(dat[[i]]),
type = "l", col = i)
})
p <- latticeCombineLayer(plist)
print(p)