Sampling Distributions

1 min read

A sampling distribution is the distribution of a statistic across repeated samples from the same population.

Example: take many samples of size nn, compute the sample mean xˉ\bar{x} for each one, then plot those means. That distribution is the sampling distribution of xˉ\bar{x}.

Why it matters: statistical inference needs to know how much an estimate would vary if the data collection were repeated.

For iid samples with population mean μ\mu and variance σ2\sigma^2:

E[xˉ]=μ\mathbb{E}[\bar{x}] = \mu Var(xˉ)=σ2n\text{Var}(\bar{x}) = \frac{\sigma^2}{n}

The standard deviation of an estimator's sampling distribution is its standard error.

For the sample mean:

SE(xˉ)=σn\text{SE}(\bar{x}) = \frac{\sigma}{\sqrt{n}}

If σ\sigma is unknown, estimate it with:

SE^(xˉ)=sn\widehat{\text{SE}}(\bar{x}) = \frac{s}{\sqrt{n}}

Key implication: uncertainty shrinks like 1/n1/\sqrt{n}, not 1/n1/n. Getting 10x lower standard error requires about 100x more data.

In ML: validation metrics also have sampling distributions. A model with 91.0% accuracy is not automatically better than one with 90.8% accuracy unless the difference is large relative to evaluation uncertainty.

See also: Population vs Sample, Central Limit Theorem, Confidence Intervals

Linked from