reliability_estimators: Reliability estimators

Description Usage Arguments Value Examples

View source: R/reliability_analysis.R

Description

reliability_estimators provides reliability estimators using the OLP regression model, where trial1 is the outcome variable, and trial2 is the predictor.

Usage

1
2
3
4
5
6
7
8
reliability_estimators(
  data,
  trial1,
  trial2,
  SESOI_lower = 0,
  SESOI_upper = 0,
  na.rm = FALSE
)

Arguments

data

Data frame

trial1

Character vector indicating column name in the data

trial2

Character vector indicating column name in the data

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 vector with reliability estimators

Examples

1
2
3
4
5
6
7
data("agreement_data")

reliability_estimators(
  data = agreement_data,
  trial1 = "Practical_score.trial1",
  trial2 = "Practical_score.trial2"
)

mladenjovanovic/bmbstats documentation built on Aug. 5, 2020, 4:20 p.m.