Learn R Programming

multicon (version 1.6)

aov1way: One Way Anova

Description

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

Usage

aov1way(x)

Arguments

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

Value

A matrix displaying the ANOVA summary table.

Details

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

Examples

Run this code
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)

Run the code above in your browser using DataLab