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.

Generalized Linear ModelsIntermediateFree

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

Mean of the response for observation i, E[Y_i]
Linear predictor, the linear combination of predictors and coefficients
Link function, connecting the mean to the linear predictor

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

Introduced byJohn Nelder and Robert Wedderburn, 1972
Three componentsrandom component (distribution), systematic component (linear predictor), link function
Estimationmaximum likelihood, typically via iteratively reweighted least squares (IRLS)
Common special caseslinear regression, logistic regression, Poisson regression
Last updated August 8, 2026← Back to the Dictionary