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