3-period replicate designs and SAS [Software]

posted by d_labes  – Berlin, Germany, 2008-12-04 15:17 (5615 d 20:53 ago) – Posting: # 2877
Views: 28,047

Dear Helmut, dear all,

❝ I've heard this term for the first time at the recent Workshop at Ahmedabad. Yes, it's a 3-period replicate design.


Taking the Holy Bible[1] of cross-over designs the best known 3-period replicate design has the name 3-period dual design with the two sequences

TRR
RTT

In the FDA Guidance an other 3-period replicate design is recommended:

TRT
RTR

But nowhere it is named "partial replicate design".

I have found this term in discussions (FDA and others) about scaled average bioequivalence. But here it denominates a one-sequence design :ponder: with replication of the reference only, for instance

TRR.


To answer the original question:
If the design is a 3-period design with more then one sequence, to my knowledge the SAS code for the evaluation of average bioequivalence does not depend on the specific design used in replicate studies, provided you will go with restricted maximum likelihood estimation (Proc MIXED in "The power to know").

The code recommended in the FDA guidance was discussed already in breadth on this forum. See for instance this thread and others (use search!).
Let me give it here again for your convienience.

Proc MIXED data=YourData method=REML alpha=0.1;
  class treatment period sequence subject;

  model Y= treatment period sequence / ddfm=satterth;     
  random treatment /subject=subject type=FA0(2) G;
  repeated /group=treatment subject=subject type=simple;

  ODS output LSMeans=_LSMeans Diffs=_CI;

  lsmeans treatment/diff cl alpha=0.1;
run;


Y is the pharmacokinetic target (eventually log transformed f.i. for AUC, Cmax). The ODS output statement saves you the least square means and the 90% confidence intervals in SAS datasets for further processing, f.i. to back transform them into the original scale if your target was log-transformed.
Be aware that SAS always gives you the difference (and 90% confidence interval) in least square means in lexicographic order, namely R-T if you code your treatments as R(eference) and T(est).
So do not forget to change the sign in subsequent processing!

But there are variants of this code (covariance structure other than FA0(2), other ddfm=denominator degrees of freedom) and there are complete other models to choose from!
See for instance [2] and [3].

If it is an ominous one-sequence design I think we have no sequence and period effects in the model.?

  1. B Jones and MG Kenward
    Design and Analysis of Cross-over Trials
    Chapman & Hall/CRC, Boca Raton, Chapter 4 (2nd ed. 2003)
  2. Patterson and Jones
    Replicate Designs and Average, Individual, and Population Bioequivalence
    GSK BDS Technical Report 2002 – 01 (part I)
    GSK BDS Technical Report 2002 – 05 (part II)
  3. S.A. Willavize and E.A. Morgenthin
    Comparison of models for average bioequivalence in replicate crossover designs
    Pharmaceut. Stat. Vol.5 (3), p. 201 - 211 (2008) published online 24 May 2006


Edit: Updated URLs. [Helmut]

Regards,

Detlew

Complete thread:

UA Flag
Activity
 Admin contact
22,988 posts in 4,825 threads, 1,657 registered users;
98 visitors (0 registered, 98 guests [including 6 identified bots]).
Forum time: 13:11 CEST (Europe/Vienna)

The whole purpose of education is
to turn mirrors into windows.    Sydney J. Harris

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