anova.mean: ANOVA table from the group sample sizes, means, and standard...

View source: R/anova.mean.R

anovaMeanR Documentation

ANOVA table from the group sample sizes, means, and standard deviations.

Description

Oneway ANOVA table from the summary information consisting of group sample sizes, means, and standard deviations. The full dataset is not needed.

Usage

anovaMean(object, n, ybar, s, ..., ylabel = "ylabel")

Arguments

object

level names

n

sample size for each level

ybar

sample mean for each level

s

sample standard deviation for each level

...

other arguments (not used)

ylabel

name of response variable

Value

Analysis of variance table, identical to the ANOVA table that would have been produced by anova.lm if the original data, rather than the summary data, had been available.

Author(s)

Richard M. Heiberger <rmh@temple.edu>

See Also

anova.lm, plot.mmc.multicomp

Examples

## pulmonary data used in Hsu and Peruggia paper defining the mean-mean plot
## See ?plot.mmc.multicomp for details on the dataset.

data(pulmonary)

anovaMean(pulmonary$smoker,
          pulmonary$n,
          pulmonary$FVC,
          pulmonary$s,
          ylabel="pulmonary")

HH documentation built on Aug. 9, 2022, 5:08 p.m.

Related to anova.mean in HH...