observations_MBI: Magnitude-based inference using observations and known...

Description Usage Arguments Examples

View source: R/observations-MBI.R

Description

Magnitude-based inference using observations and known measurement error

Usage

1
2
3
4
5
6
7
8
9
observations_MBI(
  observations,
  observations_label = NULL,
  measurement_error = 0,
  df = Inf,
  SESOI_lower = 0,
  SESOI_upper = 0,
  confidence = 0.95
)

Arguments

observations

Numeric vector of observed scores

observations_label

Vector used for labeling observations. Default is NULL

measurement_error

Estimated SD of the random error. Default is 0

df

Degrees of freedom from the reliability study where measurement_error is estimated. Default is Inf, which implies the use of normal distribution

SESOI_lower

Lower smallest effect size of interest threshold

SESOI_upper

Upper smallest effect size of interest threshold

confidence

Default is 0.95

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
data("bench_press_data")
obs_MBI <- observations_MBI(
  bench_press_data$Change,
  SESOI_lower = -5,
  SESOI_upper = 5,
  measurement_error = 2.5,
  confidence = 0.9
)

obs_MBI
plot(obs_MBI)

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