sim_ss_bern() determines the operating characteristics of a specified single-stage multi-arm clinical trial design assuming the primary outcome is Bernoulli distributed, for given values of the true treatment effects, using simulation.

sim_ss_bern(
  des = des_ss_bern(integer = TRUE),
  pi,
  replicates = 1e+05,
  summary = FALSE
)

Arguments

des

A list of class "multiarm_des_ss_bern", as returned by build_ss_bern or des_ss_bern (i.e., a single-stage multi-arm clinical trial design for a Bernoulli distributed outcome). Note: The sample sizes in all arms must be whole numbers. Defaults to des_ss_bern(integer = TRUE).

pi

A matrix whose rows indicate values of π at which to evaluate the operating characteristics. Defaults internally to the global null, global alternative, and each of the least favourable configurations if unspecified.

replicates

A numeric indicating the number of replicate simulations to use for each value of π. Defaults to 1e5.

summary

A logical variable indicating whether a summary of the function's progress should be printed to the console. Defaults to FALSE.

Value

A list containing the following elements

  • A tibble in the slot $sim giving the estimated operating characteristics.

  • Each of the input variables.

See also

Examples

if (FALSE) { # The estimated operating characteristics for the default parameters sim <- sim_ss_bern() # An A-optimal design, specifying tau explicitly des_A <- des_ss_bern(ratio = "A", integer = T) sim_A <- sim_ss_bern(des_A, rbind(c(0, 0), c(0.5, 0.5), c(0.5, 0), c(0, 0.5))) }