Description Usage Arguments Value Examples
View source: R/compare_dependent_groups.R
Function that provides a list of estimators. User is free to define his own list of estimators.
Used in compare_dependent_groups
1 2 3 4 5 6 7 | dependent_groups_estimators(
pre,
post,
SESOI_lower = 0,
SESOI_upper = 0,
na.rm = FALSE
)
|
pre |
Numeric vector |
post |
Numeric vector |
SESOI_lower |
Lower smallest effect size of interest threshold |
SESOI_upper |
Upper smallest effect size of interest threshold |
na.rm |
Should NAs be removed? Default is |
Named numeric vector with estimators
1 2 3 4 | data("bench_press_data")
pre <- bench_press_data$`Pre-test`
post <- bench_press_data$`Post-test`
dependent_groups_estimators(pre, post, SESOI_lower = -5, SESOI_upper = 5)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.