Introduction to Regression Models
Introduction to Regression Models
2. Logit Model
A logistic regression model is used when the dependent variable is binary (0 or 1).
It estimates the log-odds of an event occurring.
Formula: P(Y=1∣X)=eβ0+β1X1+...+βkXk1+eβ0+β1X1+...+βkXkP(Y = 1 | X) = \
frac{e^{\beta_0 + \beta_1X_1 + ... + \beta_kX_k}}{1 + e^{\beta_0 + \beta_1X_1 + ...
+ \beta_kX_k}}P(Y=1∣X)=1+eβ0+β1X1+...+βkXkeβ0+β1X1+...+βkXk
Pros:
o Predicted probabilities always lie between 0 and 1.
o Works well with categorical and continuous variables.
Cons:
o Interpretation of coefficients is less intuitive compared to LPM.
o Requires computing marginal effects for probability interpretation.