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

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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