Learn R Programming

binMto (version 0.0-7)

apprPower: Approximate power (any rejection!) for many-to-one comparison of binomial proportions

Description

Approximative power to reject the hypothesis that all of the k differences of proportions of treatment groups vs. control group are zero, i.e.: probability to reject any H0[i]: p[i]-p[0] = 0, For a given setting of n[i], and p[i] assumed under the alternative.

Usage

apprPower(n, pH1, alpha = 0.05, alternative = "greater", method = "Add4")

Arguments

n

vector of integers specifying the number of observations in each group, where the first value is taken as sample size of control group

pH1

numeric vector with values between 0 and 1, specifying the proportions of success under the alternative hypothesis, should have the same length as n

alpha

pre-specified type-I-error

alternative

character string defining the alternative hypothesis, take care, that it fits to the parameters settings specified in pH1

method

character sring defining the confidence interval method to be used, one of "Add4", "Add2", "Wald"

Value

a single numeric value: the approximate any-pair power

Details

This function uses approximative calculation of any-pair-power of a maximum test as described in Bretz and Hothorn (2002) for a Wald test of multiple contrasts of binary data. Differing from Bretz and Hothorn (2002), unpooled variance estimators are used in the present function. In case of "Add4" and "Add2"-method, the Wald expectation and variance are replaced by that of add-4 and add-2. Since the approximate calculation assumes normality, this function can give misleading results, if sample size is small and/or proportions of success are extreme. The present function only calcualtes power for the test adjusting via the multivariate-normal-distribution. For Bonferroni-adjusted or unadjusted tests, one can make use of well-known formulas for power and sample size for binary data.

The use of the function simPower in this package will result in power estimation closer to the true performance of the methods but is less convenient.

References

Bretz,F and Hothorn, LA (2002): Detecting dose-response using contrasts: asymptotic power and sample size determination for binomial data. Statistics in Medicine 21, 3325-3335.

See Also

simPower

Examples

Run this code
# NOT RUN {
# Recalculate the power of the Dunnett-contrast
# for the first setting in Bretz and Hothorn (2002, Table III),
# using a balanced design and the allocation rule n0/ni=sqrt(k)
# of Dunnett(1955), desiring a power of 80 percent.
# Note that differing from Bretz and Hothorn (2002)
# in the present function unpooled variance estimators
# are used, what might lead to different results.

apprPower(n=c(196, 196, 196, 196, 196),
 pH1=c(0.45, 0.45, 0.5, 0.5, 0.6),
 alpha=0.05, alternative="greater", method="Wald")

apprPower(n=c(294, 147, 147, 147, 147 ),
 pH1=c(0.45, 0.45, 0.5, 0.5, 0.6),
 alpha=0.05, alternative="greater", method="Wald")

# }

Run the code above in your browser using DataLab