I am trying to output the growth parameters for each "class1213" into an output dataset. What syntax should I use? (The one I have here is not correct, apparently.) proc mixed data=two; class class1213; model cld1 = time/solution ddfm=bw notest; random intercept time/subject=class1213 type=un; ods output class1213 time; run;
... View more