powerFisherExact | R Documentation |
Obtains the power given sample size for Fisher's exact test for two proportions.
powerFisherExact(
n = NA_integer_,
pi1 = NA_real_,
pi2 = NA_real_,
allocationRatioPlanned = 1,
alpha = 0.05
)
n |
The total sample size. |
pi1 |
The assumed probability for the active treatment group. |
pi2 |
The assumed probability for the control group. |
allocationRatioPlanned |
Allocation ratio for the active treatment versus control. Defaults to 1 for equal randomization. |
alpha |
The two-sided significance level. Defaults to 0.05. |
A data frame with the following variables:
alpha
: The two-sided significance level.
power
: The power.
n
: The sample size.
pi1
: The assumed probability for the active treatment group.
pi2
: The assumed probability for the control group.
allocationRatioPlanned
: Allocation ratio for the active
treatment versus control.
Kaifeng Lu, kaifenglu@gmail.com
(design1 <- powerFisherExact(
n = 136, pi1 = 0.25, pi2 = 0.05, alpha = 0.05))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.