Skip to content
Prev 208095 / 398502 Next

Poisson regression: computation of linear combination of coefficients. Should one use the scaled var-cov matrix?

John Sorkin wrote:
coefficients from a Poisson regression (i.e. glm with log link and
offset) should one use the scaled or unscaled covariance matrix? For a
simple linear regression (i.e. lm), I believe we use the unscaled
matrix; for Poisson regression I believe we use the scaled matrix.
Poisson regression?
The scaled covariance matrix is the unscaled one multiplied by the 
dispersion, which is 1 for the Poisson and binomial families. I.e. they 
are one and the same in this case. For the Gaussian case, the dispersion 
is obtained from the the residual SS. In either case, the scaled version 
  is the one to use, although you might use it unscaled in Poisson.

One little mystery is why vcov.glm (which you might as well have used), 
does this:

{
     so <- summary.glm(object, corr = FALSE, ...)
     so$dispersion * so$cov.unscaled
}

rather than just return cov.scaled? (Historical reasons, I suspect).