Mean Absolute Deviation (MAD) measures how spread out the data is — the average distance each data point is from the mean.
Steps to calculate MAD:
- Find the mean of the dataset
- Find each data point's absolute distance from the mean: |value - mean|
- Find the mean of those distances
A smaller MAD means data is clustered near the mean (consistent). A larger MAD means data is spread out.