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

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