2-seq, 4-trt, 4 period cross over (SAS) [Software]
Hello Balakotu,
The SASophylistic evaluation uses the same PROC GLM as for the cassical 2x2 cross over.
Here a code snippet:
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]
❝ 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 R1The 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
Regards,
Detlew
Complete thread:
- 2-seq, 4-trt, 4 period cross over (SAS) balakotu 2009-08-17 10:06
- 2-seq, 4-trt, 4 period cross over (SAS)d_labes 2009-08-17 15:33
- 2-seq, 4-trt, 4 period cross over (SAS) balakotu 2009-08-18 07:30
- Totally unbalanced 4-period cross-over, confounded d_labes 2009-08-18 14:02
- 2-seq, 4-trt, 4 period cross over (SAS) balakotu 2009-08-18 07:30
- 2-seq, 4-trt, 4 period cross over (SAS)d_labes 2009-08-17 15:33
