prop_test.matrix {catfun}R Documentation

Tests for equality of proportions

Description

Conduct 1-sample tests of proportions and tests for equality of k proportions.

Usage

## S3 method for class 'matrix'
prop_test(x, method = c("wald", "wilson",
  "agresti-couli", "jeffreys", "modified wilson", "wilsoncc",
  "modified jeffreys", "clopper-pearson", "arcsine", "logit", "witting",
  "pratt"), alternative = c("two.sided", "less", "greater"),
  conf.level = 0.95, correct = FALSE, exact = FALSE, ...)

Arguments

x

a 2 x k matrix.

method

a character string indicating method for calculating confidence interval, default is "wald". Options include, wald, wilson, agresti-couli, jeffreys, modified wilson, wilsoncc modified jeffreys, clopper-pearson, arcsine, logit, witting, and pratt.

alternative

character string specifying the alternative hypothesis. Possible options are "two.sided" (default), "greater", or "less".

conf.level

confidence level for confidence interval, default is 0.95.

correct

a logical indicating whether Yate's continuity correction should be applied.

exact

a logical indicating whether to output exact p-value, ignored if k-sample test.

...

further arguments passed to or from other methods.

Value

a list with class "prop_test" containing the following components:

x

number of successes

n

number of trials

p

null proportion

statistic

the value of Pearson's chi-squared test statistic

p_value

p-value corresponding to chi-squared test statistic

df

degrees of freedom

method

the method used to calculate the confidence interval

method_ci

confidence interval calculated using specified method

exact_ci

exact confidence interval

exact_p

p-value from exact test

Examples

matrix(c(23, 48, 76, 88), nrow = 2, ncol = 2) %>% prop_test()

[Package catfun version 0.1.4 Index]