Project

General

Profile

Support #2131

i_macurr 'inapplicable' cases

Added by Rachel Bennett about 1 month ago. Updated 30 days ago.

Status:
Feedback
Priority:
Normal
Category:
Questionnaire content
Start date:
07/29/2024
% Done:

60%


Description

Hi

I am struggling to understand which respondents have been marked ‘inapplicable’ for the question ‘In which country does your mother currently live?’ in wave 9 (migrationbackground_w9.macurr, i_macurr)

The question universe in the online information about the variable states:
if (FF_UKBORN = 5 & ff_1STWAVE <=6 & (GRIDVARIABLES.FBORN = 1 & GRIDVARIABLES.IEMB 1)) | (FF_UKBORN = 5 & (ff_1STWAVE = 7|8)) | INITIALCONDITIONS.UKBORN = 5 (Respondent is foreign born and entered the study at wave 6 or earlier and household is in the Foreign Born Sample but not in the IEMB sample OR Respondent is foreign born and entered the study at wave 7 or later)
and if FAMILYBACKGROUND.MACOB > 4 | FF_MACOB > 4 (Respondent's mother not born in the UK)

I think for the text to match up with the code the point with ‘& GRIDVARIABLES.IEMB 1’ Should read “& ‘& GRIDVARIABLES.IEMB=2’ [as I_IEMB is coded 1 for ‘yes’ and 2 for ‘no’]?

I’m also not finding that being having either ‘yes’ or ‘no’ for being in the ethnic minority boost (as well as being foreign born, entering the study at wave 6 or earlier and the participant’s mother being born abroad) clearly differentiates which participants do and do not have ‘inapplicable’ for this variable.

It would be great if you could clarify which respondents were asked to respond to this question and under what circumstances they would be coded ‘inapplicable’.

Many thanks
Rachel

#1

Updated by Understanding Society User Support Team about 1 month ago

  • Category set to Questionnaire content
  • Status changed from New to Feedback
  • % Done changed from 0 to 90
  • Private changed from Yes to No

Hi Rachel,

You're right, the condition on the website is incorrect - it is missing the "<>" operator after GRIDVARIABLES.IEMB, it should then read GRIDVARIABLES.IEMB<>1, which translated to GRIDVARIABLES.IEMB==2 & GRIDVARIABLES.IEMB==-9. You can find the full correct condition in the pdf of the wave 9 questionnaire (https://www.understandingsociety.ac.uk/documentation/mainstage/questionnaires/):

"If ((FF_UKBORN = 5 & Ff_1STWAVE <=6 & (GRIDVARIABLES.FBORN = 1 &
GRIDVARIABLES.IEMB <> 1)) | (FF_UKBORN = 5 & (Ff_1STWAVE = 7|8)) |
INITIALCONDITIONS.UKBORN = 5) // Respondent is foreign born and entered the study at wave 6 or earlier and
household is in the Foreign Born Sample but not in the IEMB sample OR Respondent is foreign born and entered the study at wave
7 or later
And If (FAMILYBACKGROUND.MACOB > 4 | FF_MACOB > 4) // Respondent's mother not born in the UK"

I hope it helps.

Best wishes,
Piotr Marzec
UKHLS User Support

#2

Updated by Rachel Bennett about 1 month ago

Hi Piotr

Many thanks for this. I am still puzzled by some of the participants who have ‘not applicable’ for i_macurr.

I have restricted the sample to foreign born participants only (using the variable bornuk_dv from the xwavedat dataset – I deleted all UK born participants and participants with missing data for this variable).
Of the remaining participants, I then removed participants whose mother was born in the UK (using the variable macob from the xwavedat dataset – I deleted all participants with UK born mothers and participants with missing data for this variable)

Of the then remaining participants, I then have removed participants who entered the study at wave 6 or earlier and were in the IEMB sample ( using the fwenum_dv variable from the xwavedata dataset and the i_iemb from the i_hhresp dataset)

I still find that 591 (17.72%) of the remaining sample have the value ‘not applicable’ for i_macurr.

Have I used the correct versions of the variables to restrict the sample and/or is there another reason participants may have ‘inapplicable’ for this variable?

Many thanks
Rachel

#3

Updated by Understanding Society User Support Team about 1 month ago

Hi Rachel,

What statistical package do you use?

Thanks,
Piotr
UKHLS User Support

#4

Updated by Rachel Bennett about 1 month ago

Hi Piotr

I use STATA.

Thanks
Rachel

#5

Updated by Understanding Society User Support Team about 1 month ago

  • % Done changed from 90 to 60

Hi,

Thanks. Could you please share the code that reproduces the macurr universe, including all the data management steps? Ideally, I would like to just replace the paths to the data and run your code.

Piotr
UKHLS User Support Team

#6

Updated by Rachel Bennett about 1 month ago

Hi Piotr

Sure, here it is :

*CREATING FILE WITH 'I_fborn' and 'i_iemb' VARIABLES TO MERGE INTO MAIN FILE**
use "UKDA-6614-stata\stata\stata13_se\ukhls\i_hhresp.dta"

keep i_hidp i_fborn i_iemb
sort i_hidp
save fborn, replace

CREATING FILE WITH STABLE CHARACTERSITICS, INCLUDING WHERE MOTHER/FATHER WAS BORN***
use "UKDA-6614-stata\stata\stata13_se\ukhls\xwavedat.dta"

keep pidp sex_dv bornuk_dv plbornc yr2uk4 generation macob pacob anychild_dv fwenum_dv

sort pidp

save stablecharacteristics, replace

*MAIN FILE (USING WAVE 9 INDIVIDUAL RESPONDENTS)**
use "UKDA-6614-stata\stata\stata13_se\ukhls\i_indresp.dta"

sort pidp

MERGE IN STABLE CHARACTERISTICS FILE
merge pidp using stablecharacteristics
tab _merge
drop if _merge==2
drop _merge

tab bornuk_dv, m

***deleting cases with missing data for bornuk_dv (588, 1.63% of sample)
drop if bornuk_dv==-9

***DELETING CASES WHERE PARTICIPANTS WERE BORN IN THE UK
drop if bornuk_dv==1

deleting cases where mother was born in the uk or missing data for mother's country of birth
drop if macob<5

MERGE IN FILE WITH FOREIGN BORN/ETHNIC MINORITY BOOST SAMPLE VARIABLES*
sort i_hidp
merge i_hidp using fborn
tab _merge

this deletes some cases here which do not hhresp file
keep if _merge==3

deleting cases which entered at wave 6 or earlier AND were part of IEMB sample *
drop if fwenum_dv<7 & i_iemb==1

*distribution of i_macurr*
tab i_macurr

Many thanks,
Rachel

#7

Updated by Understanding Society User Support Team about 1 month ago

Thank you. We'll look into it.

#8

Updated by Understanding Society User Support Team 30 days ago

Hi Rachel,

A quick update: I can confirm that there might be an issue with the macurr routing, we are investigating possible reasons. I will let you know when I learn more.

Best wishes,
Piotr

#9

Updated by Rachel Bennett 30 days ago

Many thanks Piotr

Also available in: Atom PDF