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: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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