[go: up one dir, main page]

0% found this document useful (0 votes)
25 views2 pages

Commands

The document outlines a series of statistical commands and analyses performed on a dataset related to MUAC (Mid-Upper Arm Circumference) measurements. It includes generating categories for MUAC, creating histograms, box plots, and scatter plots, as well as summarizing data by gender and recent illness. The final command saves the dataset to a specified file path.

Uploaded by

Kato Caleb
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views2 pages

Commands

The document outlines a series of statistical commands and analyses performed on a dataset related to MUAC (Mid-Upper Arm Circumference) measurements. It includes generating categories for MUAC, creating histograms, box plots, and scatter plots, as well as summarizing data by gender and recent illness. The final command saves the dataset to a specified file path.

Uploaded by

Kato Caleb
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

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)

You might also like