standard error (SE)
The standard deviation of a statistic's sampling distribution; for a mean it is SD / sqrt(n).
The standard error (SE) measures how much a statistic, such as a sample mean or a conversion rate, would wobble if you repeated the same study on a fresh sample. It is the standard deviation of that statistic's sampling distribution. For a mean:
where is the sample standard deviation and the sample size. For a proportion (say, a conversion rate), .
The key is not to confuse it with the standard deviation. They answer different questions:
The SD is a property of your customers; the SE is a property of your measurement. A bigger sample doesn't make customers more alike, but it does pin down the average more tightly.
The SE is the building block of inference. A 95% confidence interval is roughly estimate , and t- and z-statistics divide an observed difference by its SE. Because of the square root, halving the SE takes four times the data, not twice as much.
Example
CatChow's analyst looks at 225 orders from last week: mean $50.00, standard deviation $15.00.
The two numbers say very different things:
- SD = $15: individual orders differ a lot. Plenty of orders are around $35 or $65; that's just how customers buy.
- SE = $1: the average is known quite precisely. The 95% confidence interval is 50 \pm 1.96 \times 1 = \48.04$51.96$.
Now the team collects four times as many orders, , and the SD comes out at about $15 again. The SE becomes 15 / \sqrt{900} = 15 / 30 = \0.5050 \pm 0.98, i.e. \49.02 to $50.98. Customers are just as varied as before; only our knowledge of the mean improved, and halving the SE took four times the data.
The same logic for a rate: 60 checkouts out of 1,000 sessions is a 6.0% conversion rate with , or 0.75 percentage points.
Common mistakes
- Reporting the SE as if it described customers. "Order value varies by ±$1" is wrong when the SD is $15; the $1 is the uncertainty of the average, not the spread of orders.
- Not saying which one is on the chart. Error bars can show the SD, the SE or a 95% CI; they differ several times in length. Always label them.
- Expecting the SD to shrink with more data. Only the SE shrinks. If the SD keeps falling as the sample grows, check how the data are being collected.
- Doubling the sample to halve the uncertainty. Because of , you need four times the sample for half the SE.
- Trusting a small SE from a biased sample. The SE only covers random sampling noise; it says nothing about a sample drawn only from app users or only from the launch day.
Learn it in the course
- The t-test · Comparing the means of two groups and deciding whether the gap is bigger than chance.
- Samples, populations and the normal distribution · Why we study samples to learn about all users, and why the bell curve shows up everywhere.
- Confidence intervals · Reporting a range of plausible values instead of a single number.
- Conversion rates and proportion tests · Comparing conversion rates between variants and reading uplift correctly.
- Paired tests: before and after · Comparing the same users before and after a change.