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.
Maintainer: Tingting Zhan tingtingzhan@gmail.com (ORCID)
doi:10.1016/0197-2456(89)90015-9
https://www.ncss.com/software/pass/
(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.
(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.
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 )
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 )
R |
positive integer scalar, number of trials |
prob |
double scalar, true response rate |
object |
|
... |
parameters of function |
r1 , n1 , r , n
|
Function r_simon()
generates copies of the number of responses
in one Simon's two-stage design.
The conclusion of the trials are,
indicates early termination
indicates failure to reject
indicates success to reject
Here is not needed to generate the random number of responses
.
Instead,
is needed to determine if the trial is a failure or a success.
Therefore,
is not a parameter of function
r_simon()
.
Function r_simon()
returns an integer vector of length ,
which are the
copies of the number of responses in the Simon's two-stage design.
(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%
(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 one Simon's two-stage design.
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 )
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 )
prob |
named double vector,
true response rate(s) |
R |
integer scalar, number of simulations. Default |
object |
|
... |
parameters of function |
r1 , n1 , r , n
|
Function simon_oc()
returns simon_oc object.
maxResp
integer vector of same length as ,
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 ,
the frequencies of each regime having maximum response and success in Simon's two-stage trial.
Probabilities of frail
(i.e., early termination) and success (to reject )
of one Simon's two-stage design, at given true response rate(s).
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, ... )
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, ... )
prob |
|
object |
|
... |
parameters of function |
r1 , n1 , r , n
|
Given one Simon's two-stage design
and a true response rate
,
we have the number of Stage-1 positive responses
and the number of Stage-2 positive responses
.
Obviously
and
are independent.
The probability of early termination is
The probability of failure to reject is
The probability of successfully rejecting is
The expected sample size is
Parameters nomenclature of r1
, n1
, r
and n
follows that of
PASS and function ph2simon.
Function simon_pr()
returns simon_pr object.
frail
numeric scalar or vector,
probabilities of frail (i.e., early termination)
at given true response rate(s) .
reject
numeric scalar or vector,
probabilities of success (to reject )
at given true response rate(s)
.
eN
numeric scalar or vector,
expected sample size(s)
at given true response rate(s)
.
prob
(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
(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