I recently fit 4 multiple regression models for the same predictor/response data. Two of the models I fit with Poisson regression.
model.pois <- glm(Response ~ P1 + P2 +...+ P5, family=poisson(), ...)
model.pois.inter <- glm(Response ~ (P1 + P2 +...+ P5)^2, family=poisson(), ...)
Two of the models I fit with negative binomial regression.
library(MASS)
model.nb <- glm.nb(Response ~ P1 + P2 +...+ P5, ...)
model.nb.inter <- glm.nb(Response ~ (P1 + P2 +...+ P5)^2, ...)
Is there a statistical test I can use to compare these models? I've been using the AIC as a measure of the fit, but AFAIK this doesn't represent an actual test.
model.nb.interis significantly better than that ofmodel.pois.inter. Yes, the AIC is lower, but how much lower constitutes significantly better? – Daniel Standage Dec 16 '10 at 21:00model.poisagainstmodel.pois.inter(and similarly comparemodel.nbagainstmodel.nb.inter), but I can't guarantee that comparisons between a Poisson model and a negative binomial model would work. I wonder if an $F$ test to compare the variances of each pair would be reliable. – Firefeather Dec 16 '10 at 21:16