I have some nested data on a surgical intervention on patients with multiple fingers - some with both limbs. So I have a random effect of finger within limb within patient in a mixed model. My question is, if I want to produce an estimate for say just the "thumbs" - could I use an estimate statement for that?
Sure. If you use the simulated nested data in the PROC NLMIXED documentation,
the MIXED code might look like this:
proc mixed data = nested method=ML;
class A B;
model resp = / s;
random a b(a);
run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.