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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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
  • 1215 views
  • 0 likes
  • 2 in conversation