pairwise.means.test: Perform non-parametric (randomization) test of mean...

Description Usage Arguments Value Author(s) Examples

View source: R/pairwise.means.test.R

Description

Function performs all possible pairwise tests of mean differences for a class ANOVA object, by calculating confidence intervals

Usage

1
pairwise.means.test(A, alpha = 0.05)

Arguments

A

A class ANOVA object from a previous analysis

alpha

The significance level for confidence intervals.

Value

The function returns a table of confidence intervals for all pairwise comparisons of means.

Author(s)

Michael Collyer

Examples

1
2
3
4
5
6
7
8
9
data(cad)
cad$center <- as.factor(cad$center) # change numeric variable to factor

ANOVA1 <- ANOVA(age ~ center, data = cad, iter = 999)
summary(ANOVA1)
plot(ANOVA1, method = "hist")
pw <- pairwise.means.test(ANOVA1)
summary(pw)
plot(pw)

mlcollyer/chatham.bio532 documentation built on May 23, 2019, 2:08 a.m.