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

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1615 views
  • 3 likes
  • 2 in conversation