import { anthro_zscore_adjusted } from './z-score-helper'; // ' Arm circumference-for-age zscore indicator // ' // ' @param armc numeric // ' @param age_in_days integer, the age in days. // ' @param age_in_months numeric, the age in months. // ' @param sex integer, the sex where 1 is male and 2 is female // ' @param flag_threshold numeric, a length 1 threshold. If the absolute value of the z-score is greater than // ' this parameter, the z-score gets flagged in the resulting data frame. // ' @param growthstandards data.frame, the growstandards table for the weight-for-age indicator. // ' Do not change unless you know what you are doing. // ' @include z-score-helper.R // ' @noRd type arm_circumference = { armc?: number, age_in_days: number, age_in_months: number, sex: 1 | 2, growthstandards?: string, flag_threshold?: number } export default function anthro_zscore_arm_circumference_for_age({ armc, age_in_days, age_in_months, sex, flag_threshold = 5, growthstandards = 'acanthro', }: arm_circumference): ReturnType { return anthro_zscore_adjusted({ name: 'ac', measure: armc, age_in_days, age_in_months, sex, growthstandards, flag_threshold, allowed_age_range: [91, 1856], }); }