Normal Outcome

Thevaa Chandereng, Donald Musgrove, Tarek Haddad, Graeme Hickey, Timothy Hanson, Theodore Lystig

Introduction

The purpose of this vignette is to introduce how to simulate and analyze an adaptive Bayesian clinical trial for continuous-valued, i.e., normal, outcomes. The simulation section compromises the design of the trial itself which provides type I error rate and power at each interim look. We use the normal conjugate prior for the estimation of posterior values. Available historical data can be used as an informative prior; we use the bayesDP package as the engine for incorporating the historical data. Instead of using traditional R function, we use pipes to input our parameters.

Estimation of Treatment Difference

Let \(\bar{y}\), \(s\), and \(N\) denote the sample mean, sample standard deviation, and sample size, respectively. Then, the posterior distribution of the mean under vague (flat) priors is

\[ \begin{array}{rcl} \tilde{\sigma}^2\mid\bar{y},s,N & \sim & InverseGamma\left(\frac{N-1}{2},\,\frac{N-1}{2}s^2 \right),\\ \\ \tilde{\mu}\mid\bar{y},N,\tilde{\sigma}^2 & \sim & \mathcal{N}ormal\left(\bar{y},\, \frac{1}{N}\tilde{\sigma}^2 \right). \end{array}\]

When historical data is present, let \(\bar{y}_0\), \(s_0\), and \(N_0\) denote the sample mean, sample standard deviation, and sample size of the historical data, respectively. The posterior distribution of the mean for the historical data is \[ \begin{array}{rcl} \sigma^2_0\mid\bar{y_0},s_0,N_0 & \sim & InverseGamma\left(\frac{N_0-1}{2},\,\frac{N_0-1}{2}s_0^2 \right),\\ \\ \mu_0 \mid \bar{y}_0, N_0, \sigma^2_0 & \sim & \mathcal{N}ormal\left(\bar{y}_0,\, \frac{1}{N_0}\sigma^2_0 \right). \end{array}\] The weight of the historical data included in the study design and analysis is denoted by \(\hat\alpha\). For more details on computation of \(\hat{\alpha}\), please refer to the vignette of binomial counts available at https://CRAN.R-project.org/package=bayesDP. The posterior distribution of the mean outcome with historical data incorporated under vague (flat) priors is \[\tilde{\mu} \sim \mathcal{N}ormal\left( \frac{\sigma^2_0N\bar{y} + \tilde{\sigma}^2N_0\bar{y}_0\hat{\alpha}}{N\sigma^2_0 + \tilde{\sigma}^2N_0\hat{\alpha}},\,\frac{\tilde{\sigma}^2\sigma^2_0}{N\sigma^2_0 + \tilde{\sigma}^2N_0\hat{\alpha}} \right).\]

Even though there is a closed-form solution for the difference in normally distributed random variables, we use Monte Carlo simulations to estimate the treatment difference.

The estimation of the treatment difference is \(\tilde{\mu_T} - \tilde{\mu_C}\), where \(\mu_T\) is the posterior mean outcome in the treatment group and \(\mu_C\) is the posterior mean outcome in the control group.

Wrapper Function for Design and Analysis

Unlike traditional R functions, the bayesCT package depends on pipe inputs with different wrapper functions. All the wrapper functions are illustrated below along with details on the arguments for the simulation and analysis.

Design of Adaptive Trials

In the following section, we will discuss the design of adaptive trials using bayesCT for normal outcomes. We illustrate an example for one-arm trial and two-arm trials using the wrapper functions described above.

One-arm Trial

In the example below, we will illustrate how to compute power, type 1 error, and other clinical trial characteristics for an objective performance criterion (OPC) trial with mean outcome and hypothesis described as follows, \[H_0: \mu_{treatment} \geq 120 \qquad H_A:\mu_{treatment} < 120.\]

The most important wrapper functions are study_details and normal_outcome (especially since there are no default values).

The normal mean outcomes are simulated using a mean value of 120 and standard deviation of 5.5. The total sample size is 400 with a study length of 60 days. A 10% loss to follow up is assumed. Based on this information, the adaptive trials are simulated 2 times to obtain the following output (NOTE: for the purpose of reproducing the vignette quickly, we reduce the number of simulations to 5, you should use a much larger value, e.g., 10000). The aforementioned inputs were chosen for illustration purposes only.

