aov1r: One-way random effect ANOVA

Description Usage Arguments Value Examples

View source: R/aov1r.R

Description

Fits a one-way random effect ANOVA model.

Usage

1
2
3
4
5
6
7
aov1r(formula, data = NULL)

## S3 method for class 'aov1r'
summary(object, ...)

## S3 method for class 'summary.aov1r'
print(x, ...)

Arguments

formula

a formula of the form y~group

data

optional dataframe

object

an aov1r object (output of an aov1r call)

...

ignored

x

output of summary

Value

aov1r returns an object of class aov1r;

Examples

1
2
3
dat <- simAOV1R(I=2, J=3, mu=10, sigmab=1, sigmaw=1)
fit <- aov1r(y ~ group, data=dat)
summary(fit)

AOV1R documentation built on Nov. 10, 2020, 3:52 p.m.