BookmarkSubscribeRSS Feed
SandraG
Calcite | Level 5

I have 5 imputed datasets (outMI), and I have the following code to compute polychoric correlation matrices from the 5 imputed datasets (to create dataset polycorr_MI):

proc corr data=outMI outplc=polycorr_MI (TYPE=CORR);
var x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 x11 x12 x13 x14 x15;
by _IMPUTATION_;
run;

 

There was a great (old) thread about how to combine multiple pearson correlation matrices from imputed datasets to create one combined correlation matrix:

https://communities.sas.com/t5/SAS-Procedures/Producing-a-combined-correlation-matrix-using-PROC-MIA...

 

However, the code given is only for pearson correlations, not for polychoric correlations. How can I combine the 5 polychoric correlation matrices using proc mianalyze (or another proc?)

Is there a similar way to do this combination when you have polychoric and not pearson correlations?

 

Any help is appreciated! 

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
  • 0 replies
  • 414 views
  • 0 likes
  • 1 in conversation