Generalized Linear Models
Generalized Linear Models
Sometimes
Linear Regression
Some of the issues that arise from estimating a non-qualitative observation can be corrected using a transformation:
A transformation leads to challenges in interpretation and can't be applied to situations where the response can take on a value of 0.
Poisson Regression
The Poisson distribution is typically used to model counts
The distribution is modified to accommodate multiple means:
where
Generalized Linear Models in Greater Generality
Comparisons between linear, logistic, and Poisson regression models
- Each approach uses predictors
to predict a response . We assume that, conditional on , belongs to a certain family of distributions. For linear regression, we typically assume that follows a Gaussian or normal distribution. For logistic regression, we assume that follows a Bernoulli distribution. Finally, for Poisson regression, we assume that follows a Poisson distribution. - Each approach models the mean of
as a function of the predictors. In linear regression, the mean of takes the form
For logistic regression, the mean of
Poisson regression takes the form
These equations can be expressed using a link function
The link functions for linear, logistic and Poisson regression are
The exponential family of distributions includes Gaussian, Bernoulli, Poisson, exponential distribution, Gamma, and negative binomial.
Any regression approach that follows this very general recipe is known as a generalized linear model (GLM). Thus, linear regression, logistic regression, and Poisson regression are three examples of GLMs. Other examples not covered here include Gamma regression and negative binomial regression.
Sources: 1