How much does purchase probability change as ad exposure increases?
A purchase outcome is either 0 or 1, but the quantity of interest is the probability of purchase. A straight linear model can predict values below 0 or above 1 and assumes an unsuitable constant error variance.
Logistic and probit regression transform probability to an unbounded latent scale, fit a linear predictor there, and map the result back between 0 and 1.
Key question
How does a predictor shift purchase probability, and how should that shift be summarized?
Why is linear regression insufficient?
Logistic regression
log(p/(1−p)) = β₀ + β₁x
The model is linear in log-odds, not directly in probability. Converting back produces predictions constrained to the 0–1 range.
The S-shaped curve
0 < p̂ < 1The curve flattens at both ends, so the predicted probability stays in range.
Straight in log-odds
logit(p)On the logit scale the same relationship becomes a straight line.
The classification threshold
0.50The model returns a probability; the cutoff is what turns it into a decision.
How do logit and probit differ?
| Model | Link | Practical distinction |
|---|---|---|
| Logit | log-odds | coefficients exponentiate to odds ratios and are widely used |
| Probit | inverse normal CDF | often motivated by an underlying latent normal threshold |
Their coefficient scales differ, so raw coefficients should not be compared directly across the two models.
How is an odds ratio interpreted?
Advertising exposure
If β=0.40, the odds ratio is exp(0.40)=1.49. A one-unit increase in exposure is associated with approximately 49% higher odds, holding the other predictors constant.
Odds are not probability
An odds ratio of 1.49 does not mean probability increases by 49 percentage points. The probability change depends on the starting probability.
Why is the probability change not constant?
An exposure increase may barely change probability near 0 or 1 but produce a much larger change near the middle of the S-curve. Report predicted probabilities or marginal effects when practical interpretation matters.
Change the link and coefficient
Switch between logit and probit and change the coefficient. Compare curve steepness, predicted probability, and how probability change depends on the current x value.
η
0.60
Probability
64.6%
Odds ratio
2.23
What to watch
Probability effects are largest near the middle of the curve and smaller near the boundaries, even when the link-scale coefficient is constant.