Learn R Programming

reporttools (version 1.1.3)

pairwise.fisher.test: 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"

See Also

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

Examples

Run this code
# NOT RUN {
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")
# }

Run the code above in your browser using DataLab