Description Usage Arguments Examples
View source: R/observations-MET.R
Minimum-effect tests using observations and known measurement error
1 2 3 4 5 6 7 8 9 10 | observations_MET(
observations,
observations_label = NULL,
measurement_error = 0,
df = Inf,
SESOI_lower = 0,
SESOI_upper = 0,
alpha = 0.05,
confidence = 0.95
)
|
observations |
Numeric vector of observed scores |
observations_label |
Vector used for labeling observations. Default is |
measurement_error |
Estimated SD of the random error. Default is 0 |
df |
Degrees of freedom from the reliability study where |
SESOI_lower |
Lower smallest effect size of interest threshold |
SESOI_upper |
Upper smallest effect size of interest threshold |
alpha |
Numeric value for the alpha (Type I error). Default is 0.05 |
confidence |
Default is 0.95 |
1 2 3 4 5 6 7 8 9 10 11 | data("bench_press_data")
obs_MET <- observations_MET(
bench_press_data$Change,
SESOI_lower = -5,
SESOI_upper = 5,
measurement_error = 2.5,
alpha = 0.05
)
obs_MET
plot(obs_MET)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.