power_binom_test function

Power Calculations for Exact Test of a simple null hypothesis in a Bernoulli experiment

Power Calculations for Exact Test of a simple null hypothesis in a Bernoulli experiment

Compute power of test, or determine parameters to obtain target power.

power_binom_test( n = NULL, p0 = NULL, pa = NULL, sig.level = 0.05, power = NULL, alternative = c("two.sided", "less", "greater") )

Arguments

  • n: Number of observations
  • p0: Probability under the null
  • pa: Probability under the alternative
  • sig.level: Significance level (Type I error probability)
  • power: Power of test (1 minus Type II error probability)
  • alternative: One- or two-sided test

Returns

Object of class power.htest, a list of the arguments (including the computed one) augmented with method and note elements.

Details

The procedure uses uniroot to find the root of a discontinuous function so some errors may pop up due to the given setup that causes the root-finding procedure to fail. Also, since exact binomial tests are used we have discontinuities in the function that we use to find the root of but despite this the function is usually quite stable.

Examples

power_binom_test(n = 50, p0 = .50, pa = .75) ## => power = 0.971 power_binom_test(p0 = .50, pa = .75, power = .90) ## => n = 41 power_binom_test(n = 50, p0 = .25, power = .90, alternative="less") ## => pa = 0.0954

See Also

binom.test

Author(s)

Claus Ekstrom claus@rprimer.dk

  • Maintainer: Claus Thorn Ekstrøm
  • License: GPL-2
  • Last published: 2023-08-20