Learn R Programming

CGPfunctions (version 0.5.2)

neweta: Calculates eta squared for an AOV model using the Type II method

Description

Takes an aov object and returns a standard AOV table with eta squared computed

Usage

neweta(MyAOV)

Arguments

MyAOV

a valid aov object such as those produced by aov(dv~iv1*iv2)

Value

Returns a tibble containing the AOV output similar to summary(aov(MyAOV)) but with eta squared computed and appended as an additional column

Details

There are three ways to compute eta squared this function only uses Type II

**This function is deprecated as of version 0.5** please consider using eta_sq instead

References

neweta function is a shortened and simplified verion of Dani Navarro's etaSquared

See Also

Plot2WayANOVA

Examples

Run this code
# NOT RUN {
neweta(aov(mpg~am*cyl, mtcars))
# }

Run the code above in your browser using DataLab