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
For one sample t-tests, cohens_d ignores mu argument.
> ToothGrowth %>% cohens_d(len ~ 1, mu = 0) # default mu value
# A tibble: 1 x 6
.y. group1 group2 effsize n magnitude
* <chr> <chr> <chr> <dbl> <int> <ord>
1 len 1 null model 2.46 60 large
> ToothGrowth %>% cohens_d(len ~ 1, mu = 5)
# A tibble: 1 x 6
.y. group1 group2 effsize n magnitude
* <chr> <chr> <chr> <dbl> <int> <ord>
1 len 1 null model 2.46 60 large
> ToothGrowth %>% cohens_d(len ~ 1, mu = 10000000)
# A tibble: 1 x 6
.y. group1 group2 effsize n magnitude
* <chr> <chr> <chr> <dbl> <int> <ord>
1 len 1 null model 2.46 60 large
The text was updated successfully, but these errors were encountered:
For one sample t-tests, cohens_d ignores mu argument.
The text was updated successfully, but these errors were encountered: