Package 'VisualizeSimon2Stage'

Title: Visualize Simon's Two-Stage Design
Description: To visualize the probabilities of early termination, fail and success of Simon's two-stage design. To evaluate and visualize the operating characteristics of Simon's two-stage design.
Authors: Tingting Zhan [aut, cre]
Maintainer: Tingting Zhan <tingtingzhan@gmail.com>
License: GPL-2
Version: 0.1.7
Built: 2025-03-18 20:19:07 UTC
Source: CRAN

Help Index


Visualize Simon\'s Two-Stage Design

Description

Functions for visualizing the probabilities of early termination, fail and success of Simon's two-stage design. Functions for evaluating and visualizing the operating characteristics of Simon's two-stage design.

Author(s)

Maintainer: Tingting Zhan tingtingzhan@gmail.com (ORCID)

References

doi:10.1016/0197-2456(89)90015-9

https://www.ncss.com/software/pass/

Examples

(x = clinfun::ph2simon(pu = .2, pa = .4, ep1 = .05, ep2 = .1)) 

# an alternative print
print_ph2simon(x)

# language for a report
Sprintf.ph2simon(x, type = 'minimax')
Sprintf.ph2simon(x, type = 'optimal')
Sprintf.ph2simon(x, type = 'n1')
Sprintf.ph2simon(x, type = 'maximax')

autoplot(x, type = 'minimax')
autoplot(x, type = 'optimal')
autoplot(x, type = 'n1')
autoplot(x, type = 'maximax')

# operating characteristics
simon_oc(prob = c(A = .3, B = .2, C = .15), object = x, type = 'minimax')
simon_oc(prob = c(A = .3, B = .2, C = .15), object = x, type = 'optimal')

# example with r1 = 0
(x1 = clinfun::ph2simon(pu = .05, pa = .3, ep1 = .05, ep2 = .2))
# works with all of our functions
autoplot(x1, type = 'optimal') # etc.

Random Generator based on Simon's Two-Stage Design

Description

Random generator based on Simon's two-stage design.

Usage

r_simon(R, prob, object, ...)

## S3 method for class 'ph2simon'
r_simon(R, prob, object, ...)

## S3 method for class 'ph2simon4'
r_simon(
  R,
  prob,
  object,
  ...,
  r1 = object@r1,
  n1 = object@n1,
  r = object@r,
  n = object@n
)

Arguments

R

positive integer scalar, number of trials RR

prob

double scalar, true response rate pp

object

a ph2simon or ph2simon4 object

...

parameters of function ph2simon4(), most importantly type

r1, n1, r, n

(optional) integer scalars, see ph2simon4.

Details

Function r_simon() generates RR copies of the number of responses yy in one Simon's two-stage design. The conclusion of the trials are,

yr1y \leq r_1

indicates early termination

r1<yrr_1 < y \leq r

indicates failure to reject H0H_0

y>ry > r

indicates success to reject H0H_0

Here rr is not needed to generate the random number of responses yy. Instead, rr is needed to determine if the trial is a failure or a success. Therefore, rr is not a parameter of function r_simon().

Value

Function r_simon() returns an integer vector of length RR, which are the RR copies of the number of responses in the Simon's two-stage design.

Examples

(x = clinfun::ph2simon(pu = .2, pa = .4, ep1 = .05, ep2 = .1)) 
set.seed(1532); r = r_simon(R = 1e2L, prob = .2, object = x)
set.seed(1532); r1 = r_simon.ph2simon4(R = 1e2L, prob = .2, r1 = 5L, n1 = 24L, r = 13L, n = 45L)
stopifnot(identical(r, r1))
table(attr(r, 'dx')) # look at beta, <10%
set.seed(24315); r2 = r_simon(R = 1e2L, prob = .4, object = x)
table(attr(r2, 'dx')) # look at alpha, <5%

Operating Characteristics of Simon's Two-Stage Design

Description

Operating characteristics of one Simon's two-stage design.

Usage

simon_oc(prob, R, object, ...)

## S3 method for class 'ph2simon'
simon_oc(prob, R = 10000L, object, ...)

## S3 method for class 'ph2simon4'
simon_oc(
  prob,
  R = 10000L,
  object,
  ...,
  r1 = object@r1,
  n1 = object@n1,
  r = object@r,
  n = object@n
)

Arguments

prob

named double vector, true response rate(s) pp of (multiple) drug(s). The names(prob) should be the name(s) of the drug(s).

R

integer scalar, number of simulations. Default 1e4L.

object

ph2simon or ph2simon4 object

...

parameters of function ph2simon4(), most importantly type

r1, n1, r, n

(optional) integer scalars, see ph2simon4.

Value

Function simon_oc() returns simon_oc object.

Slots

maxResp

integer vector of same length as pp, the frequencies of each regime having maximum response. The summation of maxResp is the number of simulation copies.

simon_maxResp

integer vector of same length as pp, the frequencies of each regime having maximum response and success in Simon's two-stage trial.


Probabilities of one Simon's Two-Stage Design

Description

Probabilities of frail (i.e., early termination) and success (to reject H0H_0) of one Simon's two-stage design, at given true response rate(s).

Usage

simon_pr(prob, object, ...)

## S3 method for class 'ph2simon'
simon_pr(prob, object, ...)

## S3 method for class 'ph2simon4'
simon_pr(
  prob,
  object,
  r1 = object@r1,
  n1 = object@n1,
  r = object@r,
  n = object@n,
  ...
)

Arguments

prob

double scalar or vector, true response rate(s) pp

object

a ph2simon or ph2simon4 object

...

parameters of function ph2simon4(), most importantly type

r1, n1, r, n

(optional) integer scalars, see ph2simon4.

Details

Given one Simon's two-stage design (r1,n1,r,n)(r_1,n_1,r,n) and a true response rate pp, we have the number of Stage-1 positive responses X1Binom(n1,p)X_1 \sim \textrm{Binom}(n_1, p) and the number of Stage-2 positive responses X2Binom(nn1,p)X_2 \sim \textrm{Binom}(n-n_1, p). Obviously X1X_1 and X2X_2 are independent.

The probability of early termination is

pfrail=Pr(X1r1)p_{\textrm{frail}} = \textrm{Pr}(X_1 \leq r_1)

The probability of failure to reject H0H_0 is

s1=r1+1n1Pr(X1=s1)Pr(X2(rs1))\sum_{s_1 = r_1+1}^{n_1} \textrm{Pr}(X_1=s_1)\cdot\textrm{Pr}(X_2 \leq (r-s_1))

The probability of successfully rejecting H0H_0 is

s1=r1+1n1Pr(X1=s1)Pr(X2>(rs1))\sum_{s_1 = r_1+1}^{n_1} \textrm{Pr}(X_1=s_1)\cdot\textrm{Pr}(X_2 > (r-s_1))

The expected sample size is

E(n)=pfrailn1+(1pfrail)n\textrm{E}(n) = p_{\textrm{frail}} \cdot n_1 + (1 - p_{\textrm{frail}}) \cdot n

Parameters nomenclature of r1, n1, r and n follows that of PASS and function ph2simon.

Value

Function simon_pr() returns simon_pr object.

Slots

frail

numeric scalar or vector, probabilities of frail (i.e., early termination) at given true response rate(s) pp.

reject

numeric scalar or vector, probabilities of success (to reject H0H_0) at given true response rate(s) pp.

eN

numeric scalar or vector, expected sample size(s) E(n)\textrm{E}(n) at given true response rate(s) pp.

prob

double scalar or vector, true response rate(s) pp

Examples

(x = clinfun::ph2simon(pu = .2, pa = .4, ep1 = .05, ep2 = .1)) 
simon_pr(prob = c(.2, .3, .4), object = x)
simon_pr.ph2simon4(prob = c(.2, .3, .4), r1 = 5L, n1 = 24L, r = 13L, n = 45L) # internal use