- Robustness properties of the three estimators the mean, the median, and the Hodges–Lehmann estimate.
- Main measures of robustness:
- efficiency,
- influence,
- and breakdown
- Today, we focus on influence and breakdown
Stanford University, Spring 2016, STATS 205
x_n = c(1.85,2.35,-3.85,-5.25,-0.15,2.15,0.15,-0.25,-0.55,2.65) mean(x_n)
## [1] -0.09
median(x_n)
## [1] 0
hl.loc(x_n)
## [1] 0
The median of the Walsh averages, stays with the majority.
\[ \begin{align} \# \text{good points} & > \# \text{bad points} \\ \frac{m(m+1)}{2} & > \frac{n(n+1) - m(m+1)}{2} \\ m(m+1) & > \frac{n(n+1)}{2} \end{align} \]