BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
tka726
Obsidian | Level 7

I’m running a glimmix model and wanted to make sure I am modelling the data correctly.  Glimmix is a relatively new procedure for me.

Each subject was followed for 4 days, and they were randomized to one of two trainers. Subjects were with each trainer at least once, but could have been with one trainer 3 times and the other trainer once (like subject 3). At the end of each day, a test was given.

I’m trying to see if the scores differed depending on trainer, over the 4 days. Also interested in the differences in scores for each day.

 

This is a simplified snapshot of my actual data.

 

PTNO   DAY    TRAINER    SCORE

1             1             1             50

1             2             2             60

1             3             1             55

1             4             2             45

2             1             1             70

2             2             1             72

2             3             2             90

2             4             2             85

3             1             1             67

3             2             1             79

3             3             1             80

3             4             2             85

...

 

 

Is this the correct model?

PROC GLIMMIX DATA=ads;

  CLASS ptno trainer day;

  MODEL score = trainer day  trainer*day  ;

  random int / subject=ptno;

   RANDOM day / subject=ptno*trainer type=un;

Run;

 

1 ACCEPTED SOLUTION

Accepted Solutions
jiltao
SAS Super FREQ

I would probably add the RESIDUAL option to your second RANDOM statement --

 RANDOM day / subject=ptno*trainer type=un residual;

 

Thanks,

Jill

View solution in original post

1 REPLY 1
jiltao
SAS Super FREQ

I would probably add the RESIDUAL option to your second RANDOM statement --

 RANDOM day / subject=ptno*trainer type=un residual;

 

Thanks,

Jill

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
  • 447 views
  • 1 like
  • 2 in conversation