Skip to content
Prev 156873 / 398506 Next

xyplot problem

xyplot will pass a vector of indices through the subscripts argument
to the panel so try this:

xyplot(y ~ x | grp, panel = function(x, y, subscripts, ...) {
      panel.xyplot(x, y, cex = sz[subscripts], ...)
   }
)
On Tue, Sep 23, 2008 at 9:27 AM, Pascal A. Niklaus <pniklaus at ethz.ch> wrote: