BookmarkSubscribeRSS Feed
Pinky9
Calcite | Level 5

Hi

Could someone explain correlation in SAS with example and syntax.

Thanks

1 REPLY 1
AncaTilea
Pyrite | Level 9

Using the SASHELP.CLASS data set, say you wonder if height and weight are correlated. One could expect that.

PROC CORR DATA = SASHELP.CLASS;

VAR WEIGHT HEIGHT;

RUN;

Then you get an output like this:

                            Pearson Correlation Coefficients, N = 19

                                   Prob > |r| under H0: Rho=0

                                                Weight        Height

                               Weight       1.00000       0.87779

                                                                  <.0001

                               Height       0.87779       1.00000

                                               <.0001

That at the very least it's telling you that the (pearson) correlation is 0.88.

There is also plenty of documentation here:

Base SAS(R) 9.2 Procedures Guide: Statistical Procedures, Third Edition

Best of luck.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 610 views
  • 0 likes
  • 2 in conversation