Profile Likelihood
A way to get a confidence interval for one parameter of interest in a model with several parameters, by maximizing over the other (nuisance) parameters at each candidate value instead of fixing them at their fitted estimates.
Prerequisites: Maximum Likelihood Estimation (MLE), The Likelihood Ratio Test
Suppose you've fit a model with two parameters, say a volatility model with a mean-reversion speed you actually care about, and a noise-scale parameter you don't. You want a confidence interval for alone. The naive approach, fix at its fitted value and vary only , understates the true uncertainty, because it pretends is known exactly when it was also estimated from the same noisy data. Profile likelihood fixes this: for each candidate value of , it re-maximizes the likelihood over before recording the likelihood value, so the uncertainty in is folded into the interval for rather than ignored.
Formally, the profile likelihood is
, at each , find the best-fitting given that , and use that maximized value. Plotting (or its log) against gives a curve; the confidence interval is the set of where this curve stays within a cutoff of its peak, exactly the same cutoff used in a likelihood-ratio test.
Worked illustration. Fitting a two-parameter model, the ordinary log-likelihood peaks at . Naively fixing at its fitted value and varying only might show the log-likelihood dropping by the critical amount (1.92, for a 95% interval with one free parameter) at and . Profiling out properly, re-optimizing it at every trial , typically widens this to something like , because part of what looked like precision in was actually the model quietly borrowing certainty from an unrealistically fixed .
Profile likelihood gets a confidence interval for one parameter by re-maximizing over all other (nuisance) parameters at every candidate value, rather than freezing them, this correctly widens the interval to reflect that the nuisance parameters were estimated too, and reduces to the same cutoff rule used by the likelihood-ratio test.
Discussion
💡 Discussion rules
- Ask and answer about this concept. Off-topic gets removed.
- No homework dumps. Show what you tried first.
- Corrections are welcome. Cite a source when you claim an error.
Loading discussion…
Related concepts
Practice in interviews
Further reading
- Pawitan, In All Likelihood, ch. 3