Mean Absolute Deviation Calculator

Statistics

Mean Absolute Deviation Calculator

Calculate MAD around mean or median. A robust measure of spread that's easier to interpret than standard deviation.

Input Data

Results

Mean Absolute Deviation (MAD)
3.4286
n (count)
7
Mean
8.0000
Median
8.0000
Center (Mean)
8.0000
Deviations
6.00, 4.00, 2.00, 0.00, 2.00, 4.00, 6.00

What is Mean Absolute 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:

  • Robust to outliers: Absolute deviations don't amplify extreme values like squared deviations do.
  • Interpretable: Expressed in original data units (unlike variance which is in squared units).
  • Two versions: MAD around mean or MAD around median (median is more robust).
  • Relationship to SD: For normal data, MAD ≈ 0.8 × Standard Deviation.
  • Box plot connection: IQR and MAD are both robust spread measures used in exploratory analysis.

When to use: Skewed distributions, small samples, outlier-prone data, or when you need simple interpretability.

How to Calculate MAD

1

Pick a center point

Either mean (average) or median (middle value). For skewed data, use median.

2

Calculate deviations

For each value, find |x − center|. Take absolute value (ignore sign).

3

Sum the deviations

Add all absolute deviations: Σ|xᵢ − center|

4

Divide by count

MAD = (sum of deviations) / n. This gives the average distance.

Example Calculation

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.

Frequently Asked Questions

Related Tools