Modified Clinical Test of Sensory Interaction on Balance (mCTSIB)
Source:R/posturography.R
mCTSIB.RdSummarises sway velocity (or any sway index) across the four mCTSIB sensory conditions (eyes open / closed on a firm surface and on foam) and returns the per-condition means and the composite (mean of the four condition means).
Usage
mCTSIB(
eyes_open_firm = NULL,
eyes_closed_firm = NULL,
eyes_open_foam = NULL,
eyes_closed_foam = NULL,
conditions = NULL
)Examples
mCTSIB(eyes_open_firm = c(0.4, 0.5),
eyes_closed_firm = c(0.6, 0.7),
eyes_open_foam = c(0.9, 1.0),
eyes_closed_foam = c(1.6, 1.8))
#> <mctsib_result>
#> eyes_open_firm mean=0.45 (n=2)
#> eyes_closed_firm mean=0.65 (n=2)
#> eyes_open_foam mean=0.95 (n=2)
#> eyes_closed_foam mean=1.7 (n=2)
#> composite: 0.9375