Function that provides a list of estimators. User is free to define his own list of estimators. Used in compare_dependent_groups

dependent_groups_estimators(
  pre,
  post,
  SESOI_lower = 0,
  SESOI_upper = 0,
  na.rm = FALSE
)

Arguments

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 FALSE

Value

Named numeric vector with estimators

Examples

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)
#> SESOI lower SESOI upper SESOI range #> -5.0000000 5.0000000 10.0000000 #> Mean change SD change %CV change #> 5.5341489 8.0501496 145.4631905 #> % change Ratio Cohen's d #> 5.7533085 1.0575331 0.6359037 #> CLES OVL Mean change to SESOI #> 0.6527598 0.7505214 0.5534149 #> SD change to SESOI pLower pEquivalent #> 0.8050150 0.1031451 0.3707501 #> pHigher #> 0.5261049