我看过其他关于解释泊松回归斜率估计的帖子,基于此,这是我对泊松回归的解释。如果我能写下下面的语句,谁能告诉我:
mdl<-glm(y ~ year, family="quasipoisson")
summary(mdl)
Deviance Residuals:
Min 1Q Median 3Q Max
-2.8258 -1.4108 -0.5760 0.8562 3.2575
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 68.918820 14.838432 4.645 0.0000216 ***
year -0.034351 0.007531 -4.561 0.0000289 ***
slope<-exp(mdl$coefficients[2])
# 0.9662321
slope - 1
# -0.03376786
我可以做如下陈述:增加一个单位year
导致y
减少一个0.033
单位?
谢谢