Robust measures of central tendency and dispersion
Robust statistics seek to describe data sets that suffer from noisy measurements. In particular, they should remain meaningful when a fraction of the data is changed dramatically.
|
Robust Measures of Dispersion
|
|
A measure of dispersion, also known as a measure of scale, is a statistic of a data set that describes the variability or spread of that data set. Two well-known examples are the standard deviation and the interquartile range. Two more measures of dispersion are called and , originally proposed by Rousseeuw and Croux [1].
Let us investigate how measures of dispersion behave when noise is added to a data set. Specifically, we will have an original data set of, say, data points, and a perturbed data set where a certain fraction of the data points are changed dramatically. We investigate at what value of the values become meaningless.
>
|
X := Sample(Normal(0, 1), 1000);
|
For the standard deviation, we see that changing only one data point can massively change the standard deviation. In other words, there is no positive fraction of the data points that we can change while keeping the standard deviation bounded. We say that the breakdown point of the standard deviation is 0.
For the interquartile range, the process is different. Changing a single data point doesn't make the interquartile range of change very much; in fact, we can change up to a quarter of the data points while staying within an order of magnitude from the interquartile range of . As soon as we have changed 250 out of the 1000 data points, though, the interquartile range also goes through the roof.
This suggests that the breakdown point of the interquartile range is : changing strictly fewer than of the points cannot make the interquartile range unbounded. This is indeed correct. We say that the interquartile range is more robust than the standard deviation.
The breakdown point for any statistic can never be more than : if we change over half of the data points in the set, then there's no way to decide what the "correct" data is, and what the "changed" data is. So are there dispersion statistics that reach this maximal breakdown point?
Yes, there are. A relatively well-known one is the median absolute deviation from the median, available in Maple as MedianDeviation. As the name says, it is obtained by computing the absolute difference between every data point and the median of the data set, and taking the median of these values.
The median absolute deviation from the median is a very useful robust estimator, but it also has some disadvantages, explained in the paper [1] by Rousseeuw and Croux. One of their objections is that it doesn't deal with asymmetric distributions very well, and another is that, while it is very robust against extreme changes in some points, it needs relatively many data points to "converge" to the proper value for a distribution in the absence of disturbance. In the statistics literature, this is phrased as saying that the median absolute deviation from the median is not very efficient. These authors propose two alternative statistics that also have a breakdown point of but higher efficiency, called and . Maple has an implementation of both of these, called RousseeuwCrouxSn and RousseeuwCrouxQn.
The estimator requires a different pattern to break:
>
|
Y[1..499] := Vector(499, i -> i * 10^97):
|
We will show how all of these statistics deviate from their true value for beta-distributed data samples at sample sizes from 10 to 10000 and with fractions between and of the data replaced by the value . In particular, given the sample size and the fraction , we replace the highest percent of the data by , then divide value obtained for the changed sample by the true value for the distribution, thus obtaining a number that should be for an ideal statistic. We then repeat this times, and take the average squared difference from . This is the number shown in the plot below for each of the five measures of dispersion discussed above.
>
|
functions := [StandardDeviation, InterquartileRange, MedianDeviation, RousseeuwCrouxSn, RousseeuwCrouxQn]:
|
>
|
nf := numelems(functions):
|
>
|
X := Sample(BetaDistribution(0.9, 1.7), 10^6):
|
>
|
true_values := map(f -> f(X), functions);
|
>
|
sample_sizes := [10, 30, 100, 300, 1000, 3000, 10000]:
|
>
|
nss := numelems(sample_sizes):
|
>
|
results := Array(1 .. nf, 1 .. nss, 0 .. 10, 1 .. 100);
|
>
|
for k to 100 do
X := Sample(BetaDistribution(0.9, 1.7), max(sample_sizes));
for i to nss do
Y := X[1 .. sample_sizes[i]];
sort[inplace](Y, `>`):
for j from 0 to 10 do
Y[1 .. ceil(j * sample_sizes[i] / 20)] := 5;
for f to nf do
results[f, i, j, k] := functions[f](Y) / true_values[f];
end do;
end do;
end do:
end do:
|
>
|
rr := Array(1 .. nf, 1 .. nss, 0 .. 10):
|
>
|
for i to nss do
for j from 0 to 10 do
for f to nf do
rr[f,i,j] := sqrt(Moment(results[f, i, j], 2, origin = 1));
end do:
end do:
end do:
|
>
|
plots:-display(plots:-surfdata~([seq(convert(rr[i], Matrix), i=1 .. nf)], 1 .. nss, 0 .. 0.5,
color =~ [red, green, blue, yellow, purple], transparency = 0.2),
axis[1]=[tickmarks=[seq(i = sample_sizes[i], i = 1 .. nss)]], axis[3]=[mode=log],
view=[DEFAULT,DEFAULT, min(rr) .. 10], orientation=[116, -68, 177],
labels=[`Sample sizes`, r, `Standard deviation`],
labeldirections=[horizontal, horizontal, vertical]);
|
| |
The colors are red for the standard deviation, green for the interquartile range, blue for the median absolute deviation from the median, yellow for Rousseeuw and Croux' , and purple for . Lower numbers are shown higher in the graph, and are better. We see that in the case where there is no noise (), the standard deviation has the lowest distortion. However, as soon as there is any distortion, it is immediately too inaccurate to be useful for any purpose. For , the interquartile range (green) does reasonably well, but greater values of make it, too, unusable. For larger values, the median absolute deviation from the median (blue), (yellow), and (purple) all do reasonably well.
Another interesting experiment is to see how these measures of dispersion distinguish two Cauchy distributions with different scale parameters. We can see that the values in (plotted in green, below) are just a little further spread out than those in (plotted in red). Indeed, one could obtain a sample of the distribution underlying by multiplying a sample from the distribution underlying by . It would be nice if measures of dispersion reflect this fact. However, the Cauchy distribution naturally has many outliers, and indeed the standard deviation of the distribution is undefined.
>
|
X1 := Sample(Cauchy(0, 1.0), 10^5):
|
>
|
X2 := Sample(Cauchy(0, 1.1), 10^5):
|
>
|
plots:-display(KernelDensityPlot~([X1, X2], left=-12, right=12, color =~ [red, green]));
|
>
|
for i to nf do
f1 := functions[i](X1);
f2 := functions[i](X2);
print(convert(functions[i], 'string'), f1, f2, f2/f1);
end do:
|
We see that all measures of dispersion with a breakpoint greater than , that is, all of them except for the standard deviation, reproduce this ratio of fairly closely.
|
|
Robust measures of central tendency
|
|
A measure of central tendency is a statistic that identifies a central value in a sample or distribution. Well-known examples are the Mean, the Median, and the Mode. Another measure of central tendency was invented by Hodges and Lehmann (see [2]) and independently by Sen (see [3]); it is often called the Hodges-Lehmann estimator.
We can study the breakdown point of these quantities as we did with the measures of dispersion. For the mean, the breakdown point is .
>
|
X := Sample(Normal(0, 1), 1000);
|
The mode is a little tricky to handle for a continuous probability distribution given by a sample. The median is clearer; its breakdown point is .
The Hodges-Lehmann estimator has a breakdown point of or about .
The advantage of the Hodges-Lehmann estimator is that it converges to its limit value more quickly than the median does (at least for distributions that are symmetric about the median); that is, for relatively small sample sizes, the Hodges-Lehmann estimator has greater accuracy. We proceed as in the previous section.
>
|
functions := [Mean, Median, HodgesLehmann];
|
>
|
nf := numelems(functions):
|
>
|
X := Sample(BetaDistribution(0.9, 1.7), 10^6):
|
>
|
true_values := map(f -> f(X), functions);
|
>
|
sample_sizes := [10, 30, 100, 300, 1000, 3000, 10000]:
|
>
|
nss := numelems(sample_sizes):
|
>
|
results := Array(1 .. nf, 1 .. nss, 0 .. 10, 1 .. 100);
|
>
|
for k to 100 do
X := Sample(BetaDistribution(0.9, 1.7), max(sample_sizes));
for i to nss do
Y := X[1 .. sample_sizes[i]];
sort[inplace](Y, `>`):
for j from 0 to 10 do
Y[1 .. ceil(j * sample_sizes[i] / 20)] := 5;
for f to nf do
results[f, i, j, k] := functions[f](Y) / true_values[f];
end do;
end do;
end do:
end do:
|
>
|
rr := Array(1 .. nf, 1 .. nss, 0 .. 10):
|
>
|
for i to nss do
for j from 0 to 10 do
for f to nf do
rr[f,i,j] := sqrt(Moment(results[f, i, j], 2, origin = 1));
end do:
end do:
end do:
|
>
|
plots:-display(plots:-surfdata~([seq(convert(rr[i], Matrix), i=1 .. nf)], 1 .. nss, 0 .. 0.5,
color =~ [red, green, blue], transparency = 0.2),
axis[1]=[tickmarks=[seq(i = sample_sizes[i], i = 1 .. nss)]], axis[3]=[mode=log],
view=[DEFAULT,DEFAULT, min(rr) .. 10], orientation=[116, -68, 177],
labels=[`Sample sizes`, r, `Standard deviation`],
labeldirections=[horizontal, horizontal, vertical]);
|
We see that the mean (in red) performs best when , but miserably otherwise. The Hodges-Lehmann estimator behaves very well for . Beyond that only the median does well.
We can also reproduce the experiment with the Cauchy distribution. We now vary the location parameter between the two samples; the values in (plotted in green, below) are just a little further to the right, that is, greater, than those in (plotted in red). In this case, one could obtain a sample of the distribution underlying by adding to a sample from the distribution underlying . It would be nice if measures of central tendency reflect this fact. However, the Cauchy distribution does not have a mean.
>
|
X1 := Sample(Cauchy(0.0, 1), 10^5):
|
>
|
X2 := Sample(Cauchy(0.1, 1), 10^5):
|
>
|
plots:-display(KernelDensityPlot~([X1, X2], left=-12, right=12, color =~ [red, green]));
|
>
|
for i to nf do
f1 := functions[i](X1);
f2 := functions[i](X2);
print(convert(functions[i], 'string'), f1, f2, f2-f1);
end do:
|
Again, we see that the two measures of central tendency with breakpoint greater than (that is, the median and the Hodges-Lehmann estimator) reproduce this difference of correctly, whereas the mean (with breakpoint ) does not.
|
|
References
|
|
|
[1] Rousseeuw, Peter J., and Croux, Christophe. Alternatives to the Median Absolute Deviation. Journal of the American Statistical Association 88(424), 1993, pp.1273-1283.
|
|
[2] Hodges, Joseph L., and Lehmann, Erich L. Estimation of location based on ranks. Annals of Mathematical Statistics 34(2), 1963, pp.598–611.
|
|
[3] Sen, Pranab K. On the estimation of relative potency in dilution(-direct) assays by distribution-free methods. Biometrics 19(4), 1963, pp.532–552.
|
|
|