You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using cohens_d with Hedge's g correction does nothing for a one sample design (i.e., when y = NULL): iris %>% group_by(Species) %>% summarise( cohen_d = apa::cohens_d(Sepal.Length), hedges_g = apa::cohens_d(Sepal.Length, corr="hedges_g"), check = cohen_d == hedges_g )
Hedge's g correction should be applied with df = N-1 according to Cumming (2011) p. 294
The text was updated successfully, but these errors were encountered:
Using
cohens_d
with Hedge's g correction does nothing for a one sample design (i.e., wheny = NULL
):iris %>% group_by(Species) %>% summarise( cohen_d = apa::cohens_d(Sepal.Length), hedges_g = apa::cohens_d(Sepal.Length, corr="hedges_g"), check = cohen_d == hedges_g )
Hedge's g correction should be applied with df = N-1 according to Cumming (2011) p. 294
The text was updated successfully, but these errors were encountered: