BookmarkSubscribeRSS Feed
deleted_user
Not applicable
How can I analyze a design where the sample is randomly divided into three groups? Each group receives one of three treatments and dependent variables are measured. Then, a second trial is conducted where each group is administered a different treatment than they received the first time, and dependent variables are measured. The same procedure is followed a third time.

I have been told that this is a repeated measures design. However, the only examples of repeated measures I can find like this involve the same treatments over time, and between subjects (group) differences are compared.

I need a SAS code to partial out the repeated measures part of the SSEs.
2 REPLIES 2
Rucstat_huadli
Fluorite | Level 6
Your mean is A Three (Sequences) by Three (Periods) Crossover Design with Repeated Measures?

The Mixed Linear Model,I think, is fitted for this design.
Rucstat_huadli
Fluorite | Level 6
PROC MIXED data = data;
CLASS subject trt period seq;
MODEL var = trt seq period / s ddfm=satther;
RANDOM subject(seq);
CONTRAST 'A vs B' trt 1 -1 0/ stdiff cl;
RUN;

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

Health and Life Sciences Learning

 

Need courses to help you with SAS Life Sciences Analytics Framework, SAS Health Cohort Builder, or other topics? Check out the Health and Life Sciences learning path for all of the offerings.

LEARN MORE

Discussion stats
  • 2 replies
  • 1213 views
  • 0 likes
  • 2 in conversation