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?

sas-innovate-white.png

Our biggest data and AI event of the year.

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.

 

Register now!

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
  • 1415 views
  • 0 likes
  • 2 in conversation