Sample size taking into account SbF [Power / Sample Size]

posted by d_labes  – Berlin, Germany, 2016-07-19 11:18 (3270 d 18:37 ago) – Posting: # 16492
Views: 6,766

Dear Junhao,

❝ ❝ Don't invest too much in understanding or verifying this table.

❝ ❝ It shows sample sizes for the so-called "individual bioequivalence" in which the SbF (subject by formulation) interaction, your σD, plays a prominent role ...


Here I have to correct myself. Table 1 in the Appendix of the mentioned FDA guidance actually shows sample sizes for ABE.

Here some code to reproduce this table:
library(PowerTOST)
# function to calculate the 'pooled' CV if the individual component of the variability are given
# Wang/Chow 2002
# "ON Statistical Power for Average Bioequivalence Testing Under Replicated Crossover Designs"
# J. BIOPHARM. STAT. Vol. 12, No. 3, pp. 295–309, 2002

CVm <- function(sD, swT, swR=swT, design){
  if (design=="2x2"){
    s2diff <- (sD^2 + swT^2 + swR^2)/2
  }
  else if (design=="2x2x4"){
    s2diff <- sD^2 + (swT^2 + swR^2)/2
  } else stop("Design not implemented.")
  mse2CV(s2diff)
}

# gimme the numbers
delta <- 0.05 # this is measured in the log domain, corresponds to theta0 = 0.9512294
# assuming swT=swR as in Table 1
swT   <- 0.5
sD    <- 0.15
targetpower <- 0.8

design <- "2x2"
CV <- CVm(sD, swT, design=design)
sampleN.TOST(CV=CV, theta0=exp(-delta), targetpower=targetpower, design=design)

design <- "2x2x4"
CV <- CVm(sD, swT, design=design)
sampleN.TOST(CV=CV, theta0=exp(-delta), targetpower=targetpower, design=design)


Note that we need a 'pooled' variability for ABE only. Which we can get from a non-replicated design also.
Only in case of a full replicate design we may have informations about the components. But here it depends on the statistical model if a σD plays a role.
In case of a partial replicate design you can't get reasonable estimates of the variability components in all cases. Here a model with a SbF is overspecified and may lead to estimation problems like non-convergence of the REML procedure.

See f.i.
Endrenyi et al.
"Properties of the estimated variance component for subject-by-formulation interaction in studies of individual bioequivalence"
Statist. Med. 2000; 19:2867–2878
to find out that σD=0 is a reasonable assumption.

❝ But when we assume different between-subject variation for T and R, σD is never gonna be 0, and I right?


Correct. If your statistical model of the between-subject variability incorporates a SbF interaction. Otherwise this component is absorbed in the estimates of the within-subject variabilities σwT and σwR, respectively.

❝ ... but in the RSABE context, we are assuming same between-subject variation for T and R so that σD could be 0?


Also correct. But beside the CI component of T-R of RSABE, where we again have to use a pooled variability, there is no influence of σD.

Regards,

Detlew

Complete thread:

UA Flag
Activity
 Admin contact
23,425 posts in 4,928 threads, 1,683 registered users;
51 visitors (0 registered, 51 guests [including 9 identified bots]).
Forum time: 05:56 CEST (Europe/Vienna)

You can do one of two things; just shut up,
which is something I don’t find easy,
or learn an awful lot very fast,
which is what I tried to do.    Jane Fonda

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