get_details.cppglobal {basksim}R Documentation

Get Details of a Basket Trial Simulation with the Global Calibrated Power Prior Design

Description

Get Details of a Basket Trial Simulation with the Global Calibrated Power Prior Design

Usage

## S3 method for class 'cppglobal'
get_details(
  design,
  n,
  p1 = NULL,
  lambda,
  level = 0.95,
  tune_a,
  tune_b,
  epsilon,
  iter = 1000,
  data = NULL,
  ...
)

Arguments

design

An object of class cppgen.

n

The sample size per basket.

p1

Probabilities used for the simulation. If NULL then all probabilities are set to p0.

lambda

The posterior probability threshold.

level

Level of the credibility intervals.

tune_a

First tuning parameter that determines the amount of borrowing based on pairwise similarity between baskets.

tune_b

Second tuning parameter that determines the amount of borrowing based on pairwise similarity between baskets.

epsilon

Tuning parameter that determines the amount of borrowing based on overall heterogeneity.

iter

The number of iterations in the simulation. Is ignored if data is specified.

data

A data matrix with k column with the number of responses for each basket. Has to be generated with get_data. If data is used, then iter is ignored.

...

Further arguments.

Value

A list containing the rejection probabilites, posterior means, mean squared errors and mean limits of HDI intervals for all baskets as well as the family-wise error rate.

Examples

design <- setup_cppglobal(k = 3, p0 = 0.2)
get_details(design = design, n = 20, p1 = c(0.2, 0.5, 0.5), lambda = 0.95,
  tune_a = 1, tune_b = 1, epsilon = 2, iter = 100)

[Package basksim version 1.0.0 Index]