In
statistics, the generalized linear model (GLM) is a useful generalization of ordinary
least squares regression. It relates the random distribution of the measured variable of the experiment (the distribution function) to the systematic (non-random) portion of the experiment (the linear predictor) through a function called the link function.
See more at Wikipedia.org...
The link function in generalized linear models specifies a nonlinear transformation of the predicted values so that the distribution of predicted values is one of several special members of the exponential family of distributions (e.g., gamma, Possion, binomial, etc.). The link function is therefore used to model responses when a dependent variable is assumed to be nonlinearly related to the predictors.
Various link functions (see McCullagh and Nelder, 1989) are commonly used, depending on the assumed distribution of the dependent variable (y) values: Normal, Gamma, Inverse normal, and Poisson distributions:
Identity link: f(z) = z
Log link: f(z) = log(z)
Power link: f(z) = za, for a given a
Binomial , and
Ordinal Multinomial distributions:
Logit link: f(z)=log(z/(1-z))
Probit link: f(z)=invnorm(z) where invnorm is the inverse of the standard normal cumulative distribution function.
Complementary log-log link: f(z)=log(-log(1-z))
Loglog link: f(z)=-log(-log(z))
Multinomial distribution:
Generalized logit link: f(z1|z2,…,zc)= log(x1/(1-z1-…-zc)) where the model has c+1 categories.
For discussion of the role of link functions, see the
Generalized Linear Models chapter.