Project

General

Profile

Support #2241 ยป youth_covid_pub.do

 
globa path ""


use "$path/cd_youth_p", clear
//link by address to see if all youth addresses are also in indresp
merge m:m cd_aid_dv using "$path/cd_indresp_w", keepusing(pidp)

//there are 365 children whose address is not in the indresp
//let's keep only these to learn more about these addresses
keep if _merge==1
drop pidp _merge

//now let's check by linking to xsample (it includes only adults)
merge m:m cd_aid_dv using "$path/xsample"

//keep only matches and see what was the interview status of the people in those households
keep if _merge==3
fre cd_outcome //none of the respondents in these households gave a full interview
//check the labels here: https://www.understandingsociety.ac.uk/documentation/covid-19/variables/cd_outcome/


    (1-1/1)