value <- normal_outcome(mu_treatment = 120,
                        sd_treatment = 5.5) %>%
  study_details(total_sample_size     = 400, 
                study_period          = 60,
                interim_look          = NULL,
                prop_loss_to_followup = 0.10)
                
# Simulate 2 trials
output <- value %>%
  simulate(no_of_sim = 2)

# Structure of the simulation output
str(output)
#> List of 8
#>  $ input                       :List of 5
#>   ..$ mu_treatment         : num 120
#>   ..$ sd_treatment         : num 5.5
#>   ..$ N_total              : num 400
#>   ..$ EndofStudy           : num 60
#>   ..$ prop_loss_to_followup: num 0.1
#>  $ power                       :'data.frame':    1 obs. of  2 variables:
#>   ..$ interim_looks: num 400
#>   ..$ power        : num 0
#>  $ type1_error                 : num 0
#>  $ est_final                   : num [1:2] 120 120
#>  $ post_prob_accept_alternative: num [1:2] 0.513 0.48
#>  $ N_enrolled                  : num [1:2] 400 400
#>  $ stop_expect_success         : num [1:2] 0 0
#>  $ stop_futility               : num [1:2] 0 0

To allow for early stopping for success or futility, we add interim looks to the design. We’ll check for success or futility at the enrollment of the 350th and 380th subject. Upon adding this interim look requirement, the trial is simulated 2 times to obtain the output.

# adding interim look
value <- value %>%
  study_details(total_sample_size     = 400, 
                study_period          = 60,
                interim_look          = c(350, 380),
                prop_loss_to_followup = 0.10)

# Simulate 2 trials
output <- value %>%
  simulate(no_of_sim = 2)

# Structure of the simulation output
str(output)
#> List of 8
#>  $ input                       :List of 6
#>   ..$ mu_treatment         : num 120
#>   ..$ sd_treatment         : num 5.5
#>   ..$ N_total              : num 400
#>   ..$ EndofStudy           : num 60
#>   ..$ prop_loss_to_followup: num 0.1
#>   ..$ interim_look         : num [1:2] 350 380
#>  $ power                       :'data.frame':    3 obs. of  2 variables:
#>   ..$ interim_looks: num [1:3] 350 380 400
#>   ..$ power        : num [1:3] 0 0 0
#>  $ type1_error                 : num 0
#>  $ est_final                   : num [1:2] 119 120
#>  $ post_prob_accept_alternative: num [1:2] 0.459 0.495
#>  $ N_enrolled                  : num [1:2] 350 350
#>  $ stop_expect_success         : num [1:2] 0 0
#>  $ stop_futility               : num [1:2] 1 1

