Distribution-based Minimal Detectable Change from test-retest data
Source:R/clinimetrics-estimate.R
estimateMDC.RdEstimates the MDC from a test-retest reliability study: the intraclass
correlation gives the reliability, the standard error of measurement is
\(SD\sqrt{1 - ICC}\), and \(MDC = SEM \times z \times \sqrt{2}\)
(delegating to PhysioCore::icc/sem/mdc).
Usage
estimateMDC(
test_retest,
method = "distribution",
confidence = 0.95,
model = c("twoway", "oneway")
)Arguments
- test_retest
A subjects-by-occasions numeric matrix (or data.frame) of repeated measurements.
- method
Estimation method; currently
"distribution".- confidence
Confidence level for the MDC (default 0.95).
- model
ICC model passed to
PhysioCore::icc(default"twoway").