Will extract BMI z-scores based on a single age in months and sex. Overweight is a z-score of >1.04, and obese is a z-score > 1.64. Calculations are based on CDC formulae
For a z-score > 3, which indicates an extreme BMI, consider using the modified z-score and percentile.
Arguments
- agemos
The age in months. Should be between 24 and 240.5.
- sex
A single quoted character: "M" for males, "F" for females. Default is "M".
- bmi
The individual's BMI. If specified,
wt
andht
are not necessary and will be ignored.- wt
The individual's weight in kg as an alternative to specifying
BMI
. Will be ignored ifBMI
is specified.- ht
The individual's height in centimeters. Required if
wt
is specified andBMI
is not. Ignored ifBMI
is specified.- data
Source data for calculations. Default is "CDC" which uses the PmetricsData::cdc_bmi dataset. The alternative is "NHANES", which uses the PmetricsData::ger_bmi dataset.