Using stat_smooth, I can fit models to data. E.g. g=ggplot(tips,aes(x=tip,y=as.numeric(unclass(factor(tips$sex))-1))) +facet_grid(time~.)
Can you tell me what is returned by glm$residuals and resid(glm) where glm is a quasipoisson object.e.g. How would I create them using glm$y and glm$linear.predictors.
Just a general question on the suitability of anova vs Anova. I read through ? Anova and ? anova but i wasn\'t able to understand it to my satisfaction.