This project demonstrates the use of R and the anthro package to compute and categorize child nutritional status using WHO growth standards. The script calculates Z-scores for height-for-age (stunting) and weight-for-age (underweight), and classifies children into categories such as Severe, Moderate, Normal, and Extreme.
- Data import and wrangling with
rio,dplyr, andjanitor - Z-score computation using the
anthropackage - Classification of stunting and underweight based on WHO cut-offs
- Ready for export to Excel for reporting or further analysis
anthro– Z-score calculation based on WHO referencetidyverse– Data manipulation and pipinggt,gtsummary– Table creation (optional in the script)rio– Easy data import/exportcase_when()– Logical condition mapping for nutritional categorization
sample.xlsx– Sample input dataset (child sex, age, length/height, weight)z-scores.xlsx(optional export) – Processed Z-score outputR script– Main file containing data wrangling, analysis, and categorization