Hello,
I am looking to test on sas-mainframe (V9, not sas-pc 9.4) if two populations are significatnly different.
I have one continuous variable for 2 populations and want to get a "p-value" in a simple output table to know how different the populations are. I think this shopuld be easily available in sas, but I cannot find it. Note: One of the two populations is 100 times bigger than the other one.
There are many ways that two populations can differ. If you are looking for a Stats 101 test, you probably want the univariate t test, which tests whether the population means are different. You can use PROC TTEST for this. See the example in the documentation for comparing group means. To use the TTEST procedure, you will want to put the data in "long form" in a single data set, like this.
GROUP VALUE
1
1
...
2
2
2
...
If you don't know how to do that, write back and tell us the names of your data sets and variables.
Thanks for your answer. How can I easily also retrieve a table with the output statistics?
The tables will be displayed automatically. Do you mean that you want to create a data set of the results?
If so use the ODS OUTPUT statement to create a SAS data set from the table.
indeed. I just found it ODS OUTPUT STATISTICS=.... ;
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.