Macro Name | BriefTTest.sas |
---|---|
Description | This macro creates abbreviated TTest output and a dataset with theTTest results. |
Macro Parameters | datain = Input dataset dataout = Output dataset class variable = 2 level class variable varlist = Outcome variables digits = Significant digits to keep after the decimal. |
Programmer Name | Arthur Watts |
Revision History | March 29,2010 |
Disclaimer | This SAS macro is developed by Arthur Watts in the Department of Biostatistics and Computational Biology at the University of Rochester under the auspice of the CTSI BREAD with the intent to facilitate data analyses and reporting in clinical and related research. It is copyrighted by Mr. Watts, March 2010 and distributed for free public access. |
Example of macro call | %BriefTTest(datain,dataout,class,varlist,digits); %BriefTTest(mydata,dataout,gender,Cholesterol SystolicBP DiastolicBP Weight,3); |
---|
Special Features | If the Equality of Variance is >= 0.05, then the Pooled P-value is printed. If the Equality of Variance is < 0.05, then the Satterthwaite P-value is printed. Both P-values are kept in the output dataset. |
---|
Called Macros | CheckData CheckVariabs CheckNumVars CheckNumber |
---|