Message-ID: <43A7DD8A.9050400@ipimar.pt>
Date: 2005-12-20T10:31:38Z
From: Ernesto Jardim
Subject: Overlaying lattice plots
In-Reply-To: <CAAD15FC4F69AC419F16028EBBCCC36F138EF0@icex1.ic.ac.uk>
Hillary, Richard M wrote:
> Morning chaps, I have a little question for your capable minds... Say
> I have an observed and predicted set of quants (in my case, length
> frequencies by year and age/length), is there a way to use lattice
> plots to plot the observed and predicted data together, panel by panel?
> Obrigado/gracias (thankyou in Galego is?...)
> Rich
Hi Richard,
If you want to plot both datasets on the same plot just make use of the
xyplot for FLQuants, something like
flqs <- FLQuants(list(pred=pred.quant, res=res.quant))
xyplot(data~age, data=flqs)
now tune it the way you want and change the formula to fit your needs.
Regards
EJ
ps: I'm cc'ing this to the mailing lists, I find it usefull for others.