gsubpop.sim {asd}R Documentation

ASD simulation for subpopulation selection

Description

Function subpop.sim runs simulations for a trial design that tests an experimental treatment against a single control treatment group in a seamless adaptive trial with co-primary analyses in a pre-defined subgroup and the full population. An interim analysis is undertaken using an early outcome measure and a decision is made on whether to continue with both full and subpopulations, the subpopulation only or the full population, using a pre-defined selection rule. A number of different methods to control the family wise error rate are implemented; (i) the treatment is compared to the control in the subpopulation and full populations using Simes test and the inverse normal combination function used to combine p-values before and after design adaptation, (ii) as (i) but the bivariate normal method of Spiessens and Debois (2010) is used to control the type I error rate, (iii) as (i) but a Bonferroni test is used and (iv) a conditional error function approach using the Spiessens and Debois test. Data are simulated for the early and final outcome measures, subpopulation prevalence and correlation between the final and the early outcomes. This function should not generally be called by the user. The more user-friendly function subpop.sim covers most common applications.

Usage

gsubpop.sim(z.early=NULL,z1=z1,z2=z2,sprev=sprev,
        corr=NULL,selim=NULL,nsim=nsim,seed=12345678,
        level=level,select="thresh",wt=NULL,method="CT-SD")

Arguments

z.early

Vector of test statistics for early outcome subpopulation and full population i.e. c(sub, full)

z1

Vector of test statistics for final outcome subpopulation and full population i.e. c(sub, full)

z2

Vector of test statistics for final outcome subpopulation and full population, and subpopulation and full population when both are selected i.e. c(sub only, full only, sub, full)

sprev

Subpopulation prevalence

corr

Correlation between early and final outcomes

selim

Upper and lower limits for the difference between test statistics for the threshold rule

nsim

Number of simulations (maximum=10,000,000)

seed

Seed number

level

Test level (default=0.025)

select

Selection rule type; available options are “thresh” and “futility

wt

User set weight for combination test

method

Test type; available options are “CT-Simes”, “CT-SD”, “CT-Bonferroni” or “CEF

Details

A structured description of the the methodology and the simulation model is given by Friede et al. (2012).

Value

results

Table of counts; (i) the number of times the subpopulation, full population or both population are selected (n), (ii) the number of times the subpopulation is rejected when either it alone or both populations are selected (Hs), (iii) the number of times the full population is rejected when either it alone or both populations are selected (Hf), (iv) the number of times both populations are rejected (Hs+Hf) and (v) the number of times the intersection hypothesis is rejected (Hs+f)

Author(s)

Nick Parsons (nick.parsons@warwick.ac.uk)

References

Spiessens B, Debois M. Adjusted significance levels for subgroup analysis in clinical trials. Contemporary Clinical Trials 2010;31:647-656.

Jenkins M, Stone A, Jennison C. An adaptive seamless phase II/III design for oncology trials with subpopulation selection using survival endpoints. Pharmaceutical Statistics 2011;10:347-356.

Friede T, Parsons N, Stallard N. A conditional error function approach for subgroup selection in adaptive clinical trials. Statistics in Medicine 2012;31:409-4320.

See Also

subpop.sim

Examples


gsubpop.sim(z.early=c(-1,-1),z1=c(-1,-1),z2=c(-1,0,-1,0),sprev=c(0.5,0.5),
        corr=0.5,selim=c(-0.5,0.5),nsim=100,seed=12345678,level=0.025,
        select="thresh",wt=0.5,method="CT-SD")


[Package asd version 2.2 Index]