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;
There are a number of options, depending on exactly what correlation/covariance matrix you mean. The documentation lists them:
There are a number of options, depending on exactly what correlation/covariance matrix you mean. The documentation lists them:
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.