adjusted_alpha,ChiSquare-method {blindrecalc} | R Documentation |
Adjusted level of significance
Description
This method returns an adjusted significance level that can be used such that the actual type I error rate is preserved.
Usage
## S4 method for signature 'ChiSquare'
adjusted_alpha(
design,
n1,
nuisance,
nuis_ass,
precision = 0.001,
gamma = 0,
recalculation,
allocation = c("exact", "approximate"),
...
)
Arguments
design |
Object of class |
n1 |
Either the sample size of the first stage (if
|
nuisance |
Value of the nuisance parameter in (0,1). For the Chi-Squared test this is the overall response rate. |
nuis_ass |
If |
precision |
Value by which the nominal type 1 error rate is reduced in each iteration until the nominal type 1 error rate is preserved. |
gamma |
If |
recalculation |
Should the sample size be recalculated after n1 n1 patients are recruited? |
allocation |
Whether the allocation ratio should be preserved
exactly ( |
... |
Further optional arguments. |
Details
The method is only vectorized in either nuisance
or n1
.
Value
Value of the adjusted significance level for every nuisance parameter and every value of n1.
Examples
d <- setupChiSquare(alpha = 0.025, beta = 0.2, r = 1, delta = 0.2)
adjusted_alpha(d, n1 = 10, nuisance = 0.3, gamma = 0.001,
nuis_ass = 0.3, precision = 0.001, recalculation = TRUE)