etaSqP | R Documentation |
Calculates the partial eta squared (η²p) effect size statistic from an F-value and its degrees of freedom. Partial eta squared represents the proportion of variance in the dependent variable that is associated with the independent variable, when controlling for other variables.
etaSqP(Fval, dfEffect, dfError)
Fval |
Numeric. The F statistic value |
dfEffect |
Numeric. Degrees of freedom for the effect |
dfError |
Numeric. Degrees of freedom for the error |
The formula used is: η²p = (F * df_effect) / (F * df_effect + df_error)
Partial eta squared values can be interpreted roughly as: * Small effect: ~0.01 * Medium effect: ~0.06 * Large effect: ~0.14
Returns a numeric value between 0 and 1 representing the partial eta squared effect size
# Calculate partial eta squared for F(2,97) = 5.4
etaSqP(5.4, 2, 97)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.