Solved – Why do GLMs use z-scores for parameter inference

generalized linear modelinferencenormality-assumptionz-statistic

Generalized Linear Models typically use z-scores for inference on parameters ($\beta$s) (see here, for example).

This assumes that parameter estimates ($\hat{\beta}$s) follow a normal distribution? Why is this assumption typically made? The model errors are usually not normally distributed.

Is it just based on the central limit theorem?

Best Answer

It is because GLM parameter estimates are maximum likelihood estimates, and those are asypmtotically normal if we assume the observations are independent. See here, for instance. Note that this is only an asymptotic result so for a particular finite sample your test statistics won't be exactly normal.

Related Question