pairwise.fisher.test {reporttools}R Documentation

Pairwise Fisher's exact test

Description

Similar to pairwise.wilcox.test and pairwise.t.test, calculate pairwise comparisons of a nominal variable between group levels with corrections for multiple testing.

Usage

pairwise.fisher.test(x, g, p.adjust.method, ...)

Arguments

x

Response vector, nominal (or ordinal).

g

Grouping vector or factor.

p.adjust.method

Method for adjusting p-values (see p.adjust).

...

Additional arguments to pass to fisher.test.

Value

Object of class "pairwise.htest"

Author(s)

Kaspar Rufibach (maintainer), kaspar.rufibach@gmail.com,
http://www.kasparrufibach.ch

See Also

fisher.test, p.adjust, pairwise.wilcox.test, pairwise.t.test

Examples

set.seed(1977)
x <- factor(abs(round(rnorm(99, 0, 1))))
g <- factor(round(runif(99, 0, 2)))
pairwise.fisher.test(x, g, p.adjust.method = "holm")

[Package reporttools version 1.1.3 Index]