count
tab Gender
tab Gender recentillness
tab Gender recentillness, col
tab Gender recentillness, col chi
sum MUAC
sum MUAC, detail
tab Gender , sum(MUAC)
list MUAC if MUAC <12.5
generate MUAC_cat= MUAC
recode MUAC_cat min/12.4=0 12.5/max=1
tab MUAC_cat
label define MUAC_Cat 0 "Malnourished" 1 "Normal"
label values MUAC_cat MUAC_Cat
tab MUAC_cat
histogram MUAC
histogram MUAC
histogram MUAC , frequency
hist MUAC , freq
hist MUAC , freq normal
graph box MUAC
mean MUAC
graph box MUAC , by( EBF )
scatter MUAC HC
save "C:\Paul\PAUL K\WORK\KIU\BMS\Research Methods\Teach 2025\dataset.dta", replace
scatter MUAC HC , by(Gender)