Home » Countries » Nigeria » chap 11(Nutrition indicator) (table 11.7 minimum acceptable diet among non breastfed)
chap 11(Nutrition indicator) [message #25774] |
Wed, 07 December 2022 10:19 |
anum.ali
Messages: 6 Registered: September 2022
|
Member |
|
|
Hello
My query is my estimates for table 11.7 Among nonbreastfed children age 6-23 months, percentage fed for minimum acceptable diet are not coming same as in Nigeria dhs 2018 report for example values for sex of child generated are (male: 9, female: 14.9) whereas for residence are (urban: 15.7, rural: 7.1) these are different then the report although the total coming is fine and estimates for rest of the table are correct I am confused where am I making mistake for minimum acceptable diet help will be appreciated, thank you
//currently breastfed
gen bf_curr= m4==95
label values bf_curr yesno
label var bf_curr "Currently breastfeeding"
//Fed milk or milk products
gen milkf = 0
replace milkf=milkf + v469e if v469e<8
replace milkf=milkf + v469f if v469f<8
replace milkf=milkf + v469x if v469x<8
gen fed_milk= ( milkf>=2 | m4==95) if inrange(b19,6,23)
label values fed_milk yesno
label var fed_milk "Child given milk or milk products"
//Min dietary diversity
* 8 food groups
*1. breastmilk
gen group1= m4==95
*2. foods made from grains, roots, tubers, and bananas/plantains, including porridge and fortified baby food from grains
gen group2= grains==1 | root_tubers==1 | forti_bbyfood==1
*3. legumes and nuts
gen group3= legumes_nuts==1
*4. infant formula, milk other than breast milk, cheese or yogurt or other milk products
gen group4= inf_formula==1 | othr_milk==1 | dairy==1
*5. meat, poultry, fish, and shellfish (and organ meats)
gen group5= meatfish==1
*6. eggs
gen group6= eggs==1
*7. vitamin A-rich fruits and vegetables
gen group7= vita==1
*8. other fruits and vegetables
gen group8= othr_frtveg==1
* add the food groups
egen foodsum = rsum(group1 group2 group3 group4 group5 group6 group7 group8)
recode foodsum (1/4 .=0 "No") (5/8=1 "Yes"), gen(mdd)
replace mdd=. if b19<6
label values mdd yesno
label var mdd "Child with minimum dietary diversity, 5 out of 8 food groups- last-born 6-23 months"
//Min meal frequency
gen feedings=milkf
replace feedings= feedings + m39 if m39>0 & m39<8
gen mmf = (m4==95 & inrange(m39,2,7) & inrange(b19,6,8)) | (m4==95 & inrange(m39,3,7) & inrange(b19,9,23)) | (m4!=95 & feedings>=4 & inrange(b19,6,23))
replace mmf=. if b19<6
label values mmf yesno
label var mmf "Child with minimum meal frequency- last-born 6-23 months"
//Min acceptable diet
egen foodsum2 = rsum(grains root_tubers legumes_nuts meatfish vita othr_frtveg eggs)
gen mad = (m4==95 & mdd==1 & mmf==1) | (m4!=95 & foodsum2>=4 & mmf==1 & milkf>=2)
replace mad=. if b19<6
label values mad yesno
label var mad "Child with minimum acceptable diet- last-born 6-23 months"
*child's sex
tab b4 mad if bf_curr==0 [iw=wt], row nofreq
*residence
tab v025 mad if bf_curr==0 [iw=wt], row nofreq
|
|
|
Goto Forum:
Current Time: Sat Nov 23 23:24:23 Coordinated Universal Time 2024
|