Skip to content
Prev 157203 / 398506 Next

restricting lattice pages to one

On Thu, Sep 25, 2008 at 7:33 AM, John Fox <jfox at mcmaster.ca> wrote:
A general (but two-step) solution is

p = xyplot(Y ~ X | A + B + C)
update(p, layout = c(0, prod(dim(p))))

Another solution that is effectively the same (with different strip
annotation) is to use an interaction as the single conditioning
variable.

xyplot(Y ~ X | A:B:C)

-Deepayan