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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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