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;
Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.
Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.
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.