Thanks as always to Kit Baum, an update for pwmc is now available from the SSC.
The pwmc command performs pairwise comparisons of means with unequal variances.
To install the latest version from within Stata, type
You can also download the latest version of the command from my GitHub repository.
The update is a complete rewrite of the 2014 version. It fixes a bug on Linux OS, introduces new options, new returned results, and a new reporting routine. I do not expect the changes to break old code; if they do, let me know.
Here is a quick example from the help file:
I hope some of you will find this useful.
The pwmc command performs pairwise comparisons of means with unequal variances.
To install the latest version from within Stata, type
Code:
ssc install pwmc
The update is a complete rewrite of the 2014 version. It fixes a bug on Linux OS, introduces new options, new returned results, and a new reporting routine. I do not expect the changes to break old code; if they do, let me know.
Here is a quick example from the help file:
Code:
. sysuse nlsw88 (NLSW, 1988 extract) . pwmc wage , over(race) Pairwise comparisons of means with unequal variances ------------------------------------------------------------------- | Robust wage | Diff. Std. Err. [95% Conf. Interval] -------------+----------------------------------------------------- race | 2 vs 1 | -1.238442 .2566354 -1.841136 -.6357475 (C) | -1.840673 -.6362105 (GH) | -1.852083 -.6248002 (T2) 3 vs 1 | .4677818 1.032201 -2.100212 3.035776 (C) | -2.096844 3.032408 (GH) | -2.165544 3.101108 (T2) 3 vs 2 | 1.706223 1.04306 -.8858822 4.298329 (C) | -.8790847 4.291532 (GH) | -.9474056 4.359853 (T2) ------------------------------------------------------------------- Key: C: Dunnett C GH: Games and Howell T2: Tamhane T2
Comment