Patient enrollment is assumed to follow a Poisson process. The default enrollment rate is 0.3 patients per day. In this simulation we’ll introduce a step-wise Poisson process with rate \(\lambda\) as follows: \[ \lambda = \left\{ \begin{array}{ll} 0.4 & \text(time) \in [0, 40) \\ 0.7 & \text(time) \in [40, \infty) \\ \end{array} \right. \]

This enrollment scheme is illustrated below.

value <- value %>%
  enrollment_rate(lambda = c(0.4, 0.7), 
                  time = 40) 

output <- value %>%
  simulate(no_of_sim = 2)

str(output)
#> List of 8
#>  $ input                       :List of 8
#>   ..$ mu_treatment         : num 120
#>   ..$ sd_treatment         : num 5.5
#>   ..$ N_total              : num 400
#>   ..$ EndofStudy           : num 60
#>   ..$ prop_loss_to_followup: num 0.1
#>   ..$ interim_look         : num [1:2] 350 380
#>   ..$ lambda               : num [1:2] 0.4 0.7
#>   ..$ lambda_time          : num 40
#>  $ power                       :'data.frame':    3 obs. of  2 variables:
#>   ..$ interim_looks: num [1:3] 350 380 400
#>   ..$ power        : num [1:3] 0 0 0
#>  $ type1_error                 : num 0
#>  $ est_final                   : num [1:2] 120 120
#>  $ post_prob_accept_alternative: num [1:2] 0.53 0.505
#>  $ N_enrolled                  : num [1:2] 350 350
#>  $ stop_expect_success         : num [1:2] 0 0
#>  $ stop_futility               : num [1:2] 1 1

The hypothesis is an important wrapper function which controls the probability of futility, probability of accepting the alternative hypothesis, probability of early success, the alternative hypothesis, and the treatment difference margin.

Since, in an OPC trial, the outcomes in the treatment group are simulated using the input provided, delta controls the maximum threshold allowed for trial to succeed/fail. The default value of delta is 0. Here, we’ll use delta = -10 (i.e \(120 - \hat{\mu}_{treatment} < -10\)).

We’ll further set the futility probability to 0.10, the expected success probability for early stopping to 0.85, and the final probability of accepting the alternative to 0.95. The alternative is "less" due to the hypothesis function specified above.

value <- value %>%
   hypothesis(delta                 = -10, 
              futility_prob         = 0.10, 
              prob_accept_ha        = 0.95,
              expected_success_prob = 0.85, 
              alternative           = "less")

output <- value %>%
  simulate(no_of_sim = 2)

str(output)
#> List of 8
#>  $ input                       :List of 13
#>   ..$ mu_treatment         : num 120
#>   ..$ sd_treatment         : num 5.5
#>   ..$ N_total              : num 400
#>   ..$ EndofStudy           : num 60
#>   ..$ prop_loss_to_followup: num 0.1
#>   ..$ interim_look         : num [1:2] 350 380
#>   ..$ lambda               : num [1:2] 0.4 0.7
#>   ..$ lambda_time          : num 40
#>   ..$ h0                   : num -10
#>   ..$ futility_prob        : num 0.1
#>   ..$ prob_ha              : num 0.95
#>   ..$ expected_success_prob: num 0.85
#>   ..$ alternative          : chr "less"
#>  $ power                       :'data.frame':    3 obs. of  2 variables:
#>   ..$ interim_looks: num [1:3] 350 380 400
#>   ..$ power        : num [1:3] 1 1 1
#>  $ type1_error                 : num 0
#>  $ est_final                   : num [1:2] 120 120
#>  $ post_prob_accept_alternative: num [1:2] 0.959 0.971
#>  $ N_enrolled                  : num [1:2] 350 350
#>  $ stop_expect_success         : num [1:2] 1 1
#>  $ stop_futility               : num [1:2] 0 0

Next, we’ll illustrate imputations for imputing outcomes for subjects loss to follow up. We’ll carry out 20 imputations and draw 2000 values from the posterior of each imputation.

value <- value %>%
  impute(no_of_impute = 20, 
         number_mcmc  = 2000)

output <- value %>%
  simulate(no_of_sim = 2)

str(output)
#> List of 8
#>  $ input                       :List of 15
#>   ..$ mu_treatment         : num 120
#>   ..$ sd_treatment         : num 5.5
#>   ..$ N_total              : num 400
#>   ..$ EndofStudy           : num 60
#>   ..$ prop_loss_to_followup: num 0.1
#>   ..$ interim_look         : num [1:2] 350 380
#>   ..$ lambda               : num [1:2] 0.4 0.7
#>   ..$ lambda_time          : num 40
#>   ..$ h0                   : num -10
#>   ..$ futility_prob        : num 0.1
#>   ..$ prob_ha              : num 0.95
#>   ..$ expected_success_prob: num 0.85
#>   ..$ alternative          : chr "less"
#>   ..$ N_impute             : num 20
#>   ..$ number_mcmc          : num 2000
#>  $ power                       :'data.frame':    3 obs. of  2 variables:
#>   ..$ interim_looks: num [1:3] 350 380 400
#>   ..$ power        : num [1:3] 1 1 1
#>  $ type1_error                 : num 0
#>  $ est_final                   : num [1:2] 120 119
#>  $ post_prob_accept_alternative: num [1:2] 0.975 0.966
#>  $ N_enrolled                  : num [1:2] 350 350
#>  $ stop_expect_success         : num [1:2] 1 1
#>  $ stop_futility               : num [1:2] 0 0

The above flow was for illustrative purposes. Instead of inputting parameters step by step, the trial parameters can be filled in all at once as illustrated below. The pipe function connects all inputs together and the trial is simulated 2 times to obtain results.

value <- normal_outcome(mu_treatment = 120,
                        sd_treatment = 5.5) %>%
  study_details(total_sample_size     = 400, 
                study_period          = 60,
                interim_look          = c(350, 380),
                prop_loss_to_followup = 0.10) %>%
  hypothesis(delta                 = -10, 
             futility_prob         = 0.10, 
             prob_accept_ha        = 0.95,
             expected_success_prob = 0.85, 
             alternative           = "less") %>%
  enrollment_rate(lambda = c(0.4, 0.7), 
                  time   = 4) %>%
  randomize(block_size          = c(10, 20), 
            randomization_ratio = c(1, 1)) %>%
  impute(no_of_impute = 5, 
         number_mcmc  = 2000)  %>%
  simulate(no_of_sim = 2)

str(value)
#> List of 8
#>  $ input                       :List of 17
#>   ..$ mu_treatment         : num 120
#>   ..$ sd_treatment         : num 5.5
#>   ..$ N_total              : num 400
#>   ..$ EndofStudy           : num 60
#>   ..$ interim_look         : num [1:2] 350 380
#>   ..$ prop_loss_to_followup: num 0.1
#>   ..$ h0                   : num -10
#>   ..$ futility_prob        : num 0.1
#>   ..$ prob_ha              : num 0.95
#>   ..$ expected_success_prob: num 0.85
#>   ..$ alternative          : chr "less"
#>   ..$ lambda               : num [1:2] 0.4 0.7
#>   ..$ lambda_time          : num 4
#>   ..$ block                : num [1:2] 10 20
#>   ..$ rand_ratio           : num [1:2] 1 1
#>   ..$ N_impute             : num 5
#>   ..$ number_mcmc          : num 2000
#>  $ power                       :'data.frame':    3 obs. of  2 variables:
#>   ..$ interim_looks: num [1:3] 350 380 400
#>   ..$ power        : num [1:3] 0.5 0.5 0.5
#>  $ type1_error                 : num 0
#>  $ est_final                   : num [1:2] 120 120
#>  $ post_prob_accept_alternative: num [1:2] 0.95 0.966
#>  $ N_enrolled                  : num [1:2] 350 350
#>  $ stop_expect_success         : num [1:2] 1 1
#>  $ stop_futility               : num [1:2] 0 0

Two-arm Trial

In this section, we will illustrate how to perform the design of a two-arm trial with the incorporation of historical data. The example will compute the type 1 error, power, and other outputs for a superiority trial. The study hypothesis is \[H_0: \mu_{treatment} - \mu_{control} \leq 0 \qquad H_A: \mu_{treatment} - \mu_{control} > 0.\]

Unlike the OPC trial above, we will not include interim looks. The normal mean outcomes are simulated using a mean value of 13 and standard deviation of 1.4 for the treatment group and a mean value of 15 and standard deviation of 1.9 for the control group. The total sample size is 400 with a study length of 30 days. A 15% loss to follow up is assumed. The following code simulates a trial 2 times using the piping procedure.

value <- normal_outcome(mu_treatment = 13, 
                        mu_control = 16, 
                        sd_treatment = 1.4, 
                        sd_control = 1.9) %>%
  study_details(total_sample_size     = 300, 
                study_period          = 50,
                interim_look          = NULL,
                prop_loss_to_followup = 0.10) %>%
  hypothesis(delta                 = 0, 
             futility_prob         = 0, 
             prob_accept_ha        = 0.95,
             expected_success_prob = 1, 
             alternative           = "less") %>%
  impute(no_of_impute = 25, 
         number_mcmc  = 5000) %>%
  enrollment_rate(lambda = c(0.8), 
                  time = NULL) %>%
  randomize(block_size          = c(4, 6), 
            randomization_ratio = c(1, 1)) %>%
  historical_normal(mu0_treatment     = 13, 
                    sd0_treatment     = 5, 
                    N0_treatment      = 100,
                    mu0_control       = 12, 
                    sd0_control       = 3, 
                    N0_control        = 120, 
                    discount_function = "scaledweibull", 
                    alpha_max         = FALSE, 
                    fix_alpha         = 1,
                    weibull_scale     = 0.135, 
                    weibull_shape     = 3,
                      method            = "fixed") %>%
  simulate(no_of_sim = 2)

str(value)
#> List of 8
#>  $ input                       :List of 29
#>   ..$ mu_control           : num 16
#>   ..$ sd_control           : num 1.9
#>   ..$ mu_treatment         : num 13
#>   ..$ sd_treatment         : num 1.4
#>   ..$ N_total              : num 300
#>   ..$ EndofStudy           : num 50
#>   ..$ prop_loss_to_followup: num 0.1
#>   ..$ h0                   : num 0
#>   ..$ futility_prob        : num 0
#>   ..$ prob_ha              : num 0.95
#>   ..$ expected_success_prob: num 1
#>   ..$ alternative          : chr "less"
#>   ..$ N_impute             : num 25
#>   ..$ number_mcmc          : num 5000
#>   ..$ lambda               : num 0.8
#>   ..$ block                : num [1:2] 4 6
#>   ..$ rand_ratio           : num [1:2] 1 1
#>   ..$ mu0_treatment        : num 13
#>   ..$ sd0_treatment        : num 5
#>   ..$ N0_treatment         : num 100
#>   ..$ mu0_control          : num 12
#>   ..$ sd0_control          : num 3
#>   ..$ N0_control           : num 120
#>   ..$ discount_function    : chr "scaledweibull"
#>   ..$ alpha_max            : logi FALSE
#>   ..$ fix_alpha            : num 1
#>   ..$ weibull_scale        : num 0.135
#>   ..$ weibull_shape        : num 3
#>   ..$ method               : chr "fixed"
#>  $ power                       :'data.frame':    1 obs. of  2 variables:
#>   ..$ interim_looks: num 300
#>   ..$ power        : num 1
#>  $ type1_error                 : num 0
#>  $ est_final                   : num [1:2] -3.07 -3.46
#>  $ post_prob_accept_alternative: num [1:2] 1 1
#>  $ N_enrolled                  : num [1:2] 300 300
#>  $ stop_expect_success         : num [1:2] 0 0
#>  $ stop_futility               : num [1:2] 0 0

Analysis

In this section, we will demonstrate how to run an adaptive Bayesian trial using bayesCT. A sample dataset is provided in the package. The dataset normaldata contains the results of 300 subjects from a two-arm trial with normal outcome. The complete column indicates whether the outcome was observed, i.e., loss to follow-up.

data(normaldata)

head(normaldata)
#>         id treatment   outcome complete
#> 1 Patient1         1 13.702191        1
#> 2 Patient2         1 11.925518        1
#> 3 Patient3         1 10.586943        1
#> 4 Patient4         1 10.450031        1
#> 5 Patient5         1  7.154615        1
#> 6 Patient6         1  8.874396        0

The minimum input needed to run an adaptive Bayesian trial is the data itself. The data_normal input allows the input of the data. The treatment group (0 for control, 1 for treatment) and outcome input are essential for the analysis. However, if the complete input is not provided, the function assumes the outcome data is complete. A default analysis is carried out below.

input <- data_normal(treatment = normaldata$treatment, 
                     outcome   = normaldata$outcome, 
                     complete  = normaldata$complete) 

out <- input %>%
  analysis(type = "normal")

str(out)
#> List of 11
#>  $ prob_of_accepting_alternative: num 0.95
#>  $ margin                       : num 0
#>  $ alternative                  : chr "greater"
#>  $ N_treatment                  : num 139
#>  $ N_control                    : int 127
#>  $ N_complete                   : num 266
#>  $ N_enrolled                   : int 300
#>  $ post_prob_accept_alternative : num 0.138
#>  $ est_final                    : num -3.1
#>  $ stop_futility                : num 1
#>  $ stop_expected_success        : num 0

We’ll now illustrate using piping to carry out the complete analysis. First, we’ll assume the following hypothesis: \[H_0:\mu_{treatment} - \mu_{control} > 0 \quad H_A: \mu_{treatment} - \mu_{control} < 0\]

The delta and alternative used to analyze the trial is 0 and “less” respectively. The probability of accepting the alternative is 0.95, the probability of stopping for futility is 0.05, and the probability of stopping for success is 0.90. We will carry out imputations on subjects loss to follow up. Additionally, we will incorporate historical data on the treatment arm.

out <- data_normal(treatment = normaldata$treatment,
                   outcome   = normaldata$outcome, 
                   complete  = normaldata$complete) %>%
  hypothesis(delta = 0, 
             futility_prob         = 0.05, 
             prob_accept_ha        = 0.95,
             expected_success_prob = 0.90, 
             alternative           = "less") %>%
  impute(no_of_impute = 10, 
         number_mcmc  = 8000) %>%
  analysis(type = "normal")

str(out)
#> List of 11
#>  $ prob_of_accepting_alternative: num 0.95
#>  $ margin                       : num 0
#>  $ alternative                  : chr "less"
#>  $ N_treatment                  : num 139
#>  $ N_control                    : int 127
#>  $ N_complete                   : num 266
#>  $ N_enrolled                   : int 300
#>  $ post_prob_accept_alternative : num 0.857
#>  $ est_final                    : num -3.04
#>  $ stop_futility                : num 1
#>  $ stop_expected_success        : num 0