|
|
|
|
|
|
|
|
Re: Postnatal Care [message #22920 is a reply to message #20103] |
Thu, 03 June 2021 10:25 |
Samia Aziz
Messages: 8 Registered: August 2020
|
Member |
|
|
I am trying to conduct a trend analysis of PNC in BD and was analysing 2004 data. BDHS 2014 report stated that 16% of women who have given birth 3 years preceding the survey received care from a medically trained provider within 2 days of birth. I tried to get this value using following code but the result showing only 6% instead. Can you please help?
gen momcheck = 0 if age<36
replace momcheck = 1 if m50_1 & age<36
label list
recode m52_1 (11/14=1 "medically trained provider") (16/96=0 "other provider"), gen(careprovider)
label list
recode m51_1 (100/202=0 "within 48 hrs") (203/224=1 ">48 hrs") (998=3 "don't know"), gen(PNC_timing)
///women recieved PNC by a medically trained provider within 2 days
gen mom=0 if age<36
replace mom=1 if momcheck==1 & careprovider==1 & PNC_timing==0
I am looking at Table 10.8: postnatal care for mothers and children. BDHS 2004 report
The paragraph above the table also mentioned only 8% of the mother received care from a trained provider, which I would like to estimate. I want to calculate the percentage of mothers who received care from a trained provider within 2 days of birth.
[Updated on: Thu, 03 June 2021 14:49] by Moderator Report message to a moderator
|
|
|
|
|
Re: Postnatal Care [message #22936 is a reply to message #22934] |
Mon, 07 June 2021 16:08 |
Bridgette-DHS
Messages: 3199 Registered: February 2013
|
Senior Member |
|
|
Following is another response from DHS Research & Data Analysis Director, Tom Pullum:
The footnote to table 10.8 (in the BD 2004 report) says that if the birth was in a facility, then it is assumed that a postnatal checkup occurred within two days. That means all women with m15>=20 and <96 should get code 1. Women who did not give a birth in a facility are asked whether they went to a provider for a PNC and about the timing. So women with m52_1<20 & m51_1<=101 will also get code 1.
I agree that the structure of the questions is tricky. I looked at the questionnaire and at who is asked Q428, which is the source of m52.
|
|
|