The BLS definition for discouraged workers covers only those who want a job, looked for one in the last 12 months, are available to take one, but don't think there is one available for them. In the NILFREASON variable I've defined discouraged workers as anyone who wants a job but isn't in the labor force.
To make the two match, I want to create a new variable called DISCTYPE that is defined as:
Discouraged where PRDISC == 1, Marginally attached where PRDISC == 2, No recent search where PRJOBSEA == 5, and Unavailable where PRDISC == 3. It will be defined only for those with NILFREASON == "Discouraged".
I can then remove some of the other variables, MRGNATT and PRDISC, for example.
The BLS definition for discouraged workers covers only those who want a job, looked for one in the last 12 months, are available to take one, but don't think there is one available for them. In the NILFREASON variable I've defined discouraged workers as anyone who wants a job but isn't in the labor force.
To make the two match, I want to create a new variable called DISCTYPE that is defined as:
Discouraged
wherePRDISC == 1
,Marginally attached
wherePRDISC == 2
,No recent search
wherePRJOBSEA == 5
, andUnavailable
wherePRDISC == 3
. It will be defined only for those withNILFREASON == "Discouraged"
.I can then remove some of the other variables, MRGNATT and PRDISC, for example.