Description Usage Arguments Value Examples
View source: R/validity_analysis.R
validity_estimators
provides validity estimators using the simple linear regression model,
where criterion
is the outcome variable, and practical
is the predictor.
1 2 3 4 5 6 7 8 | validity_estimators(
data,
criterion,
practical,
SESOI_lower = 0,
SESOI_upper = 0,
na.rm = FALSE
)
|
data |
Data frame |
criterion |
Character vector indicating column name in the |
practical |
Character vector indicating column name in the |
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 vector with validity estimators
1 2 3 4 5 6 7 | data("agreement_data")
validity_estimators(
data = agreement_data,
criterion = "Criterion_score.trial1",
practical = "Practical_score.trial1"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.