manuf: Manufacturing industry
Description
manuf
indicates whether or not the respondent works in the manufacturing industry. See also mind16
.
Availability
Sample |
Years |
Basic |
All years |
May |
All years |
ORG |
All years |
Values
Value |
Label |
0 |
Not in manufacturing |
1 |
Manufacturing |
Code
Variable creation
********************************************************************************
* manuf: Consistent manufacturing indicator
********************************************************************************
gen byte manuf = .
if $monthlycps == 1 | $maycps == 1 {
replace manuf = 0 if mind16 ~= .
replace manuf = 1 if mind16 == 3 | mind16 == 4
}
label var manuf "Manufacturing industry"
lab def manuf 0 "Not in manufacturing" 1 "Manufacturing"
lab val manuf manuf
notes manuf: Manufacturing industry classification, consistent for 1973-present
notes manuf: derived from mind16 == 3 | mind16 == 4