Thanks for your help! I believe I needed to combine the covparm and subject into one variable! *Step 1: Combine covparm and subject in one variable; data cvparmsm1; set cvparmsm; covparm2=covparm||subject; run; *Sort by covariance parameter estimate; proc sort data= cvparmsm1; by covparm2; run; *Step 3: Obtain the combined covariance parameters separately for the residual, nested level 2 and level 3; proc mianalyze data = cvparmsm1; by covparm2; modeleffects estimate; stderr stderr; run;
... View more