BookmarkSubscribeRSS Feed
Melk
Lapis Lazuli | Level 10

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? 

2 REPLIES 2
Rick_SAS
SAS Super FREQ

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;
Melk
Lapis Lazuli | Level 10
So lets say I have 2 levels for hand and 5 levels for finger, I could use:
estimate a 0 1 b(a) ...
to get the estimated mean Y for a specific finger for both hands?

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is ANOVA?

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.

Discussion stats
  • 2 replies
  • 1550 views
  • 0 likes
  • 2 in conversation