Maximum likelihood estimation
Maximum likelihood estimation finds the parameter values that make the observed data most probable under the assumed model. It produces consistent, asymptotically efficient estimators and underpins methods such as logistic regression.
See it move
The estimator theta-hat is the value of theta that maximises the log-likelihood, the sum of log f(xi; theta) across all observations. Maximising the log-likelihood is equivalent to maximising the likelihood itself but far easier to compute. As sample size grows, the estimator becomes consistent and asymptotically efficient, and it underlies logistic regression, probit models and survival analysis.
The formula
Variables
- log-likelihood function (dimensionless)
- parameter vector to be estimated (varies by model)
- probability density (or mass) of observation xᵢ given θ (dimensionless)
- sample size (dimensionless)
Log-likelihood is used instead of the likelihood product for numerical tractability; maximising both is equivalent.
Variables
- maximum likelihood estimate of θ (varies by model)
- log-likelihood function (dimensionless)
- parameter vector (varies by model)
For normal data, MLE recovers the sample mean and (biased) variance. For logistic regression, numerical optimisation is required.
Check yourself
Which of the following best describes what maximum likelihood estimation (MLE) does when fitting a statistical model?