The DHS Program User Forum
Discussions regarding The DHS Program data and results
Home » Data » Merging data files » Linking adult children (>15) to their parents
Linking adult children (>15) to their parents [message #12784] Thu, 13 July 2017 06:18 Go to next message
Juliette is currently offline  Juliette
Messages: 3
Registered: February 2015
Member
Dear DHS-experts,

I'm currently trying to link parents and children living in the same household in order to compare some answer in the women and men questionnaires, hence I want both parents and children who answered the "over 15" questionnaire in the same database.
Do you have any advice in creating such a database?

Here's what I've tried for the case Ivory Coast, DHS 1994.
Quote:

use "$path/CIPR35FL.DTA", clear
* no line number of parents if children are older than 15
* keep heads of hh, their spouses & children
keep if hv101==1 | hv101==3 | hv101==2
*
gen eligibility=1 if hv117==1 |hv118==1
gen sondaughter=1 if hv101==3 & eligibility==1
gen head=1 if hv101==1 & eligibility==1
gen spouse=1 if hv101==2 & eligibility==1
bysort hhid: egen nbsd=count(sondaughter)
bysort hhid: egen nbhead=count(head)
bysort hhid: egen nbspouse=count(spouse)
*
gen keephh=1 if nbhead==1 & nbsd>=1 & nbspouse>=1
recode keephh (.=0)
*
keep if keephh==1
* MERGING WITH DATA FROM WOMEN AND MEN FILES
* ID: cluster_hh_line nb_age_survey
egen wuid=concat(hv001 hv002 hvidx hv007), punct(_)
egen muid=concat(hv001 hv002 hvidx hv007), punct(_)
drop if eligi!=1
*
merge 1:1 wuid using "$path/CI_women_94.DTA"
drop if _merge==2
merge 1:1 muid using "$path/CI_men.DTA", gen(merge)
drop if merge==2


Many thanks for your help!

[Updated on: Thu, 13 July 2017 07:18]

Report message to a moderator

Re: Linking adult children (>15) to their parents [message #12795 is a reply to message #12784] Fri, 14 July 2017 08:40 Go to previous messageGo to next message
Bridgette-DHS is currently offline  Bridgette-DHS
Messages: 3013
Registered: February 2013
Senior Member

Following is a response from Senior DHS Stata Specialist, Tom Pullum:


As you may know, with more recent surveys you can go to the BR file and use the variable b16 to find the line number of a child (of any age) who is living in the same household as the mother. The early surveys, such as the one you are using, do not include b16. What you are trying to do is more general, however, namely, to link a child with either parent.

I have not gone over your logic in detail, but I assume you have thought it through carefully. Several years ago I tried to do the same thing, and reached the conclusion that it is possible to find MOST such relationships but NOT ALL. The problem is that hv101 is not sufficient to catch--with certainty--a biological relationship between a pair of people when neither of them is the household head. I suggest that you first remove from the PR file everyone who is ineligible for the individual interview. I see that 8713 women were eligible (hv117=1) and only 2909 men were eligible (hv118=1). You could merge with the IR and MR files. On the basis of age, number of children ever born and relation to head you could remove a lot of respondents. Do a combination of thinking about the possible combinations and seeing which combinations actually occur in the data. Good luck. If you find a good way to do this, you could post it for others to use.

Re: Linking adult children (>15) to their parents [message #12796 is a reply to message #12795] Fri, 14 July 2017 09:26 Go to previous message
Juliette is currently offline  Juliette
Messages: 3
Registered: February 2015
Member
Dear Tom and Bridgette,

thank you for your answer.
I'll let you know how it goes (with and without b16), and I'll try to have an efficient enough code to post it here.
Previous Topic: Senegal continuous DHS - combine 2014 and 2015 for regional representability?
Next Topic: Combining PR and KR to get child-specific malaria test results
Goto Forum:
  


Current Time: Tue Mar 19 06:29:11 Coordinated Universal Time 2024