Calculate MAD around mean or median. A robust measure of spread that's easier to interpret than standard deviation.
Mean Absolute Deviation (MAD) measures the average distance of data points from a central value. It's a robust alternative to standard deviation.
MAD = Σ|xᵢ − center| / n
Key Characteristics:
When to use: Skewed distributions, small samples, outlier-prone data, or when you need simple interpretability.
Either mean (average) or median (middle value). For skewed data, use median.
For each value, find |x − center|. Take absolute value (ignore sign).
Add all absolute deviations: Σ|xᵢ − center|
MAD = (sum of deviations) / n. This gives the average distance.
Dataset: 2, 4, 6, 8, 10, 12, 14 (n=7) Mean = (2+4+6+8+10+12+14) / 7 = 56 / 7 = 8 Deviations from mean: |2 - 8| = 6 |4 - 8| = 4 |6 - 8| = 2 |8 - 8| = 0 |10 - 8| = 2 |12 - 8| = 4 |14 - 8| = 6 Sum of deviations = 6 + 4 + 2 + 0 + 2 + 4 + 6 = 24 MAD = 24 / 7 ≈ 3.43 On average, values are 3.43 units away from the mean.
Related Tools