An estimator is a rule for using data to estimate an unknown population parameter.
If is the true parameter, an estimator is a statistic computed from a sample.
Examples:
- estimates the population mean
- estimates the population variance
- estimates a population proportion
- in Linear Regression estimates the true regression weights
Bias:
An estimator is unbiased if its expected value equals the true parameter.
Variance: how much the estimator changes across repeated samples.
Mean squared error:
This is the statistical version of the Bias-Variance Tradeoff.
Consistency: converges to as .
Efficiency: among reasonable estimators, a more efficient estimator has lower variance.
Important tradeoff: an unbiased estimator is not always best. A slightly biased estimator can have lower MSE if it greatly reduces variance. This is the logic behind Regularization.
See also: Maximum Likelihood Estimation, Maximum A Posteriori Estimation, Bias-Variance Tradeoff