2017年5月5日星期五

Hodges-Lehmann Estimation of Location Shift



data e1041;
input group $ x;
datalines;
1 2.3
1 0.3
1 5.2
1 3.1
1 1.1
1 0.9
1 2.0
1 0.7
1 1.4
1 0.3
2 0.8
2 2.8
2 4.0
2 2.4
2 1.2
2 0.0
2 6.2
2 1.5
2 28.8
2 0.7
;
run;
 proc npar1way hl alpha=.05 data=e1041;
      class group;
      var x;
      exact hl;
      ods select WilcoxonScores HodgesLehmann;
  run;