logistic regression
Given a binary respose variable Y with probability of success p, the logistic regression is a non-linear
regression model with the following model equation:
E[Y]=exp(𝑿T𝜷)1+exp(𝑿T𝜷), |
where 𝑿T𝜷 is the product of the transpose
of the column matrix
𝑿 of explanatory variables and the unknown column matrix 𝜷 of regression coefficients.
Rewriting this so that the right hand side is 𝑿T𝜷, we arrive at a new
equation
ln(E[Y]1-E[Y])=𝑿T𝜷. |
The left hand side of this new equation is known as the logit function, defined on the open unit interval (0,1) with range the entire real line ℝ:
logit(p):= |
Note that the logit of is the same as the natural log of the odds of success (over failures) with the probability of success = . Since is a binary response variable, so it has a binomial distribution with parameter (probability of success) , the logistic regression model equation can be rewritten as
(1) |
Logistic regression is a particular type of generalized linear model. In addition, the associated logit function is
the most appropriate and natural choice for a link function. By natural we mean that is equal
to the natural parameter appearing in the distribution function for the GLM (generalized linear model). To see
this, first note that the distribution function for a binomial random variable
is
where is the number of trials and is the event that there are success in these trials. , the
parameter, is the probability of success. Let there be iid binomial random variables each
corresponding to trials with probability of success. Then the joint probability distribution of these
random variables is simply the product of the individual binomial distributions. Equating this to the distribution for
the GLM, which belongs to the exponential family of distributions, we have:
Taking the natural log on both sides, we have the equality of log-likelihood function in two different forms:
Rearranging the left hand side and comparing term , we have
so that .
Next, setting the natural link function logit of the expected value of , which is , to the linear portion of
the GLM, we have
giving us the model formula for the logistic regression.
Remarks.
-
•
Comparing model equation for the logistic regression to that of the normal or Gaussian linear regression model, we see that the difference is in the choice of link function. In normal liner model, the regression equation looks like
(2) The link function in this case is the identity function
. The model equation is consistent
because the linear terms on the right hand side allow on the left hand side to vary over the reals. However, for a binary response variable, Equation (2) would not be appropriate as the left hand side is restricted to only within the unit interval, whereas the right hand side has the possibility of going outside of . Therefore, Equation (1) is more appropriate when we are dealing with a binary response data variable.
-
•
The logit function is not the only choice of link function for the logistic regression. Other, “non-natural” link functions are available. Two such examples are the probit function
, or the inverse
cumulative normal distribution function and the complimentary-log-log function . Both of these functions map the open unit interval to .
Title | logistic regression |
---|---|
Canonical name | LogisticRegression |
Date of creation | 2013-03-22 14:47:51 |
Last modified on | 2013-03-22 14:47:51 |
Owner | CWoo (3771) |
Last modified by | CWoo (3771) |
Numerical id | 12 |
Author | CWoo (3771) |
Entry type | Definition |
Classification | msc 62J12 |
Classification | msc 62J02 |
Defines | logit |
Defines | probit |
Defines | complementary-log-log |