Description Usage Arguments Examples
View source: R/describe_relationship.R
describe_relationship
provides numerous descriptive estimators and bootstrap confidence intervals for
relationship between paired predictor
and outcome
groups. describe_relationship
function is a "wrapper"
for bmbstats
function.
1 2 3 4 5 6 7 8 9 | describe_relationship(
predictor,
outcome,
SESOI_lower = SESOI_lower_dependent_func,
SESOI_upper = SESOI_upper_dependent_func,
estimator_function = relationship_lm_estimators,
control = model_control(),
na.rm = FALSE
)
|
predictor |
Numeric vector |
outcome |
Vector |
SESOI_lower |
Lower smallest effect size of interest threshold |
SESOI_upper |
Upper smallest effect size of interest threshold |
estimator_function |
Function that takes |
control |
Control object returned from |
na.rm |
Should NAs be removed? Default is |
1 2 3 4 5 | data("yoyo_mas_data")
predictor <- yoyo_mas_data$YoYoIR1
outcome <- yoyo_mas_data$MAS
describe_relationship(predictor, outcome, SESOI_lower = -0.5, SESOI_upper = 0.5)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.