BookmarkSubscribeRSS Feed
JooK
Calcite | Level 5

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.

4 REPLIES 4
Rick_SAS
SAS Super FREQ

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.

JooK
Calcite | Level 5

Thanks for your answer. How can I easily also retrieve a table with the output statistics?

Rick_SAS
SAS Super FREQ

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.

JooK
Calcite | Level 5

indeed. I just found it ODS OUTPUT STATISTICS=.... ;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is ANOVA?

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.

Discussion stats
  • 4 replies
  • 1331 views
  • 0 likes
  • 2 in conversation