What Each Metric Measures
Mean absolute deviation and standard deviation both describe spread, but they summarize distance from the center differently. Mean absolute deviation averages the absolute distances from the mean. Standard deviation takes the square root of the average squared distances from the mean. That one design choice matters: absolute values keep the metric more linear and easier to explain, while squared deviations give large misses much more weight.
If you need a quick reminder on the broader role of spread measures, review What Is Standard Deviation?, then compare how squared deviations behave in Standard Deviation vs Variance.
MAD can mean two different things
Formulas and Units
Mean Absolute Deviation Around the Mean
Sample Standard Deviation
Both measures end up in the same units as the original data, which is why both are more interpretable than variance. If the variable is test score points, both are measured in points. If the variable is millimeters, both are measured in millimeters.
| Feature | Mean Absolute Deviation | Standard Deviation |
|---|---|---|
| Distance rule | Uses absolute deviations | Uses squared deviations, then square root |
| Outlier sensitivity | Moderate | Higher, because large deviations are squared |
| Interpretation | Typical absolute distance from the mean | Spread measure tied to variance and z-scores |
| Best for | Simple reporting, operational summaries, forecasting error style communication | Inference, normal models, control limits, z-scores, many statistical formulas |
| Tooling support | Less common in textbooks and software defaults | Very common in software, research, and quality control |
A useful interpretation shortcut
Worked Example With and Without an Outlier
Consider a stable process first: `8, 9, 10, 10, 11, 12`. The mean is `10`. Absolute deviations are `2, 1, 0, 0, 1, 2`, so mean absolute deviation is `1.00`. Squared deviations are `4, 1, 0, 0, 1, 4`, so the population standard deviation is `√(10/6) ≈ 1.29`.
Now replace the last value with an outlier: `8, 9, 10, 10, 11, 30`. The mean becomes `13`. Absolute deviations are `5, 4, 3, 3, 2, 17`, so mean absolute deviation is `34/6 ≈ 5.67`. Squared deviations total `352`, so the population standard deviation is `√(352/6) ≈ 7.66`.
| Dataset | Mean | Mean Absolute Deviation | Standard Deviation | What changed? |
|---|---|---|---|---|
| 8, 9, 10, 10, 11, 12 | 10.00 | 1.00 | 1.29 | Both measures show a tight cluster |
| 8, 9, 10, 10, 11, 30 | 13.00 | 5.67 | 7.66 | Standard deviation jumps more because the outlier is squared |
Practical reading
When Mean Absolute Deviation Is Better
Use mean absolute deviation when you want clarity
Use mean absolute deviation when extreme values should not dominate
A practical workflow is to compute the mean first with the mean calculator, then compare the spread using the sample standard deviation calculator or population standard deviation calculator. Even if the site does not expose a dedicated mean absolute deviation tool, the comparison tells you whether squaring deviations would materially change your conclusion.
When Standard Deviation Is Better
Standard deviation is the default in statistics because it connects cleanly to variance, the normal distribution, z-scores, regression diagnostics, ANOVA, confidence intervals, and many quality-control methods. When you move from description to inference, standard deviation is usually the measure that lets the rest of the analysis proceed.
Model the data
Standardize values
Report sample uncertainty
Decision Checklist
- Choose mean absolute deviation when you want a plain-language description of the typical miss from the mean.
- Choose standard deviation when your next step involves z-scores, normal distributions, confidence intervals, hypothesis tests, or control charts.
- If a few extreme values may distort the result, compare both measures and also inspect the data with the outlier calculator.
- If the dataset is strongly skewed or contaminated with outliers, consider median-based robust measures rather than relying on either metric alone.
- If you are publishing or sharing results with technical readers, standard deviation is usually the more expected convention.
Common Pitfalls
- Pitfall 1:Treating mean absolute deviation and median absolute deviation as the same thing. They are not interchangeable.
- Pitfall 2:Using mean absolute deviation inside formulas that were derived for standard deviation, such as z-scores or classic confidence intervals.
- Pitfall 3:Assuming standard deviation is always better because it is more common. It is better for many statistical workflows, but not always for communication.
- Pitfall 4:Ignoring the mean itself. Spread without center can mislead, so calculate the center first and interpret both together.
Further Reading
Sources
References and further authoritative reading used in preparing this article.
- Average absolute deviation — Wikipedia
- Standard deviation — Wikipedia
- NIST/SEMATECH e-Handbook of Statistical Methods — NIST