Hopefully this question is not too simple. I am using the xyplot to plot a
lab value by visit date conditional by subject PIN. It looks like:
xyplot(VB~visit|PIN, data=VB3,
xlab=""
ylab=""
subscripts=T, aspect="xy", panel=
function(x,y, subscripts){
panel.grid()
panel.xyplot(x,y)
})
I intend to fit some curve to each plot.
I have 450 unique PINs so it is tremendously messy to plot this xyplot on
one graph sheet. How do I tell SPLUS to break up the individual xyplots so
that there are less on a graph sheet. Ideally, I would like something like
20 xyplots per graph sheet so I can analyze them more closely.
Many thanks
LaRee
|