Skip to content

glm: offset in poisson

1 message · Brian Ripley

#
Certainly, but the offset is on the scale of the log mean for the 
Poisson, and the mean for the Gaussian, so I suspect you may have completely
inappropriate values of the offset.  Here's an example from the 
V&R3 on-line exercises (and answers):

library(MASS)
data(Insurance)
glm(Claims ~ District*Group*Age - District:Group:Age
         + offset(log(Holders)), data=Insurance, family=poisson)