How to read your result
Choose population (÷ N) when your data IS the entire group you care about, and sample (÷ n−1) when it's a sample meant to represent a larger group; sample SD is always slightly larger, because dividing by n−1 (Bessel's correction) corrects for the fact the mean itself was estimated from the same data. Don't confuse standard deviation (the spread of your data) with standard error (SE = s ÷ √n, the precision of the estimated MEAN) — SE shrinks as your sample grows even though SD does not. Because deviations are squared, a single outlier can inflate the SD sharply — review flagged values rather than deleting them automatically, and lean on the median, IQR, or MAD when data is skewed or outlier-heavy. For roughly bell-shaped data, the empirical rule says about 68% of values fall within 1 SD of the mean, 95% within 2, and 99.7% within 3 — a rough guide, not a guarantee. To compare variability across datasets with different means, use the coefficient of variation (SD ÷ mean × 100) rather than the raw SD.
Worked example
Take the dataset 10, 12, 8, 15, 11.
Mean: (10 + 12 + 8 + 15 + 11) ÷ 5 = 11.2.
Squared deviations: (10 − 11.2)² = 1.44, (12 − 11.2)² = 0.64, (8 − 11.2)² = 10.24, (15 − 11.2)² = 14.44, (11 − 11.2)² = 0.04.
Sum of squared deviations: 1.44 + 0.64 + 10.24 + 14.44 + 0.04 = 26.80.
Population variance: 26.80 ÷ 5 = 5.36; population SD = √5.36 = 2.3152.
Sample variance: 26.80 ÷ 4 = 6.70; sample SD = √6.70 = 2.5884.
Interpretation: the sample standard deviation is about 2.59, meaning values typically sit about 2.59 units away from the mean of 11.2.
Assumptions & limitations
Assumptions
- Every value you paste is treated as a real, exact number on a true numeric scale — zeros and negatives are kept, and non-numeric text is ignored with a count.
- Quartiles and the IQR use the type-7 convention (matching Excel
QUARTILE.INC); other tools may use a different convention and report slightly different quartiles. - The confidence interval assumes the data is an independent random sample and uses a Student-t critical value for the chosen confidence level.
- The empirical rule (68–95–99.7) is shown only as a reference and holds only for roughly bell-shaped (normal) data.
What it does not do
- It does not choose sample vs population for you — that choice is yours, and it changes the variance and standard deviation.
- It cannot fully validate pasted data: a stray character, a mixed delimiter, or a hidden duplicate can change the result, so confirm the parsed values and count before relying on them.
- It does not perform inferential statistics — no hypothesis tests, p-values, regression, or correlation — only descriptive statistics for the data you enter.
- It does not judge whether the standard deviation is the right measure of spread; on skewed, heavy-tailed, or outlier-heavy data the median, IQR, or MAD may describe the data more faithfully.
Which calculator should I use? For everyday percentages and reverse percentages, the percentage calculator; for growth between two values, the percentage change calculator; for business margins, the profit margin calculator.
Read the guide
There is no dedicated descriptive-statistics guide yet. This page's formula and assumptions sections above cover sample vs population, standard error, outliers, and the empirical rule in full.