Standard Deviation Calculator
Find the standard deviation, variance and mean of a data set.
Sample statistics need at least two values. Non-numeric entries are ignored.
Measuring spread
The mean tells you the centre of a data set; the standard deviation tells you how far the values typically stray from it. Two sets can share a mean yet look completely different — one tightly bunched, the other widely scattered.
σ = √( Σ(x − mean)² ÷ N ) · s = √( Σ(x − mean)² ÷ (n − 1) )
The only difference between the two is the divisor. Population standard deviation divides by the full count; sample standard deviation divides by one less, to better estimate a wider population from a limited sample.
For 2, 4, 4, 4, 5, 5, 7, 9 the mean is 5. The squared deviations sum to 32, so the population standard deviation is √(32 ÷ 8) = 2, while the sample standard deviation √(32 ÷ 7) is about 2.14.
Reading the number
Standard deviation shares the units of your data, which makes it intuitive: a test-score spread of 5 points means most results sit within a few points of the average. In roughly bell-shaped data, about two-thirds of values fall within one standard deviation of the mean.
Worth remembering
- Pick the right one. Whole group → population; a sample of it → sample.
- Outliers inflate it. A few extreme values can stretch the spread considerably.
- Same units as the data. Unlike variance, which is in squared units.