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