finite.sample.breakdown | R Documentation |
Calculates the finite-sample breakdown point of the mean, median, Hodges-Lehmann estimators (HL1, HL2, HL3), standard deviation, range, MAD (median absolute deviation) and Shamos estimators. Note that for the case of the mean, standard deviation and range, the finite-sample breakdown points are always zero.
finite.breakdown (n, estimator=c("mean","median","HL1","HL2","HL3", "sd","range","mad","shamos") )
n |
a numeric vector of sample sizes. |
estimator |
a character string specifying the estimator, must be
one of |
finite.breakdown
gives the finite-sample breakdown point
of the specified estimator.
The Hodges-Lehmann (HL1) is defined as
HL1 = median of (X i+Xj)/2 over i<j
where i, j=1,2,...,n.
The Hodges-Lehmann (HL2) is defined as
HL2 = median of (Xi+Xj)/2 over i ≤ j.
The Hodges-Lehmann (HL3) is defined as
HL3 = median of (Xi+Xj)/2 over all (i,j).
It returns a numeric value.
Chanseok Park and Min Wang
Park, C., H. Kim, and M. Wang (2022).
Investigation of finite-sample properties of robust location and scale estimators.
Communications in Statistics - Simulation and Computation,
51, 2619-2645.
doi: 10.1080/03610918.2019.1699114
Hodges, Jr., J. L. (1967). Efficiency in normal samples and tolerance of extreme values for some estimators of location. Proceedings of the Fifth Berkeley Symposium on Mathematical Statistics and Probability, Vol. 1, 163–186. University of California Press, Berkeley.
Hampel, F. R., Ronchetti, E., Rousseeuw, P. J., and Stahel, W. A. (1986). Robust Statistics: The Approach Based on Influence Functions, Subsection 2.2a. John Wiley & Sons, New York.
HL
{rQCC} for the Hodges-Lehmann estimator.
# finite-sample breakdown point of the Hodges-Lehmann (HL1) with size n=10. finite.breakdown(n=10, estimator="HL2") # finite-sample breakdown points of the median with sizes n=4,5,6 finite.breakdown(n=4:6, estimator="median")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.