Computes eta-squared, partial eta-squared, and omega-squared from a one-way between-subjects comparison.
Value
A list with components:
- eta_sq
Eta-squared (SS_between / SS_total)
- partial_eta_sq
Partial eta-squared (SS_between / (SS_between + SS_within))
- omega_sq
Omega-squared (bias-corrected effect size)
Details
Eta-squared is the proportion of total variance explained by group membership: $$\eta^2 = \frac{SS_{between}}{SS_{total}}$$
Omega-squared provides a less biased estimate: $$\omega^2 = \frac{SS_{between} - df_{between} \cdot MS_{within}}{SS_{total} + MS_{within}}$$
For one-way designs, partial eta-squared equals eta-squared.
References
Cohen J (1988). "Statistical Power Analysis for the Behavioral Sciences." Lawrence Erlbaum Associates.
See also
cohensD() for pairwise effect sizes,
plotEffectSizeForest() for forest plot visualization.