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?

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 908 views
  • 0 likes
  • 2 in conversation