The DHS Program User Forum
Discussions regarding The DHS Program data and results
Home » Topics » Child Health » place of delivery
place of delivery [message #5655] Mon, 22 June 2015 13:19 Go to next message
nadeem is currently offline  nadeem
Messages: 17
Registered: June 2015
Location: islamabad
Member
how can i select no of women that born a child 12-24 month before the survey .for this question which file i should used?

Nadeem Ahmad
Re: place of delivery [message #6662 is a reply to message #5655] Tue, 23 June 2015 10:19 Go to previous message
Liz-DHS
Messages: 1516
Registered: February 2013
Senior Member
Dear User,
Here is a response from one of our experts, Rebecca Winter:
Quote:
First, to identify children aged 12-24 months, I would use the birth recode file (BR file). This file has one line per birth, so there are multiple lines for female respondents with multiple births in their lifetime. Note that this file includes a line for each child whether he/she is currently alive or not (b5) and whether he/she is lives with the mother or not (b9).

To calculate the age of children (in months), take the difference between the mother's date of birth (v008) and the date of the child's birth (b3). For example, you could use the STATA code below to do this:


generate agemnth=.
replace agemnth=v008-b3 


Quote:
Next you can create a variable to identify children who are between 12-24 months on the day of interview:

Thank you for your post.

 generate oneyr = 0
replace oneyr= 1 if  agemnth>11 & agemnth<24 


Quote:
There should be very few respondents with more than one child between 12-24 months on the day of interview. If you wish to restrict your analysis to just one line per mother, you can keep just one child in this age group per woman. For example, you could use something like the STATA code below:


sort oneyr caseid
by oneyr caseid  : gen dup = cond(_N==1,0,_n)
drop if dup>1 



[Updated on: Tue, 23 June 2015 12:13]

Report message to a moderator

Previous Topic: fully immunized child
Next Topic: Full Child Immunization
Goto Forum:
  


Current Time: Thu Apr 18 19:00:58 Coordinated Universal Time 2024