EasyDeepLearn

What is MAD and why is it robust?

medium

Answer

  • Median Absolute Deviation: MAD(X)  =  median(Xi    median(X))\mathrm{MAD}(X)\; = \;\mathrm{median}( \mid X_{i}\; - \;\mathrm{median}(X) \mid ).
  • Robust measure of dispersion — breakdown point 50% (half the data can be arbitrarily corrupted before MAD explodes; SD breaks down at 0%).
  • Use MAD instead of SD when data has outliers.
  • Scaled MAD: 1.4826 * MAD estimates σ under normality (approximately unbiased).
  • Foundation of robust statistics.
Check yourself — multiple choice
  • Same as SD
  • median(X    median(X))\mathrm{median}( \mid X\; - \;\mathrm{median}(X) \mid ) — 50% breakdown point (SD has 0%); scaled by 1.4826 approximates σ under normality
  • Not robust
  • Requires normality

MAD: median absolute deviation; 50% breakdown → robust dispersion measure.

#descriptive

Practise Statistics Fundamentals

215 interview questions in this topic.

Related questions