aov1way: One Way Anova

Description Usage Arguments Details Value Author(s) Examples

Description

Returns the results of a one-way ANOVA on a matrix in x

Usage

1

Arguments

x

A matrix with each column corresponding to a different level of the IV

Details

Similar to the R function aov only this returns the effect size eta for the between-S effect

Value

A matrix displaying the ANOVA summary table.

Author(s)

Ryne A. Sherman

Examples

1
2
3
4
5
T1=rnorm(10,mean=1,sd=.5)
T2=rnorm(10,mean=1.1,sd=.45)
T3=rnorm(10,mean=1.2,sd=.4)
DVxIV=cbind(T1,T2,T3)
aov1way(DVxIV)

multicon documentation built on May 2, 2019, 3:18 a.m.