Median Absolute Deviation Calculator
Paste a list of numbers to calculate median absolute deviation around the median. The sorted values and each absolute deviation stay visible, so robust spread can be checked instead of treated as a black box.
values sorted 2 4 4 4 5 5 7 9 n = 8 median (4 + 5) / 2 = 4.5 |x - 4.5| sorted 0.5 0.5 0.5 0.5 0.5 2.5 2.5 4.5 sum = 12 median absolute deviation about the median (0.5 + 0.5) / 2 = 0.5 scaled 1.4826 x 0.5 = 0.7413 an approximation
- n
- Centre (median)
- Scaled by 1.4826
- Median absolute deviation
Median absolute deviation about the median. Take the median of every |x - median|. The robust statistic: one wild value moves it hardly at all, which is why outlier rules are built on it.
Median absolute deviation about the median of 8 values is 0.5.
Commas, spaces, tabs, semicolons and new lines all separate values, so a column copied from a spreadsheet pastes straight in, and up to 10,000 values are read at a time. Figures on screen are rounded to six decimal places; the arithmetic itself keeps full double precision. Nothing you type leaves this browser.
Worked examples
Common questions
- What does median absolute deviation measure?
- It takes the median of the absolute distances from each value to the data set's median, making it less sensitive to outliers than standard deviation.
Exact arithmetic: the mean of the absolute deviations from the centre you choose, with every deviation shown so you can add them up yourself. Mean deviation about the mean and median absolute deviation about the median are two different statistics and are labelled separately here, never merged. The 1.4826 normal-consistency scaling is an approximation and is shown apart from the raw value.