BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
fatemeh
Quartz | Level 8

Hello all,

i am applying proc mixed for repeated measure designs i need the correlation matrix and the ρ .any help is appreciated .

bellow is the mixed model code:


proc mixed data=my data ;
 class  Subject time treat ;
 model response=time | treat / solution outpm=outpm;
 repeated time/ type=CS subject=Subject(treat) R ;

 ods select CovParms SolutionF  R ;
 ods output CovParms=CovParms SolutionF=SolutionF  R=R ;
run;

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

There are a number of options, depending on exactly what correlation/covariance matrix you mean. The documentation lists them:

http://documentation.sas.com/?cdcId=pgmmvacdc&cdcVersion=9.4&docsetId=statug&docsetTarget=statug_mix...

--
Paige Miller

View solution in original post

2 REPLIES 2
PaigeMiller
Diamond | Level 26

There are a number of options, depending on exactly what correlation/covariance matrix you mean. The documentation lists them:

http://documentation.sas.com/?cdcId=pgmmvacdc&cdcVersion=9.4&docsetId=statug&docsetTarget=statug_mix...

--
Paige Miller
fatemeh
Quartz | Level 8
appreciate for your smart response.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 3265 views
  • 1 like
  • 2 in conversation