Probability of Success at an Interim Analysis
Yue Li
2024-11-21
Source:vignettes/articles/PoS_interim.Rmd
PoS_interim.Rmd
At different stages of drug development, there are questions about
how likely a study will be successful given previously collected data
within the trial itself or data from other earlier trials. For example
given Ph2a (PoC, proof of concept) and Ph2b (DRF, dose range finding)
studies, how likely a new Ph3 study would be successful is of great
interest. Another example, at an interim analysis (IA) of a PoC study,
one would also be interested to understand the probability of success at
the end of the study given the partial data observed.
pos1S()
and
pos2S()
are constructed to calculate
predictive probabilities for this purpose to inform quantitative
decision making. This vignette shows an example from an IA in a PoC
study, where pos2S()
was used to explore
the probability of success for the final analysis given the interim
data.
The primary endpoint for this study is log transformed facial lesion count, assumed to be normally distributed. Decrease in the lesion count upon treatment is considered improvement in the patients. Below is the summary statistics of this primary endpoint by group at the interim.
ia <- data.frame(n=c(12, 14),
median_count=c(20.5, 21),
mean_count=c(23.3, 27),
mean_log=c(2.96, 3.03),
sd_log=c(0.67, 0.774),
row.names=c("active", "placebo")) %>%
transform(se_log=round(sd_log/sqrt(n), 3))
sd_log_pooled <- with(ia, sqrt(sum(sd_log^2*(n-1))/(sum(n)-2)))
kable(ia)
n | median_count | mean_count | mean_log | sd_log | se_log | |
---|---|---|---|---|---|---|
active | 12 | 20.5 | 23.3 | 2.96 | 0.670 | 0.193 |
placebo | 14 | 21.0 | 27.0 | 3.03 | 0.774 | 0.207 |
The predefined dual PoC criteria is as follows,
n <- 21 # planned total n per arm
rules <- decision2S(c(0.9, 0.5), c(0,-0.357), lower.tail = TRUE)
print(rules)
## 2 sample decision function
## Conditions for acceptance:
## P(theta1 - theta2 <= 0) > 0.9
## P(theta1 - theta2 <= -0.357) > 0.5
## Link: identity
The interim data were evaluated against the PoC criteria with weakly informative priors for both active and placebo groups. The criteria were not met, although it seemed to show some benefit of the active treatment over placebo numerically. The variability of this endpoint is higher than what was assumed for study sample size calculation.
priorP <- priorT <- mixnorm(c(1, log(20), 1), sigma = 0.47, param = 'mn')
## posterior at IA data
postT_interim <- postmix(priorT, m=ia["active","mean_log"], se=ia["active","se_log"])
postP_interim <- postmix(priorP, m=ia["placebo","mean_log"], se=ia["placebo","se_log"])
pmixdiff(postT_interim, postP_interim, 0)
## [1] 0.5900663
pmixdiff(postT_interim, postP_interim,-0.357)
## [1] 0.12637
The probability of success at the final analysis, i.e. the
probability of meeting PoC criteria at trial completion given observed
interim data, was computed using function
pos2S()
. One could assume that the new
data after the interim would be from the same distribution as the
interim data. If the
and
in pos2S()
were not specified, i.e. the
previously assumed
would be used.
pos_final <- pos2S(
postT_interim,
postP_interim,
n - ia["active","n"],
n - ia["placebo","n"],
rules,
sigma1 = sd_log_pooled,
sigma2 = sd_log_pooled
)
The function constructed by pos2S()
can
produce the predictive probability given any defined distribution for
the two groups. For example, if the interim posterior distributions are
used, the calculated probability is small, suggesting a low chance of
success at the final analysis given observed IA data.
pos_final(postT_interim, postP_interim)
## [1] 0.02413245
One can also use oc2S()
to compute
conditional power for any given treatment effect.
ia_oc <- oc2S(
postT_interim,
postP_interim,
n - ia["active","n"],
n - ia["placebo","n"],
rules,
sigma1 = sd_log_pooled,
sigma2 = sd_log_pooled
)
delta <- seq(0, 0.9, 0.01) #pct diff from pbo
pbomean <- ia["placebo","mean_log"]
y1 <- log(exp(pbomean) * (1 - delta)) #active
y2 <- log(exp(pbomean) * (1 - 0 * delta)) #placebo
out <-
data.frame(
diff_pct = delta,
diff = round(y1 - y2, 2),
y_act = y1,
y_pbo = y2,
cp = ia_oc(y1, y2)
)
ggplot(data = out, aes(x = diff_pct, y = cp)) + geom_line() +
scale_x_continuous(labels = scales::percent) +
labs(y = 'Conditional power',
x = 'True percentage difference from placebo in lesion count',
title = 'Conditional power at interim for success at final analysis')
R Session Info
## R version 4.4.2 (2024-10-31)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 22.04.5 LTS
##
## Matrix products: default
## BLAS: /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3
## LAPACK: /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblasp-r0.3.20.so; LAPACK version 3.10.0
##
## locale:
## [1] LC_CTYPE=C.UTF-8 LC_NUMERIC=C LC_TIME=C.UTF-8
## [4] LC_COLLATE=C.UTF-8 LC_MONETARY=C.UTF-8 LC_MESSAGES=C.UTF-8
## [7] LC_PAPER=C.UTF-8 LC_NAME=C LC_ADDRESS=C
## [10] LC_TELEPHONE=C LC_MEASUREMENT=C.UTF-8 LC_IDENTIFICATION=C
##
## time zone: UTC
## tzcode source: system (glibc)
##
## attached base packages:
## [1] stats graphics grDevices utils datasets methods base
##
## other attached packages:
## [1] dplyr_1.1.4 scales_1.3.0 ggplot2_3.5.1 knitr_1.49 RBesT_1.7-4
##
## loaded via a namespace (and not attached):
## [1] sass_0.4.9 utf8_1.2.4 generics_0.1.3
## [4] digest_0.6.37 magrittr_2.0.3 evaluate_1.0.1
## [7] grid_4.4.2 mvtnorm_1.3-2 fastmap_1.2.0
## [10] jsonlite_1.8.9 pkgbuild_1.4.5 backports_1.5.0
## [13] Formula_1.2-5 gridExtra_2.3 fansi_1.0.6
## [16] QuickJSR_1.4.0 codetools_0.2-20 textshaping_0.4.0
## [19] jquerylib_0.1.4 abind_1.4-8 cli_3.6.3
## [22] rlang_1.1.4 munsell_0.5.1 withr_3.0.2
## [25] cachem_1.1.0 yaml_2.3.10 StanHeaders_2.32.10
## [28] parallel_4.4.2 tools_4.4.2 rstan_2.32.6
## [31] inline_0.3.20 rstantools_2.4.0 checkmate_2.3.2
## [34] colorspace_2.1-1 assertthat_0.2.1 vctrs_0.6.5
## [37] R6_2.5.1 matrixStats_1.4.1 stats4_4.4.2
## [40] lifecycle_1.0.4 fs_1.6.5 htmlwidgets_1.6.4
## [43] ragg_1.3.3 pkgconfig_2.0.3 desc_1.4.3
## [46] pkgdown_2.1.1 RcppParallel_5.1.9 pillar_1.9.0
## [49] bslib_0.8.0 gtable_0.3.6 loo_2.8.0
## [52] glue_1.8.0 Rcpp_1.0.13-1 systemfonts_1.1.0
## [55] xfun_0.49 tibble_3.2.1 tidyselect_1.2.1
## [58] farver_2.1.2 htmltools_0.5.8.1 labeling_0.4.3
## [61] rmarkdown_2.29 compiler_4.4.2