Obtains critical values for the group and continuous sequential MaxSPRT test with Binomial data, using a Wald type upper boundary, which is flat with respect to the likelihood ratio function, and with a pre-specified upper limit on the sample size.
It is often not possible to select a critical value that corresponds to the exact alpha specified. Instead, this function will select the least conservative critical value having an alpha below the one specified, so the sequential analysis is conservative.
This function is a re-implementation of the CV.Binomial
function in the Sequential
package, using Monte-Carlo.
computeCvBinomial(
groupSizes,
z,
minimumEvents = 1,
alpha = 0.05,
sampleSize = 1e+06,
nullMean = 0,
nullSd = 0
)
Vector containing the expected number of events under H0 for each test.
For a matched case-control analysis, z is the number of controls matched to each case under the null hypothesis. For a self-controlled analysis, z is the control time divided by the time at risk.
The minimum number of events needed before the null hypothesis can be rejected.
The significance level, or the type 1 error probability, which is the probability of rejecting the null hypothesis when it is true.
Sample size for the Monte-Carlo simulations.
The mean of the empirical null distribution.
The standard deviation of the empirical null distribution.
The computed critical value. The 'alpha' attribute of the result indicates the selected alpha.
groupSizes <- rep(1, 10)
computeCvBinomial(groupSizes, z = 4)
#> Selected alpha: 0.049 (least conservative value below 0.05)
#> [1] 3.064954
#> attr(,"alpha")
#> [1] 0.049321