BookmarkSubscribeRSS Feed
Manije72
Calcite | Level 5

Hi

I want to adjust spearman correlation to age and BMI. Is the code I used correct?

 

proc corr data=Qe rank;

partial age bmi;
var IL_2_C;
WITH CRP;
run;

2 REPLIES 2
Ksharp
Super User
/*Want this ?*/
proc corr data=sashelp.heart  spearman;
partial Diastolic Systolic ;
var weight;
WITH height;
run;
Rick_SAS
SAS Super FREQ

Almost correct. You need to add the SPEARMAN option to the PROC CORR statement. (The RANK option sorts the output, but does not compute the Spearman correlation.)

 

This is assuming that you are trying to find the correlation between the residuals of

IL_2_C and CRP
after regressing each variable onto the AGE and BMI variables.

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
  • 752 views
  • 0 likes
  • 3 in conversation