Chapter 2 Phase II design
Simon’s two-stage design
Simon’s two-stage design is used to minimize the expected sample size when the true response is less than some pre-determined uninterested level π0 (Simon 1989).
The null hypothesis is that H0:π=π0 and the alternative hypothesis is H1:π=π1 where π1 is some desirable level that warrant further development. Suppose the Type I and Type II errors are α and β.
Let n1 patients be given treatment in the first stage. If r1 or less respond or more than r respond, stop stage 1. Otherwise, let n2 patients be given treatment in the second stage. n=n1+n2.
Suppose X1∼Bin(n1,π) and X2∼Bin(n2,π). We declare the new drug a
- Failure if ξF=X1≤r1 OR {X1>r1 AND X1+X2≤r}
- Success if ξS={X1>r1 AND X1+X2>r}
Therefore, P(ξF∣π≤π0)≤α,P(ξS∣π≥π1)≥1−β
Moreover, we have P(ξS∣π)=∑m1>r1,m1+m2>rb(m1;n1,π)b(m2;n2,π)P(ξF∣π)=1−P(ξS∣π)=B(r1;n1,π)+∑x=r1+1min
The expected sample size EN(\pi_0) is given by n_1\left[P(X_1 \leq r_1\mid \pi = \pi_0) + P(X_1 > r\mid \pi = \pi_0) \right] + nP(r_1 + 1 \leq X_1 \leq r \mid \pi = \pi_0) The probability of early rejection in stage 1 is PET(\pi_0) = P(X_1 \leq r_1 \mid \pi = \pi_0)
There are several choices to select (r_1, n_1, r, n):
- Optimal design: the one has the smallest expected sample size when \pi = \pi_0.
- Minimax design: the one has the smallest total sample size for the whole trial when \pi = \pi_0.
- Admissible design: compromise the minimax and the optimal design. (Jung et al. 2004)
library(clinfun)
ph2simon(pu = 0.2, pa = 0.4, ep1 = 0.1, ep2 = 0.2)
##
## Simon 2-stage Phase II design
##
## Unacceptable response rate: 0.2
## Desirable response rate: 0.4
## Error rates: alpha = 0.1 ; beta = 0.2
##
## r1 n1 r n EN(p0) PET(p0)
## Optimal 2 12 7 25 17.74 0.5583
## Minimax 2 14 7 24 19.52 0.4481
library(ph2mult)
binom.design(type = "admissible", p0 = 0.15, p1 = 0.3,
signif.level = 0.05, power.level = 0.9)
## r1 n1 r n EN.p0. PET.p0. error power
## Optimal 5 30 17 82 45.05006 0.7105757 0.04609244 0.9007424
## Admissible 5 31 16 76 45.28032 0.6826597 0.04694758 0.9037415
## Admissible.1 6 36 15 70 45.86191 0.7099439 0.04654875 0.9000510
## Minimax 6 42 14 64 51.80052 0.5545216 0.04845876 0.9002785