BookmarkSubscribeRSS Feed
vivianchu
Calcite | Level 5

The data order is ID, Group(0=placebo and 1= treatment), Time (0-3), Grip Strength, Status (0= no pain and 1 = pain)


I need to write the within-subjects and between-subjects models considering only a random subject effect and random intercept model.

Should I just use this the code like following one?


*random intercept;

PROC MIXED data=HW5.imp1 METHOD=ML COVTEST;

CLASS id;

MODEL implant = time /SOLUTION residual;

RANDOM INTERCEPT /SUB=id TYPE=UN G;

run;

ThanksQuestion for within and between subject

1 REPLY 1
SteveDenham
Jade | Level 19

I would also account for within subject correlation, with a repeated statement.  My preferred code would be:

proc glimmix data=hw5.imp1;

class id time;

model implant = time/solution;

random time/residual subject=id type=un;

run;

This provides the most direct between-within subject approach. Under the unstructured covariance approach, a random subject effect is completely confounded with the residual parameterization. For other structures, such as autoregressive structures for equally spaced in time measurements, the random effect of subject can be captured as:

proc glimmix data=hw5.imp1;

class id time;

model implant = time/solution;

random intercept/subject=id;

random time/residual subject=id type=un;

run;

Steve Denham

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
  • 1 reply
  • 1561 views
  • 3 likes
  • 2 in conversation