Hi, I am relatively new to SAS and I have a question on what Proc should I use.
I have a dataset that is categorized by two classes, e.g. Scenarios A,B,C and also Status Active Inactive. I hope to create a table where I can get the mean, median, s.d.,min,max for each category and also to test the differences in both mean and median between Status Active and Inactive for each of the Scenarios A,B,C I mean something below:
Test for Difference between Active and Inactive samples
t-statistic Wilcoxon Z
Scenario A 2,2** 2.8**
Scenario B 3.1*** 2.1**
I know I can use the proc means to get the descriptive statistics that I want, but after reading the guide, Im not sure how to proceed to get the mean and median difference test. Must I separate my dataset into 3 dataset based on the 3 scenarios and then run proc ttest and proc npar1way for each of the 3 sub datasets? Or is there a better way that I can use for the combined dataset and generate the desired table format?
Thank you in advance for any help offered!
Look at PROC TTEST and PROC NPAR1WAY. Use by group processing. First sort your dataset by scenarios. Then, as an example, try:
proc npar1way data=yourdataset median;
by scenario;
class status;
var response;
run;
A similar setup can be used for proc ttest:
proc ttest data=yourdataset;
by scenario;
class status;
var response;
run;
Good luck.
Steve Denham
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.