BookmarkSubscribeRSS Feed
Student_B
Calcite | Level 5

Suppose we have variables ID X Y and our data looks like this:

003 42 34

004 54 65

005 33 46

. . .

I want to perform a paired and unpaired t-test on the X and Y variables without a data step (this is part of the question).. I understand

how to do a paired, but how can you do an unpaired t-test, as in X and Y are just different sets of sample data? es

2 REPLIES 2
PGStats
Opal | Level 21

Proc Transpose...; by id; var x y; run; ? Then proc ttest...; class _NAME_; var col1; run;

PG
Reeza
Super User

You need to transform your data so that you have your variables stacked and a new variable that identifies the groups:

ID Var Value

1 X 1

1 Y 2

1 X 3

1 Y 4

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
  • 2 replies
  • 1568 views
  • 0 likes
  • 3 in conversation