The DHS Program User Forum
Discussions regarding The DHS Program data and results
Home » Topics » Child Health » Childhood obesity
Childhood obesity [message #6941] Wed, 05 August 2015 16:04 Go to next message
sumonrupop is currently offline  sumonrupop
Messages: 23
Registered: August 2015
Location: Rajshahi
Member

Hi
I want to calculate childhood (<5 years)BMI by using the 2011 Bangladeshi data.Stata software will be used to calculate BMI. But i can not understand how i can calculate the childhood BMI. I am a first time stata user, so if anyone suggest me with possible comment will be greatly helpful for me.




Md. Nuruzzaman Khan
Re: Childhood obesity [message #6971 is a reply to message #6941] Fri, 07 August 2015 09:57 Go to previous message
Liz-DHS
Messages: 1516
Registered: February 2013
Senior Member
Dear User,
Here is a response from Dr. Tom Pullum:
Quote:
For children under 5, the general recommendation is to use the haz, waz, and whz scores from the WHO 2006 guidelines, and calculate stunting, underweight, wasting, and overweight from those scores, rather than using the BMI. The BMI is recommended mainly for adults. However, you can calculate the BMI using the following lines in Stata, after you have opened the PR file. For women, weight is ha2, height is ha3, and BMI is ha40. For children, weight is hc2 and height is hc3, and I will use hc40 for BMI. If you are using the KR file, weight is hw2 and height is hw3. You will get the BMI, hc40, with a factor of 1000, with these lines:

gen loghc2=log(hc2)
gen loghc3=log(hc3)

* factor is 10 million, i.e. 1 followed by 7 zeroes
scalar factor=10000000

gen loghc40=.
replace loghc40=log(hc2)-2*log(hc3)+log(factor) if hc2<9000 & hc3<9000
gen hc40=exp(loghc40)
replace hc40=9998 if hc40>6000 & hc40<.
drop log* 

Quote:
Please let me know if this does not seem to work.
Previous Topic: SPSS sytax for Concentration index!
Next Topic: mothers age at birth
Goto Forum:
  


Current Time: Wed Sep 27 22:23:55 Coordinated Universal Time 2023