posum.stage.plot {posum} | R Documentation |
produce stage specific plots from an object returned from posum(), if fit=FALSE then only the raw data is plotted.
posum.stage.plot(b,fit=TRUE)
b |
A fitted model object as returned from posum . |
fit |
if this is TRUE then the raw data and fitted values are plotted, otherwise
just the raw data. |
Produces one plot for each stage, but does not alter graphics parameters. Fitted values are joined up by lines, but not by the smooth curves implied by the fitted model.
Simply produces plots.
Simon N. Wood snw@st-and.ac.uk
http://www.ruwpa.st-and.ac.uk/simon.html
posum.atplot
,
posum
,
posum.plot
,
posum.stage
,
data<-population.data(fam="p",adult=TRUE) #simulate data b<-posum(data,fam="p") op<-par(mfrow=c(3,4)) posum.stage.plot(b) rm(data,b) par(op)