|
DIFFERENCE OF QNName:
An analogous scale estimate can be obtained by replacing pairwise averages with pairwised distances:
This estimate has high efficiency for normal data (86%), but a breakdown point of only 29%. Rousseeuw and Croux proposed the following variation of this statistic:
where d is a constant factor and k =
Enter HELP QN SCALE for a more detailed discussion of the Qn scale estimate. For the difference of Qn scale estimates, the Qn scale estimate is computed for each of the two samples then their difference is taken.
<SUBSET/EXCEPT/FOR qualification> where <y> is the response variable; <par> is a parameter where the computed difference of Qn scale estimates is stored; and where the <SUBSET/EXCEPT/FOR qualification> is optional.
LET A = DIFFERENCE OF QN Y1 SUBSET TAG > 2
CROSS TABULATE DIFFERENCE OF QN PLOT Y X1 X2 BOOTSTRAP DIFFERENCE OF QN PLOT Y JACKNIFE DIFFERENCE OF QN PLOT Y
TABULATE DIFFERENCE OF QN Y X
"Data Analysis and Regression: A Second Course in Statistics", Mosteller and Tukey, Addison-Wesley, 1977, pp. 203-209.
SKIP 25
READ IRIS.DAT Y1 TO Y4 X
.
LET A = DIFFERENCE OF QN Y1 Y2
TABULATE DIFFERENCE OF QN Y1 Y2 X
.
MAJOR XTIC MARK NUMBER 3
MINOR XTIC MARK NUMBER 0
XTIC OFFSET 0.2 0.2
X1LABEL GROUP ID
Y1LABEL DIFFERENCE OF QN
CHARACTER X
LINE BLANK
DIFFERENCE OF QN PLOT Y1 Y2 X
CHARACTER X ALL
LINE BLANK ALL
BOOTSTRAP DIFFERENCE OF QN PLOT Y1 Y2 X
Dataplot generated the following output.
**************************************
** LET A = DIFFERENCE OF QN Y1 Y2 **
**************************************
THE COMPUTED VALUE OF THE CONSTANT A = 0.43340060E+00
*****************************************
** TABULATE DIFFERENCE OF QN Y1 Y2 X **
*****************************************
* Y1 AND Y2
X * DIFFERENCE OF QN
**********************************************
1.00000 * -0.506639E-06
2.00000 * 0.206496
3.00000 * 0.206497
Date created: 5/21/2003 |