papaja (version 0.1.2)

arrange_anova: Create Variance Table from Various ANOVA objects

Description

These methods take objects from various R functions that calculate ANOVA to create a data.frame containing a variance table. This function is not exported and will most likely be deprecated, soon.

Usage

arrange_anova(x, ...)

# S3 method for anova arrange_anova(x, ...)

# S3 method for summary.aov arrange_anova(x, ...)

# S3 method for summary.Anova.mlm arrange_anova(x, correction = "GG", ...)

Value

data.frame of class apa_variance_table or apa_model_comp.

Arguments

x

Output object. See details.

...

Further arguments to pass to methods.

correction

Character. For summary.Anova.mlm objects, specifies the type of sphericity correction to be used. Either GG for Greenhouse-Geisser or HF for Huyn-Feldt methods or none is also possible. Ignored for other objects.

Details

The returned data.frame can be passed to functions such as print_anova().

Currently, methods for the following objects are available:

  • summary.aov

  • summary.aovlist

  • Anova.mlm

See Also

print_anova(), print_model_comp()