Standardizes an observed value against a governed normative reference,
selecting the covariate-matched stratum and applying either a Gaussian
\((value - \mu)/\sigma\) (stratified mean/sd model) or the Cole (1990) LMS
transform (LMS model). An unmatched or unsupported stratum raises an error
rather than returning a silent NA.
Usage
normativeZScore(value, ref, covariates = list(), deviation_z = 2)Arguments
References
Cole TJ (1990). The LMS method for constructing normalized growth standards. Eur J Clin Nutr 44(1), 45-60.
Examples
ref <- GovernedNormativeReference("gs", "gait", "gait_speed",
provenance = list(source = "x"), consent = list(status = "public"),
license = list(spdx = "CC0-1.0"),
governance = list(custodian = "lab", access_level = "open"),
strata_vars = "sex",
model = list(type = "strata",
table = data.frame(sex = "M", mean = 1.3, sd = 0.2)))
normativeZScore(1.0, ref, list(sex = "M"))
#> $z
#> [1] -1.5
#>
#> $percentile
#> [1] 6.68072
#>
#> $deviation_flag
#> [1] FALSE
#>
#> $extrapolation
#> [1] FALSE
#>