Hello,
I have a data set with 14 different groupings of test/control records, and I need to run t-tests on all. So I have one variable titled, "Test_ID" and the values run A1, A2, A3... A14 (test) and Z1, Z2 .... Z14 (control). I want to test for the difference in the variable, "Revenue." Is there a simple statement I am overlooking on the white papers which will let me do this, or do I just need to write a macro do loop and let that run through?
Thanks!
--Russell
I think that the following describes what you are trying to do. I'm presuming that these are all independent tests, except that all of the data exists in one file. Also realize, I am not a statistician, thus check the results to see if it is actually doing what you want to do:
data have;
input testid $ revenue;
cards;
A1 10
A1 12
Z1 3
Z1 14
A2 9
A2 6
A2 5
Z2 14
Z2 15
;
data need;
set have;
testgroup=substr(testid,2);
run;
proc ttest data=need;
class testid;
by testgroup;
run;
I think that the following describes what you are trying to do. I'm presuming that these are all independent tests, except that all of the data exists in one file. Also realize, I am not a statistician, thus check the results to see if it is actually doing what you want to do:
data have;
input testid $ revenue;
cards;
A1 10
A1 12
Z1 3
Z1 14
A2 9
A2 6
A2 5
Z2 14
Z2 15
;
data need;
set have;
testgroup=substr(testid,2);
run;
proc ttest data=need;
class testid;
by testgroup;
run;
Doh! I knew it was that easy! How did I not pick up on this on all the whitepapers I read...
Thanks!
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.