2-seq, 4-trt, 4 period cross over (SAS) [Software]

posted by d_labes  – Berlin, Germany, 2009-08-17 17:33 (6145 d 13:29 ago) – Posting: # 4055
Views: 5,782

Hello Balakotu,

❝ any body tell me i have 2-sequence, 4-treatment and 4-period cross over

❝ study i need SAS Procedure for this study plz help me soon.

❝ Ex:

❝      T1 R1 T2 R2
❝      T2 R2 T1 R1

The SASophylistic evaluation uses the same PROC GLM as for the cassical 2x2 cross over.
Here a code snippet:
Proc GLM data=yourdata;
  class tmt period sequence subject;

  model logAUC=tmt period sequence subject(sequence) /SS3;
  random subject(sequence)/test;

  LSMeans tmt/pdiff CL alpha=0.1;
run; quit;


Don't forget the back-transformation of the 90% CI's.

The code assumes that you have a long dataset i.e. rows with
logAUC subject sequence tmt period as variables.

Eventually you have to adjust the alpha depending on the problem.


Edit: Welcome back! How was Salzburg? [Helmut]

Regards,

Detlew

Complete thread:

UA Flag
Activity
 Admin contact
23,653 posts in 4,991 threads, 1,570 registered users;
129 visitors (0 registered, 129 guests [including 20 identified bots]).
Forum time: 07:03 CEST (Europe/Vienna)

The idea is to try and give all the information to help others
to judge the value of your contribution;
not just the information that leads to judgment
in one particular direction or another.    Richard Feynman

The Bioequivalence and Bioavailability Forum is hosted by
BEBAC Ing. Helmut Schütz
HTML5