Let's say I'm trying to model the incidence of disease per 1000 people. I have data where people are id'd for example 1001,1002,1003,....
am I allowed to specify the offset as
geeglm(y~offset(log(1000))+x_1+x_2+...x_n,family=poisson,id=id,corstr=...)
?
In other words, can the offset in poisson regression be a constant not in the dataframe?