Notes
Variable calculated from the following variables:
- q4_etr (Ego lives abroad)
- a14pays (Country of birth)
- a14imm_an
Stata program:
gen pimmig=1 if (!inlist(a14pays,7777,8888,9999,survey_country_code) & /// !inlist(a14imm_an,7777,8888,9999,0,.))|(inlist(a14imm_an,7777,8888,9999) & q4_etr==0)
recode pimmig .=0
replace pimmig=7777 if a14imm_an==7777 & pimmig==0
replace pimmig=8888 if a14imm_an==8888 & pimmig==0
replace pimmig=9999 if a14imm_an==9999 & pimmig==0