Description Usage Arguments Value Examples
View source: R/reliability_analysis.R
reliability_analysis
represents a wrapper function for the bmbstats
function.
reliability_analysis
runs the bootstrap reliability analysis of the data
data frame using
estimator_function
to return the estimators
1 2 3 4 5 6 7 8 9 10 | reliability_analysis(
data,
trial1,
trial2,
SESOI_lower = SESOI_lower_reliability_func,
SESOI_upper = SESOI_upper_reliability_func,
estimator_function = reliability_estimators,
control = model_control(),
na.rm = FALSE
)
|
data |
Data frame |
trial1 |
Character vector indicating column name in the |
trial2 |
Character vector indicating column name(s) in the |
SESOI_lower |
Function or numeric scalar. Default is |
SESOI_upper |
Function or numeric scalar. Default is |
estimator_function |
Function for providing reliability estimators. Default is |
control |
Control object returned from |
na.rm |
Should NAs be removed? Default is |
Object of class bmbstats
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | data("agreement_data")
rel_analysis <- reliability_analysis(
data = agreement_data,
trial1 = "Practical_score.trial1",
trial2 = "Practical_score.trial2",
control = model_control(
boot_type = "perc",
boot_samples = 1000,
seed = 1667
)
)
rel_analysis
plot(rel_analysis)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.