Skip to content
Prev 14160 / 398503 Next

What kind of test in summary(glm)?

On Wed, 10 Oct 2001, Anne Morgenstern wrote:

            
It's not doing a test at all.  It is reporting a z value, the coefficient
divided by the estimated standard error.  Now although that is often
called a `t value', it is not for a GLM (except in special cases)
t-distributed under the null hypothesis.  If you mean that you used
glm(family=binomial), the scale is not estimated and the relevant
asymptotic theory suggests a normal distribution.  However, that can be
rather misleading.  Under glm(family=pseudobinomial) the scale is
estimated, but there is no really relevant theory (as you have a
quasi-likelihood model) suggesting a t distribution.

If you want to test, use anova.glm not the Wald statistic given by the
`z value', because of the Hauck-Donner effect.