Hi
Could someone explain correlation in SAS with example and syntax.
Thanks
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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.