BookmarkSubscribeRSS Feed
kumarnaidu
Calcite | Level 5

Hello everyone,

Can anybody tell me the statistical test that can be used for the single arm study with multiple time point (repeated measures). We have total five time points here say baseline, week12, week24, week36 and week48. Can we use repeated measure anova here.

1 REPLY 1
SteveDenham
Jade | Level 19

Yes, something along the lines of:

proc glimmix data=yourdata;

class timepoint subjectid;

model response=timepoint /*Insert any distribution or link functions here as needed*/;

random timepoint/subject=subjectid type=ar(1); /* ARH(1) may also be appropriate here.  Also, if the response variable has a Gaussian distribution for residuals, then the residual option should be invoked here as well */

lsmeans timepoint/diff=control;

run;

This will give a test of each timepoint versus the baseline.

Steve Denham

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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