Home Statistical Dictionary Generalized Linear Model
Generalized Linear Model
A unifying regression framework that extends ordinary linear regression to response variables with non-normal error distributions, by relating a transformed mean to a linear predictor through a link function.
In Plain English
Ordinary linear regression assumes the outcome is roughly normal with constant variance. Lots of real outcomes don't look like that -- counts, yes/no outcomes, proportions. A generalized linear model keeps the familiar idea of a linear combination of predictors, but lets you connect it to the outcome's mean through a link function and choose an error distribution that actually fits the data, e.g. logistic regression for binary outcomes or Poisson regression for counts, all under one common mathematical framework.
Definition
A generalized linear model (Nelder and Wedderburn, 1972) specifies a response variable drawn from a distribution in the exponential family with mean , related to a linear predictor through a link function such that . The framework unifies ordinary linear regression (identity link, Gaussian response), logistic regression (logit link, Bernoulli/binomial response), and Poisson regression (log link, Poisson response) as special cases of the same estimation machinery, fit by maximum likelihood (typically via iteratively reweighted least squares) rather than ordinary least squares.
Formula
Notation
Properties
- GLMs require the response distribution to belong to the exponential family (Gaussian, binomial, Poisson, gamma, inverse Gaussian, and others), which guarantees the iteratively reweighted least squares fitting algorithm converges to the maximum likelihood estimate under standard regularity conditions.
- Unlike ordinary linear regression, a GLM does not require the response's variance to be constant -- most exponential-family distributions have a variance that is itself a function of the mean, e.g. the Poisson's variance equals its mean, and the model's variance function captures this relationship explicitly.
- The framework was later extended in several directions still active in applied statistics: generalized additive models (GAMs) replace the linear predictor with smooth functions, while generalized estimating equations (GEE) and generalized linear mixed models (GLMMs) extend GLMs to correlated or clustered data.
At a Glance
Used in These Tests