------------------------------------------------------------------------------------------------------------- name: log: /disk/nber10/SCCS/morg/sources/annual2017.log log type: text opened on: 5 Apr 2018, 14:46:56 . set more 1 . *primary family and child variables added 2000-04-20 by Jean Roth, jroth@nber.org . *Y2K compliance by Jean Roth, jroth@nber.org, 2001-01-15 . *Imputed highest grade completed, ihigrdc, added by Jean Roth, jroth@nber.org, 2003-01-20 . *Stata 8 compliance by Jean Roth, jroth@nber.org, 2003-02-28 . *matching variables added by Jean Roth, jroth@nber.org, 2003-02-12 . * run with nohup stata -b do annual2002 & to run in batch mode . do rw . . program rw 1. * grab the annual file . * keep data from the relevant month . * sort by revised weight merge variables . * merge using the revised weight monthly file, 'rwmonyy.dta' . * save the merged file as 'mon' . use /homes/data/morg/annual/rw/annual 2. keep if intmonth==`3' 3. quietly describe 4. display "`3' `2' obs " r(N) 5. local rwlist qstnum intmonth year occurnum 6. sort `rwlist' 7. merge `rwlist' using /homes/data/morg/annual/rw/rw`2'`1' 8. drop if _merge == 2 9. save /homes/data/morg/annual/rw/`2', replace 10. end . end of do-file . ! /bin/rm -f /tmp/aef.raw aef.dct dcthead . capture erase /tmp/aef.raw . capture erase aef.dct . capture erase dcthead . ! echo >dcthead dictionary using /tmp/aef.raw . program define aef2 1. local dct_name "aef`3'.dbd" 2. local raw_name "../raw/morg`2'" 3. display "dct_name `dct_name' raw_name=`raw_name'" 4. if `1' <= 1993 { 5. *!zcat /homes/data/cps-basic/cpsb`2'??.Z |tr "\-A" " " >/tmp/aef.raw . !zcat /homes/data/morg/raw/morg`2'.Z |tr "\-A" " " >/tmp/morg`2'.raw 6. } 7. *if `1' == 1993 { . * *!zcat /homes/data/cps-basic/cpsb`2'??.Z |tr "\-A" " " >/tmp/aef.raw . * !zcat /homes/data/morg/raw/morg`2'.oldweights.Z |tr "\-A" " " >/tmp/aef.raw . *} . if `1' >= 1994 & `1'<=2010 { 8. *!zcat /homes/data/cps-basic/cpsb`2'??.Z >/tmp/aef.raw . !zcat /homes/data/morg/raw/morg`2'.Z >/tmp/aef.raw 9. } 10. if `1' >=2011 & `1'<=2012 { 11. !bzcat /homes/data/morg/raw/morg`2'.bz2 >/tmp/aef.raw 12. } 13. *quietly infile using "`dct_name'" if age>15&age!=. , using("`raw_name'") clear . *quietly infile using "`dct_name'" if age>15&age!=. in 1/100 , using("`raw_name'") clear . *! cat /home/data/morg/sources/dcthead /home/data/morg/sources/aef`3'.dbd >./aef.dct . ! cat /home/data/morg/sources/aef`3'.dbd >./aef.dct 14. *quietly infile using aef.dct if age>15&age!=. , using("/tmp/aef.raw") clear . *quietly infile using aef.dct , using("/tmp/aef.raw") clear . quietly infile using aef.dct , using("/homes/data/morg/raw/morg`2'.raw") clear 15. *quietly infile using aef.dct , using("/homes/data/morg/raw/morg`2'.raw") clear . keep if minsamp==4 | minsamp==8 16. gen recnum=_n 17. label variable recnum "Unique record ID number. It's sequence in the original file." 18. quietly describe 19. display "obs " r(N) 20. quietly count if age<=15 21. display "# of persons with age<=15 `r(N)'" 22. quietly count if age==. 23. display "# of non-interview records `r(N)'" 24. tab age , missing 25. tab age if age==. , missing 26. tab age if age<=15 27. keep if age>15 28. keep if age!=. 29. quietly describe 30. display "obs " r(N) " after keeping age>15&age!=. " 31. display "infile successful" 32. #delimit cr delimiter now cr . generate int year = `1' 33. *summarize . tab intmonth if `1'==2005 34. ** Revised Census 2000-based Weights. Impact employment and union variables . if inlist( `1', 2000 , 2001 , 2002 ) { 35. gen id = _n 36. local rwlist qstnum intmonth year occurnum 37. sort `rwlist' 38. quietly describe 39. display "total obs pre-revise `1' " r(N) 40. saveold /homes/data/morg/annual/rw/annual, version(11) replace 41. clear 42. rw `2' jan 1 43. rw `2' feb 2 44. rw `2' mar 3 45. rw `2' apr 4 46. rw `2' may 5 47. rw `2' jun 6 48. rw `2' jul 7 49. rw `2' aug 8 50. rw `2' sep 9 51. rw `2' oct 10 52. rw `2' nov 11 53. rw `2' dec 12 54. local monlist feb mar apr may jun jul aug sep oct nov dec 55. clear 56. display "using jan" 57. use /homes/data/morg/annual/rw/jan 58. foreach mon in `monlist' { 59. append using /home/data/morg/annual/rw/`mon' 60. } 61. quietly describe 62. display "total obs post-revise" r(N) 63. display "start renaming" 64. rename neio1icd ind02 65. rename ntio1ocd occ00 66. replace occ00 = . if occ00 < 0 67. rename class94 class94p 68. replace class94p = . if class94p<0 69. . rename neio1cow class94 70. rename earnwt earnwtp 71. rename nworwgt earnwt 72. rename weight weightp 73. rename nwsswgt weight 74. display "done renaming" 75. display "drop 2000" 76. if `1' == 2000 { 77. drop neerncov neernlab 78. } 79. display "rename 2001-2002" 80. if inlist( `1' , 2001 , 2002 ) { 81. rename unioncov unioncop 82. replace unioncop = . if unioncop < 0 83. rename neerncov unioncov 84. rename unionmme unionmep 85. replace unionmep = . if unionmep < 0 86. rename neernlab unionmme 87. } 88. sort id 89. drop id _merge 90. } 91. . * Miscellaneous (record keeping) variables . if `1' == 1994 { 92. replace hhid = hhid94 93. drop hhid94 94. } 95. if `1'== 1995 { 96. replace hhid = hhid94 if intmonth<9 97. drop hhid94 98. } 99. if inlist( `1', 1996 , 1997 ) { 100. drop hhid94 101. } 102. replace hurespli =. if hurespli <0 103. if `1'>=2003 & `1'<=2006 { 104. drop linedad 105. drop linemom 106. } 107. if `1'>=2007 { 108. replace linedad=. if linedad<0 109. replace linemom=. if linemom<0 110. } 111. if ( inlist(`1',2003,2004) | `1'>=2007 ) { 112. drop hurhhscrn 113. drop purkat1 114. drop purkat2 115. } 116. if `1'==2005 { 117. replace hurhhscrn=. if intmonth<=10 | hurhhscrn<0 118. replace purkat1=. if intmonth<=10 | purkat1<0 119. replace purkat2=. if intmonth<=10 | purkat2<0 120. } 121. if `1'==2006 { 122. replace hurhhscrn=. if hurhhscrn<0 123. replace purkat1=. if purkat2<0 124. replace purkat2=. if purkat2<0 125. . } 126. ************************************************** . ** Creating time-series month/year from the first month-in-sample . generate ym_file = ym(year,intmonth) 127. label variable ym_file "time series month from original data" 128. generate ym = ym_file 129. label variable ym "time series month of first month-in-sample" 130. replace ym = ym - 1 if minsamp == 2 131. replace ym = ym - 2 if minsamp == 3 132. replace ym = ym - 3 if minsamp == 4 133. replace ym = ym - 12 if minsamp == 5 134. replace ym = ym - 13 if minsamp == 6 135. replace ym = ym - 14 if minsamp == 7 136. replace ym = ym - 15 if minsamp == 8 137. ************************************************** . * Geography . display "Geography" 138. if `1'==2004 { 139. display "replace serial" 140. replace serial = serial04 if intmonth >= 5 141. replace hrsample = "" if intmonth >= 5 142. replace hhnum = hhnum04 if intmonth >= 5 143. display "replace cmsacode" 144. replace cmsacode = . if intmonth >= 5 145. display "replace msafips" 146. replace msafips = . if intmonth >= 5 147. display "replace smsa93" 148. replace smsa93 = . if smsa93<2 & intmonth<=4 149. replace smsa93 = . if intmonth >= 5 150. display "replacing smsa04 in May 2004 and later" 151. replace smsa04 = . if smsa04<2 & intmonth >= 5 152. } 153. if `1' == 2005 { 154. replace serial = serial04 155. replace hrsample ="" 156. replace smsa04 = . if smsa04<2 & intmonth >= 5 157. } 158. if `1' >= 2005 { 159. replace hhnum = hhnum04 160. display "dropping cmsacode msafips smsa93" 161. drop cmsacode msafips smsa93 162. } 163. if `1' == 2003 { 164. display "dropping non-2003 variables" 165. drop cbsafips smsa04 serial04 hhnum04 hrhhid2 166. } 167. if `1'==2004 { 168. display "replacing pre-May 2004 variables" 169. replace cbsafips = . if intmonth <=4 170. replace smsa04 = . if intmonth <=4 171. replace hrhhid2 ="" if intmonth <=4 172. } 173. if `1' >= 2004 { 174. drop serial04 hhnum04 175. } 176. if `1' >= 1996 & `1' <= 2003 { 177. replace smsa93 = . if smsa93<2 178. } 179. display "smsasize = . if smsasize <=0" 180. capture replace smsasize = . if smsasize <=0 181. if `1' == 1995 { 182. replace smsastat = smsa995 if intmonth>8 183. replace icntcity = icntct94 if intmonth<9 184. replace centcity = centcitx if intmonth<9 185. replace smsa93 = . if intmonth>=9 & smsa93<2 186. replace smsa93 = . if intmonth<9 187. drop pmsarank 188. dis "gen smsa80" 189. generate smsa80 = smsasize 190. dis "rep smsa80" 191. replace smsa80 = . if intmonth >= 10 192. dis "replace county" 193. replace county = . if county < 0 194. dis "drop county" 195. if intmonth<9 { 196. drop county 197. } 198. } 199. if `1' >= 2014 { 200. replace state = . if intmonth > 3 201. } 202. if `1' >= 2015 { 203. cap drop state 204. } 205. display "inlisting 96 97" 206. if inlist( `1', 1996 , 1997 ) { 207. replace smsastat = smsa995 208. } 209. display "replace smsastat = . if smsastat==3 | smsastat<0" 210. replace smsastat = . if smsastat==3 | smsastat<0 211. if `1' == 1994 { 212. drop smsa93 213. drop county 214. replace centcity = centcitx 215. replace icntcity = icntct94 216. replace pmsarank = . if intmonth > 3 217. replace pmsarank = . if pmsarank <= 0 218. replace cmsarank = . if intmonth > 3 219. } 220. if inlist( `1', 1996 , 1997 ) { 221. drop pmsarank 222. } 223. if `1' >= 1994 & `1' <= 1997 { 224. drop centcitx icntct94 smsa995 225. } 226. if `1' >= 1994 { 227. replace peinusyr = . if peinusyr < 0 228. } 229. display "replace centcity = . if centcity==4 | centcity<=0" 230. replace centcity = . if centcity==4 | centcity<=0 231. if `1' >= 1986 & `1' < 1994 { 232. replace pmsarank = . if pmsarank<=0 233. } 234. if `1' >= 1995 & `1' <= 1997 { 235. drop cmsarank 236. } 237. if `1' >= 1986 { 238. replace icntcity = . if icntcity<=0 239. } 240. if `1' > 1984 & `1' < 1995 { 241. replace cmsarank = . if cmsarank<=0 242. } 243. if `1' >= 1989 & `1' <= 2004 { 244. replace msafips = . if msafips <=0 245. replace cmsacode = . if cmsacode<=0 246. } 247. ** 1970 occupation variables are not correct on morg83.raw . if `1' == 1983 { 248. drop docc70 occ70 249. } 250. if `1' == 1985 { 251. replace smsarank = . if intmonth > 9 252. } 253. if `1' == 1984 { 254. display "drop icntcity pmsarank cmsarank" 255. drop icntcity pmsarank cmsarank 256. } 257. if `1' == 1985 & intmonth < 10 { 258. drop icntcity pmsarank cmsarank 259. } 260. if `1' == 1994 { 261. replace cmsarank = . if intmonth>3 262. } 263. display "replace smsasize=. if smsasize<=0" 264. **should line below be commented out??? . capture replace smsasize=. if smsasize<=0 265. if `1' < 1985 { 266. display "generate byte smsa70 = smsasize" 267. generate byte smsa70 = smsasize 268. } 269. if `1' > 1985 & `1' < 1995 { 270. generate byte smsa80 = smsasize 271. } 272. if `1' == 1985 { 273. generate byte smsa70 = smsasize if intmonth<10 274. } 275. if `1' == 1985 { 276. generate byte smsa80 = smsasize if intmonth>9 277. } 278. display "drop smsasize" 279. capture drop smsasize 280. if `1' > 1985 & `1' < 1989 { 281. drop smsarank 282. } 283. if `1' < 1983 { 284. display "drop unioncov unionmme occ80 ind80" 285. drop unioncov unionmme occ80 ind80 286. } 287. . * Demography . display "Demography" 288. if `1' > 1983 & `1' < 1994 { 289. replace ownchild = . if ownchild ==0 290. replace ownchild = ownchild - 1 291. generate int ch613=chldpres 292. generate int ch1417=chldpres 293. } 294. if `1' >= 1984 { 295. replace spouse = . if spouse < 0 296. } 297. display "if `1' > 1983 & `1' < 1989 {" 298. if `1' > 1983 & `1' < 1989 { 299. generate int ch05= chldpres 300. recode ch05 (4 6/8 = 1) (0/3 5 = 0) 301. recode ch613 (3 5 7/8 = 1) (0/2 4 6 = 0) 302. recode ch1417 (2 5/6 8 =1) (0/1 3/4 7 = 0) 303. } 304. if `1' > 1988 & `1' < 1994 { 305. display "if `1' > 1988 & `1' < 1994 {" 306. generate int ch02 = chldpres 307. generate int ch35 = chldpres 308. recode ch02 (2 6/8 12/14 16 = 1) (0/1 3/5 9/11 15 = 0) 309. recode ch35 (3 6 9/10 12/13 15/16 = 1) (0/2 4/5 7/8 11 14 = 0) 310. recode ch613 (4 7 9 11/12 14/16 = 1) (0/3 5/6 8 10 13 = 0) 311. recode ch1417 (5 8 10/11 13/16 = 1) (0/4 6/7 9 12 = 0 ) 312. generate int ch05 = ch02 313. replace ch05 = ch35 if ch35 == 1 314. label variable ch02 "Children 0-2" 315. label variable ch35 "Children 3-5" 316. } 317. if `1' > 1983 & `1' < 1994 { 318. display "if `1' > 1983 & `1' < 1994 {" 319. label variable ch05 "Children 0-5" 320. label variable ch613 "Children 6-13" 321. label variable ch1417 "Children 6-17" 322. } 323. if `1' >= 1994 & `1' <= 1996 { 324. drop prpertyp 325. } 326. if `1' >= 1997 { 327. replace prpertyp=. if prpertyp<0 328. } 329. if `1' == 1998 { 330. drop ownchild chldpres 331. } 332. if `1' >= 1999 { 333. replace ownchild = . if ownchild < 0 334. replace chldpres = . if chldpres < 0 335. generate int ch02 = chldpres 336. generate int ch35 = chldpres 337. generate int ch613 = chldpres 338. generate int ch1417 = chldpres 339. recode ch02 (1 5/7 11/13 15 = 1) (0 2/4 8/10 14 = 0) 340. recode ch35 (2 5 8/9 11/12 14/15 = 1) (0/1 3/4 6/7 10 13 =0) 341. recode ch613 (3 6 8 10/11 13/15 = 1) (0/2 4/5 7 9 12 = 0) 342. recode ch1417 (4 7 9/10 12/15 = 1) (0/3 5/6 8 11 = 0) 343. generate int ch05 = ch02 344. replace ch05 = ch35 if ch35 == 1 345. } 346. . if `1' == 1999 { 347. replace ownchild = . if intmonth < 10 348. replace chldpres = . if intmonth < 10 349. replace ch613 = . if intmonth < 10 350. replace ch1417 = . if intmonth < 10 351. replace ch05 = . if intmonth < 10 352. replace ch02 = . if intmonth < 10 353. replace ch35 = . if intmonth < 10 354. } 355. if `1' > 1988 & `1' < 1992 { 356. drop grade92 357. } 358. if `1' < 1989 { 359. replace gradeat = gradeat - 1 360. replace marital = 7 if marital==5 361. } 362. if `1' > 1991 { 363. replace grade92 = . if grade92 < 0 364. } 365. if `1' >= 1998 { 366. replace ged = . if ged < 0 367. replace gedhigr = . if gedhigr < 0 368. replace yrcoll = . if yrcoll < 0 369. replace grprof = . if grprof < 0 370. replace gr6cor = . if gr6cor < 0 371. replace ms123 = . if ms123 < 0 372. generate double ihigrdc = . 373. ** Jaeger . label var ihigrdc "Imputed highest grade completed" 374. replace ihigrdc = 0 if grade92==31 375. replace ihigrdc = 2.5 if grade92==32 376. replace ihigrdc = 5.5 if grade92==33 377. replace ihigrdc = 7.5 if grade92==34 378. replace ihigrdc = 9 if grade92==35 379. replace ihigrdc =10 if grade92==36 380. replace ihigrdc =11 if grade92==37 381. replace ihigrdc =12 if grade92==38 382. replace ihigrdc = 0 if grade92==39 & ged==2 & gedhigr==1 383. replace ihigrdc = 2.5 if grade92==39 & ged==2 & gedhigr==2 384. replace ihigrdc = 5.5 if grade92==39 & ged==2 & gedhigr==3 385. replace ihigrdc = 7.5 if grade92==39 & ged==2 & gedhigr==4 386. replace ihigrdc = 9 if grade92==39 & ged==2 & gedhigr==5 387. replace ihigrdc = 10 if grade92==39 & ged==2 & gedhigr==6 388. replace ihigrdc = 11 if grade92==39 & ged==2 & gedhigr==7 389. replace ihigrdc = 12 if grade92==39 & ged==2 & gedhigr==8 390. replace ihigrdc = 12 if ged==1 391. replace ihigrdc = 12 if grade92>=40 & grade92<=42 & yrcoll==1 392. replace ihigrdc = 13 if grade92>=40 & grade92<=42 & yrcoll==2 393. replace ihigrdc = 14 if grade92>=40 & grade92<=42 & yrcoll==3 394. replace ihigrdc = 15 if grade92>=40 & grade92<=42 & yrcoll==4 395. replace ihigrdc = 16 if grade92>=40 & grade92<=42 & yrcoll==5 396. replace ihigrdc = 16 if grade92==43 & grprof==2 397. replace ihigrdc = 17 if grade92==43 & gr6cor==2 398. replace ihigrdc = 18 if grade92==43 & gr6cor==1 399. replace ihigrdc = 17 if grade92==44 & ms123==1 400. replace ihigrdc = 18 if grade92==44 & ms123>=2 & ms123<. 401. replace ihigrdc = 18 if grade92==45 | grade92==46 402. } 403. if inlist( `1', 1992 , 1993 ) { 404. drop gradecp gradeat 405. } 406. if `1' == 1995 { 407. replace relref94 = . if intmonth > 2 408. replace relref95 = . if intmonth < 3 409. } 410. if inlist( `1', 1996 , 1997 ) { 411. drop relref94 412. } 413. if `1' == 1994 { 414. drop relref95 415. } 416. if `1' >= 1994 { 417. replace ernpdh2 = . if ernpdh2 < 0 418. replace prunedur = . if prunedur < 0 419. replace penatvty = . if penatvty < 0 420. replace pemntvty = . if pemntvty < 0 421. replace pefntvty = . if pefntvty < 0 422. replace prcitshp = . if prcitshp < 0 423. replace prcitflg = . if prcitflg < 0 424. } 425. if `1' > 1989 { 426. replace ethnic = . if ethnic < 0 427. replace ethnic = . if ethnic >= 10 428. } 429. if `1' >= 1994 & `1' <= 2004 { 430. replace veteran = . if veteran < 0 431. } 432. if `1' >= 2003 & `1' <= 2004 { 433. drop vet1-vet4 434. } 435. if `1' == 2005 { 436. display "replacing veteran Jan-July 2005" 437. replace veteran = . if veteran < 0 & intmonth <= 7 438. display "replacing vet1-vet4 if intmonth <= 7 " 439. replace vet1 = . if intmonth <= 7 440. replace vet2 = . if intmonth <= 7 441. replace vet3 = . if intmonth <= 7 442. replace vet4 = . if intmonth <= 7 443. } 444. if `1' == 2005 { 445. replace veteran = . if intmonth >= 8 446. replace vet1 = . if vet1 < 0 & intmonth >= 8 447. replace vet2 = . if vet2 < 0 & intmonth >= 8 448. replace vet3 = . if vet3 < 0 & intmonth >= 8 449. replace vet4 = . if vet4 < 0 & intmonth >= 8 450. } 451. if `1' >= 2006 { 452. drop veteran 453. replace vet1=. if vet1<0 454. replace vet2=. if vet2<0 455. replace vet3=. if vet3<0 456. replace vet4=. if vet4<0 457. } 458. * Employment . display "Employment" 459. if `1' >= 1994 { 460. replace selfproxy = . if selfproxy<0 461. replace dwrsn = . if dwrsn<0 462. replace otc = . if otc<0 463. } 464. if `1' >= 1994 & `1' <= 2002 { 465. replace occ80 = . if occ80 <0 466. replace ind80 = . if ind80 < 10 467. replace class94 = . if class94<0 468. } 469. if `1' >= 2000 & `1' <=2010 { 470. replace occ00 = . if occ00 <0 471. replace ind02 = . if ind02 < 10 472. replace class94 = . if class94<0 473. } 474. if ( `1' == 2011 ) { 475. rename occ00 occ2011 476. lab var occ2011 "occupation code" 477. replace occ2011 = . if occ2011 <0 478. replace ind02 = . if ind02 < 10 479. replace class94 = . if class94<0 480. } 481. if ( `1' == 2012 ) { 482. di "Race 2003-April 2012 21 Categories" 483. di "Race May 2012 on 26 Categories" 484. gen race21 = race 485. replace race21 = . if intmonth >=5 486. gen race26 = race 487. replace race26 = . if intmonth <=4 488. di "2012 Occupation" 489. rename occ00 occ2011 490. gen occ2012 = occ2011 491. lab var occ2012 "occupation code" 492. replace occ2011 = . if occ2011 <0 | intmonth >=5 493. replace occ2012 = . if occ2012 <0 | intmonth <=4 494. replace ind02 = . if ind02 < 10 495. replace class94 = . if class94<0 496. } 497. if ( `1' >= 2013 ) { 498. rename occ00 occ2012 499. lab var occ2012 "occupation code" 500. replace occ2012 = . if occ2012 <0 501. replace ind02 = . if ind02 < 10 502. replace class94 = . if class94<0 503. } 504. #delimit ; delimiter now ; . ; . display "docc80" ; 505. if `1' >= 1983 & `1' <= 2002 { > display "generate int docc80=occ80;"; 506. generate int docc80=occ80; 507. display "recode docc80"; 508. recode docc80 (1/6=1) (7/22=2) (23/37=3) (44/59=4) (64/68=5) (69/83=6) (84/89=7) > (95/106=8) (113/154=9) (155/159=10) (178/179=11) (43 63 163/177 183/199=12) > (203/208=13) (213/225=14) (226/235=15) (243=16) (253/257=17) (258/259=18) > (263/278=19) (283/285=20) (303/307=21) (308/309=22) (313/315=23) (337/344=24) > (354/357=25) (316/336 345/353 359/389=26) (403/407=27) (413/427=28) > (433/444=29) (445/447=30) (448/455=31) (456/469=32) (503/549=33) (553/599=34) > (613/699=35) (703/779=36) (783/799=37) (803/814=38) (823/859=39) (869=40) > (875/883=41) (863/868 873 874 885/889=42) (473/476=43) (477/489=44) (494/499=45) > (905=46); 509. } ; 510. display "** The renaming is part of the Census reweighting ; " ; 511. if inlist( `1', 2000 , 2001 , 2002 ) { > *display "renaming docc80 docc80p " ; 512. *rename docc80 docc80p ; . } ; 513. display "docc00" ; 514. di "553" ; 515. if `1' >= 2000 & `1'<=2010 { ; 516. di "556" ; 517. display "generate int docc00=occ00;"; 518. generate int docc00=occ00; 519. display "recode docc00 2000-2010"; 520. recode docc00 (10/430=1) (500/950=2) (1000/1240=3) (1300/1560=4) (1600/1960=5) > (2000/2060=6) (2100/2150=7) (2200/2550=8) (2600/2960=9) (3000/3540=10) (3600/3650=11) > (3700/3950=12) (4000/4160=13) (4200/4250=14) (4300/4650=15) (4700/4960=16) > (5000/5930=17) (6000/6130=18) (6200/6940=19) (7000/7620=20) (7700/8960=21) > (9000/9750=22) (9840=23); 521. } ; 522. if `1' >= 2011 { ; 523. display "generate int docc00=occ2011;"; 524. di "568"; 525. if `1' == 2011 { ; 526. generate int docc00=occ2011 ; 527. } ; 528. di "572"; 529. if `1' == 2012 { ; 530. generate int docc00=occ2011 ; 531. replace docc00 = occ2012 if docc00 == . ; 532. } ; 533. di "577"; 534. if `1' >= 2013 { ; 535. generate int docc00=occ2012 ; 536. } ; 537. di "581"; 538. display "recode docc00 2011"; 539. recode docc00 (10/430=1) (500/950=2) (1000/1240=3) (1300/1560=4) (1600/1965=5) > (2000/2060=6) (2100/2160=7) (2200/2550=8) (2600/2960=9) (3000/3540=10) (3600/3655=11) > (3700/3955=12) (4000/4160=13) (4200/4250=14) (4300/4650=15) (4700/4965=16) > (5000/5940=17) (6005/6130=18) (6200/6940=19) (7000/7630=20) (7700/8965=21) > (9000/9750=22) (9840=23); 540. } ; 541. display "dind"; 542. if `1'<= 1982 { > display "`1' <= 1982: creating dind from ind70"; 543. gen dind=ind70 ; 544. recode dind (18/19=1) (17=2) (47/57=3) (67/77=4) (107/109=5) (118=6) (119/138=7) > (139/149=8) (157/168 258=9) (169=10) (177/198=11) (199/209=12) (219 =13) > (227=14) (228/238=15) (239/257=16) (259=18) (268/298=19) (299=20) > (307/318=21) (319/327=22) (328/337=23) (338/339=24) (347/369=25) > (377/378=26) (379/387=27) (388/398=28) (407/429=29) (447/449=30) (467/479=31) > (507/588=32) (607/698=33) (707/709=34) (717/718=35) > (769=36) (727/748=37) (749/759=38) (777/798=39) (807/809=40) (838=41) > (828/837 839/848=42) (877/879=44) (857/868=43) (849 869 887/897= 45) > (027 028 = 46) (907/937=52) ; 545. } ; 546. if `1' <=1991 & `1' >=1983 { > display "replacing dind for `1': `1' <=1991 & `1' >=1983"; 547. gen dind=ind80; 548. recode > dind (12/29=1) (10/11=2) (40/50=3) (60=4) (230/241=5) (242=6) (250/262=7) > (270/280=8) (281/300=9) (301=10) (310/332=11) (340/350=12) > (351=13) (352=14) (360/370=15) (371/382=16) (390=17) (391/392=18) > (100/122=19) (130=20) (132/150=21) (151/152=22) (160/162=23) (171/172=24) > (180/192=25) (200/201=26) (210/212=27) (220/222=28) > (400/432=29) (440/442=30) (450/472=31) (500/571=32) (580/691=33) (700/710=34) > (711/712=35) (761=36) (721/750=37) (751/760=38) (762/791=39) (800/810=40) > (831=41) (812/830 832/840=42) (842/860=43) (861/871=44) (841 872/893=45) > (30/32=46) (900/932=52) (991=51); 549. } ; 550. if `1' >= 1992 & `1' <= 2002 { > display "replacing dind for `1': `1' >= 1992 & `1' <= 2002 "; 551. gen dind=ind80; 552. recode > dind (12/30=1) (10/11=2) (40/50=3) (60=4) (230/241=5) (242=6) (250/262=7) > (270/280=8) (281/300=9) (301=10) (310/332=11) (340/350=12) > (351=13) (352=14) (360/370=15) (371/382=16) (390=17) (391/392=18) > (100/122=19) (130=20) (132/150=21) (151/152=22) (160/162=23) (171/172=24) > (180/192=25) (200/201=26) (210/212=27) (220/222=28) > (400/432=29) (440/442=30) (450/472=31) (500/571=32) (580/691=33) > (700/710=34) (711/712=35) (761=36) (721/750=37) (751/760=38) (762/791=39) > (800/810=40) (831=41) (812/830 832/840=42) (842/860=43) > (861/871=44) (841 872/893 =45) > (032 031 =46) > (910 922 932 900 901 921 930 931 =52) > (991=51) ; 553. }; 554. if `1' >= 2000 { > display "replacing dind for `1' >= 2000 " ; 555. gen dind02 = ind02; 556. recode > dind02 (170/180 290=1) (190/280=2) (370/490=3) (770=4) (2470/2590=5) > (2670/2990=6) (3070/3290=7) (3360/3390=8) (3470 3490=9) (3570/3690=10) > (3770/3870=11) (3890=12) (3960/3990=13) (1070/1290=14) (1370 1390=15) > (1470/1790=16) (1870/1990=17) (2070 2090=18) (2170/2290=19) (2370/2390=20) > (4070/4590=21) (4670/5790=22) (6070/6390=23) (570/690=24) (6470/6490=25) > (6570 6590=26) (6670=27) (6672/6675=28) (6680 6690=29) (6692 6695=30) > (6770 6780=31) (6870/6970=32) (6990=33) (7070=34) (7080/7190=35) > (7270/7490=36) (7570=37) (7580/7780=38) (7790=39) (7860/7890=40) > (8190=41) (7970/8180 8270 8290=42) (8370/8470=43) (8560/8590=44) (8660 8670=45) > (8680 8690=46) (8770/8890=47) (8970/9090=48) (9160/9190=49) (9290=50) > (9370/9590=51) (9890=52) ; 557. } ; 558. #delimit cr delimiter now cr . **Wages (If earnings are 0, then wage rate is missing, not zero). . display "Wages" 559. replace paidhr = . if paidhr <=0 560. replace paidhre = . if paidhre <=0 561. replace earnhr = . if earnhr <=0 562. replace earnhre = . if earnhre <=0 563. replace earnwke = . if earnwke < 0 564. if `1' < 1989 { 565. replace eligible = 2 if eligible == . 566. } 567. if `1' >= 1989 { 568. replace eligible = 2 if eligible <= 0 569. replace agri = 0 if agri==2 570. replace agri = . if agri< 0 571. replace untype = . if untype<0 572. } 573. if `1' < 1989 { 574. replace I25a = 0 if I25a ==. 575. replace I25b = 0 if I25b ==. 576. replace I25c = 0 if I25c ==. 577. replace I25d = 0 if I25d ==. 578. replace agri = . if agri< 0 579. } 580. if `1' >= 1994 { 581. replace I25a = 0 if I25a <= 3 582. replace I25b = 0 if I25b <= 3 583. *replace I25a = . if I25a < 0 . *replace I25b = . if I25b < 0 . replace earnhre = . if earnhre ==1 584. replace uhourse = . if lfsr94 >2 | lfsr94 <1 585. replace lfsr94 = . if lfsr94 < 0 586. replace laydur = . if laydur < 0 587. } 588. if `1' >= 1996 { 589. replace I25c = . if I25c < 0 590. replace I25d = . if I25d < 0 591. } 592. if `1' == 1995 { 593. replace I25c = . if I25c < 0 594. replace I25d = . if I25d < 0 595. replace I25c = . if intmonth < 9 596. replace I25d = . if intmonth < 9 597. } 598. if `1' == 1994 { 599. drop I25c I25d 600. } 601. ** Hours, Unions . display "Hours, Unions" 602. if `1' >= 1994 { 603. replace reason94 = . if reason94< 0 604. replace absent94 = . if absent94< 0 605. replace studftpt = . if studftpt< 0 606. replace schenr = . if schenr < 0 607. replace schlvl = . if schlvl < 0 608. replace ftpt94 = . if ftpt94 < 0 609. replace hourslw = . if hourslw < 0 610. replace hourslw = 99 if hourslw >99 & hourslw != . 611. replace uhourse = . if uhourse < 0 612. replace why3594 = . if why3594 < 0 613. replace unionmme = . if unionmme< 0 614. replace unioncov = . if unioncov< 0 615. } 616. . ** Save and exit . compress 617. do /homes/data/morg/sources/labels/labels`4' 618. saveold /homes/data/morg/annual/morg`2', version(11) replace 619. summarize 620. clear 621. capture ! /usr/bin/rm -f aef.dct /tmp/aef.raw 622. capture ! /bin/rm -f aef.dct /tmp/aef.raw 623. capture ! /usr/bin/chmod a+r /home/data/morg/annual/morg`2'.dta 624. capture ! /bin/chmod a+r /home/data/morg/annual/morg`2'.dta 625. capture ! /usr/bin/chmod g+w /home/data/morg/annual/morg`2'.dta 626. capture ! /bin/chmod g+w /home/data/morg/annual/morg`2'.dta 627. capture ! /usr/bin/chgrp web /home/data/morg/annual/morg`2'.dta 628. capture ! /bin/chgrp web /home/data/morg/annual/morg`2'.dta 629. end . . *Each block of commands does one year of the data. The data must be . *decompressed, and possibly have dashes converted to blanks. . *Then a dictionary for the particular year is prepared by . *concatenating a one line header (with the file name) to a generic . *dictionary body that covers several years of data that used the . *same format. . *Lastly, the data is read, modified, summarized and saved. . . *aef2 1979 79 79_83 79_82 . *aef2 1980 80 79_83 79_82 . *aef2 1981 81 79_83 79_82 . *aef2 1982 82 79_83 79_82 . *aef2 1983 83 79_83 83 . *aef2 1984 84 84_88 84 . *aef2 1985 85 84_88 85 . *aef2 1986 86 84_88 86_88 . *aef2 1987 87 84_88 86_88 . *aef2 1988 88 84_88 86_88 . *aef2 1989 89 89_93 89_91 . *aef2 1990 90 89_93 89_91 . *aef2 1991 91 89_93 89_91 . *aef2 1992 92 89_93 92_93 . *aef2 1993 93 89_93 92_93 . *aef2 1994 94 94_97 94 . *aef2 1995 95 94_97 95 . *aef2 1996 96 94_97 96_97 . *aef2 1997 97 94_97 96_97 . *aef2 1998 98 98_02 98 . *aef2 1999 99 98_02 99 . *aef2 2000 00 98_02 00 . *aef2 2001 01 98_02 01 . *aef2 2002 02 98_02 02 . *aef2 2003 03 03 03 . *aef2 2004 04 03 04 . *aef2 2005 05 03 05 . *aef2 2006 06 03 06 . *aef2 2007 07 03 07 . *aef2 2008 08 03 08 . *aef2 2009 09 03 09 . *aef2 2010 10 03 10 . aef2 2011 11 03 11 dct_name aef03.dbd raw_name=../raw/morg11 (0 observations deleted) obs 454769 # of persons with age<=15 136435 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 50,909 11.19 11.19 0 | 4,234 0.93 12.13 1 | 5,011 1.10 13.23 2 | 5,270 1.16 14.39 3 | 5,498 1.21 15.60 4 | 5,569 1.22 16.82 5 | 5,393 1.19 18.01 6 | 5,353 1.18 19.18 7 | 5,457 1.20 20.38 8 | 5,539 1.22 21.60 9 | 5,362 1.18 22.78 10 | 5,496 1.21 23.99 11 | 5,567 1.22 25.21 12 | 5,460 1.20 26.41 13 | 5,453 1.20 27.61 14 | 5,470 1.20 28.81 15 | 5,394 1.19 30.00 16 | 5,660 1.24 31.25 17 | 5,619 1.24 32.48 18 | 5,400 1.19 33.67 19 | 5,042 1.11 34.78 20 | 4,944 1.09 35.86 21 | 5,006 1.10 36.97 22 | 4,892 1.08 38.04 23 | 4,902 1.08 39.12 24 | 4,900 1.08 40.20 25 | 5,127 1.13 41.32 26 | 5,242 1.15 42.48 27 | 5,123 1.13 43.60 28 | 5,117 1.13 44.73 29 | 5,372 1.18 45.91 30 | 5,478 1.20 47.11 31 | 5,283 1.16 48.28 32 | 5,202 1.14 49.42 33 | 5,012 1.10 50.52 34 | 5,037 1.11 51.63 35 | 4,936 1.09 52.71 36 | 4,937 1.09 53.80 37 | 4,916 1.08 54.88 38 | 4,871 1.07 55.95 39 | 5,263 1.16 57.11 40 | 5,776 1.27 58.38 41 | 5,745 1.26 59.64 42 | 5,515 1.21 60.86 43 | 5,250 1.15 62.01 44 | 5,196 1.14 63.15 45 | 5,260 1.16 64.31 46 | 5,692 1.25 65.56 47 | 6,010 1.32 66.88 48 | 5,867 1.29 68.17 49 | 6,014 1.32 69.49 50 | 6,344 1.39 70.89 51 | 6,008 1.32 72.21 52 | 5,923 1.30 73.51 53 | 5,872 1.29 74.80 54 | 5,826 1.28 76.09 55 | 6,047 1.33 77.42 56 | 5,821 1.28 78.70 57 | 5,623 1.24 79.93 58 | 5,314 1.17 81.10 59 | 5,166 1.14 82.24 60 | 5,006 1.10 83.34 61 | 4,895 1.08 84.41 62 | 4,649 1.02 85.44 63 | 4,819 1.06 86.50 64 | 4,807 1.06 87.55 65 | 3,866 0.85 88.40 66 | 3,597 0.79 89.19 67 | 3,435 0.76 89.95 68 | 3,582 0.79 90.74 69 | 3,150 0.69 91.43 70 | 3,027 0.67 92.09 71 | 2,726 0.60 92.69 72 | 2,641 0.58 93.27 73 | 2,544 0.56 93.83 74 | 2,355 0.52 94.35 75 | 2,337 0.51 94.87 76 | 2,264 0.50 95.36 77 | 2,050 0.45 95.81 78 | 2,001 0.44 96.25 79 | 1,946 0.43 96.68 80 | 8,045 1.77 98.45 85 | 7,042 1.55 100.00 ------------+----------------------------------- Total | 454,769 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 50,909 37.31 37.31 0 | 4,234 3.10 40.42 1 | 5,011 3.67 44.09 2 | 5,270 3.86 47.95 3 | 5,498 4.03 51.98 4 | 5,569 4.08 56.06 5 | 5,393 3.95 60.02 6 | 5,353 3.92 63.94 7 | 5,457 4.00 67.94 8 | 5,539 4.06 72.00 9 | 5,362 3.93 75.93 10 | 5,496 4.03 79.96 11 | 5,567 4.08 84.04 12 | 5,460 4.00 88.04 13 | 5,453 4.00 92.04 14 | 5,470 4.01 96.05 15 | 5,394 3.95 100.00 ------------+----------------------------------- Total | 136,435 100.00 (136,435 observations deleted) (0 observations deleted) obs 318334 after keeping age>15&age!=. infile successful no observations (32 real changes made, 32 to missing) (273,742 real changes made, 273,742 to missing) (285,965 real changes made, 285,965 to missing) (0 real changes made) (0 real changes made) (159,087 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (159,247 real changes made) Geography (128,043 real changes made) dropping cmsacode msafips smsa93 smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (2,626 real changes made, 2,626 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (59,703 real changes made, 59,703 to missing) (291,819 real changes made, 291,819 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (153,136 real changes made, 153,136 to missing) if 2011 > 1983 & 2011 < 1989 { (0 real changes made) (0 real changes made) (0 real changes made) (ch02: 75940 changes made) (ch35: 85765 changes made) (ch613: 85765 changes made) (ch1417: 85765 changes made) (16,363 real changes made) (0 real changes made) (222,981 real changes made, 222,981 to missing) (309,424 real changes made, 309,424 to missing) (230,954 real changes made, 230,954 to missing) (261,679 real changes made, 261,679 to missing) (301,833 real changes made, 301,833 to missing) (296,123 real changes made, 296,123 to missing) (318,334 missing values generated) (1,036 real changes made) (1,994 real changes made) (3,970 real changes made) (6,420 real changes made) (7,116 real changes made) (10,854 real changes made) (12,487 real changes made) (4,431 real changes made) (47 real changes made) (113 real changes made) (54 real changes made) (566 real changes made) (1,013 real changes made) (2,233 real changes made) (3,238 real changes made) (1,646 real changes made) (86,443 real changes made) (10,828 real changes made) (22,284 real changes made) (39,074 real changes made) (9,840 real changes made) (5,354 real changes made) (40,154 real changes made) (4,668 real changes made) (11,833 real changes made) (1,815 real changes made) (20,396 real changes made) (8,427 real changes made) (225,635 real changes made, 225,635 to missing) (301,830 real changes made, 301,830 to missing) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (281,341 real changes made, 281,341 to missing) (0 real changes made) (289,050 real changes made, 289,050 to missing) (312,954 real changes made, 312,954 to missing) (316,967 real changes made, 316,967 to missing) (318,036 real changes made, 318,036 to missing) Employment (4,641 real changes made, 4,641 to missing) (311,569 real changes made, 311,569 to missing) (152,075 real changes made, 152,075 to missing) (108,154 real changes made, 108,154 to missing) (108,154 real changes made, 108,154 to missing) (108,154 real changes made, 108,154 to missing) docc80 ** The renaming is part of the Census reweighting ; docc00 553 generate int docc00=occ2011; 568 (108,154 missing values generated) 572 577 581 recode docc00 2011 (docc00: 210180 changes made) dind (108,154 missing values generated) (dind02: 210180 changes made) Wages (152,075 real changes made, 152,075 to missing) (0 real changes made) (219,466 real changes made, 219,466 to missing) (0 real changes made) (0 real changes made) (152,075 real changes made) (205,828 real changes made) (108,154 real changes made, 108,154 to missing) (301,830 real changes made, 301,830 to missing) (131,325 real changes made) (152,075 real changes made) (1 real change made, 1 to missing) (131,325 real changes made, 131,325 to missing) (1,258 real changes made, 1,258 to missing) (316,653 real changes made, 316,653 to missing) (219,434 real changes made, 219,434 to missing) (152,075 real changes made, 152,075 to missing) Hours, Unions (304,480 real changes made, 304,480 to missing) (311,509 real changes made, 311,509 to missing) (292,737 real changes made, 292,737 to missing) (272,241 real changes made, 272,241 to missing) (292,737 real changes made, 292,737 to missing) (1,258 real changes made, 1,258 to missing) (138,150 real changes made, 138,150 to missing) (97 real changes made) (14,412 real changes made, 14,412 to missing) (269,920 real changes made, 269,920 to missing) (152,075 real changes made, 152,075 to missing) (171,888 real changes made, 171,888 to missing) variable spouse was int now byte variable hourslw was int now byte variable laydur was int now byte variable ym_file was float now int variable ym was float now int variable ch02 was int now byte variable ch35 was int now byte variable ch613 was int now byte variable ch1417 was int now byte variable ch05 was int now byte variable docc00 was int now byte variable dind02 was float now byte (5,093,344 bytes saved) . *by Jean Roth Thu Mar 17 2005 14:38:42 . *Please report errors to jroth@nber.org . . * Note: Variable names in Stata are case-sensitive . #delimit ; delimiter now ; . ; . * minsamp: 1979-; . label values minsamp P2L; . label define P2L > 4 "MIS 4" > 8 "MIS 8" > ; . * hrlonglk: 1994-; . label values hrlonglk P3L; . label define P3L > 0 "MIS 1 Or Replacement HH (no" > 2 "MIS 2-4 Or MIS 6-8 (link To" > ; . * intmonth: 1979-; . label values intmonth P4L; . label define P4L > 1 "January" > 2 "February" > 3 "March" > 4 "April" > 5 "May" > 6 "June" > 7 "July" > 8 "August" > 9 "September" > 10 "October" > 11 "November" > 12 "December" > ; . * stfips: 1989-; . label values stfips stfips; . label define stfips > 1 "AL" > 2 "AK" > 4 "AZ" > 5 "AR" > 6 "CA" > 8 "CO" > 9 "CT" > 10 "DE" > 11 "DC" > 12 "FL" > 13 "GA" > 15 "HI" > 16 "ID" > 17 "IL" > 18 "IN" > 19 "IA" > 20 "KS" > 21 "KY" > 22 "LA" > 23 "ME" > 24 "MD" > 25 "MA" > 26 "MI" > 27 "MN" > 28 "MS" > 29 "MO" > 30 "MT" > 31 "NE" > 32 "NV" > 33 "NH" > 34 "NJ" > 35 "NM" > 36 "NY" > 37 "NC" > 38 "ND" > 39 "OH" > 40 "OK" > 41 "OR" > 42 "PA" > 44 "RI" > 45 "SC" > 46 "SD" > 47 "TN" > 48 "TX" > 49 "UT" > 50 "VT" > 51 "VA" > 53 "WA" > 54 "WV" > 55 "WI" > 56 "WY" > ; . * state: 1979-; . label values state P27L; . label define P27L > 11 "ME" > 12 "NH" > 13 "VT" > 14 "MA" > 15 "RI" > 16 "CT" > 21 "NY" > 22 "NJ" > 23 "PA" > 31 "OH" > 32 "IN" > 33 "IL" > 34 "MI" > 35 "WI" > 41 "MN" > 42 "IA" > 43 "MO" > 44 "ND" > 45 "SD" > ; . * penatvty: 2007-; . label values penatvty penatvty; . label define penatvty > 57 "United States" > 60 "American Samoa" > 66 "Guam" > 73 "Puerto Rico" > 78 "U.S. Virgin Islands" > 96 "U.S. Outlying Area" > 100 "Albania" > 102 "Austria" > 103 "Belgium" > 104 "Bulgaria" > 105 "Czechoslovakia" > 106 "Denmark" > 108 "Finland" > 109 "France" > 110 "Germany" > 116 "Greece" > 117 "Hungary" > 119 "Ireland/Eire" > 120 "Italy" > 126 "Holland/Netherlands" > 127 "Norway" > 128 "Poland" > 129 "Portugal" > 130 "Azores" > 132 "Romania" > 134 "Spain" > 136 "Sweden" > 137 "Switzerland" > 138 "United Kingdom/Great Britain" > 139 "England" > 140 "Scotland" > 141 "Wales" > 142 "Northern Ireland" > 147 "Yugoslavia" > 148 "Czech Republic" > 149 "Slovakia" > 150 "Bosnia & Herzegovina" > 151 "Croatia" > 152 "Macedonia" > 154 "Serbia" > 156 "Latvia" > 157 "Lithuania" > 158 "Armenia" > 159 "Azerbaijan" > 160 "Belarus" > 161 "Georgia" > 162 "Moldova" > 163 "Russia" > 164 "Ukraine" > 165 "USSR" > 166 "Europe, not specified" > 167 "Kosovo" > 200 "Afghanistan" > 202 "Bangladesh" > 205 "Myanmar (Burma)" > 206 "Cambodia" > 207 "China" > 208 "Cyprus" > 209 "Hong Kong" > 210 "India" > 211 "Indonesia" > 212 "Iran" > 213 "Iraq" > 214 "Israel" > 215 "Japan" > 216 "Jordan" > 217 "Korea" > 220 "South Korea" > 222 "Kuwait" > 223 "Laos" > 224 "Lebanon" > 226 "Malaysia" > 229 "Nepal" > 231 "Pakistan" > 233 "Philippines" > 235 "Saudi Arabia" > 236 "Singapore" > 238 "Sri Lanka" > 239 "Syria" > 240 "Taiwan" > 242 "Thailand" > 243 "Turkey" > 246 "Uzbekistan" > 247 "Vietnam" > 248 "Yemen" > 249 "Asia, not specified" > 300 "Bermuda" > 301 "Canada" > 303 "Mexico" > 310 "Belize" > 311 "Costa Rica" > 312 "El Salvador" > 313 "Guatemala" > 314 "Honduras" > 315 "Nicaragua" > 316 "Panama" > 318 "Central America" > 321 "Antigua and Barbuda" > 323 "Bahamas" > 324 "Barbados" > 327 "Cuba" > 328 "Dominica" > 329 "Dominican Republic" > 330 "Grenada" > 332 "Haiti" > 333 "Jamaica" > 338 "St. Kitts-Nevis" > 339 "St. Lucia" > 340 "St. Vincent and the Grenadines" > 341 "Trinidad and Tobago" > 343 "West Indes, not specified" > 360 "Argentina" > 361 "Bolivia" > 362 "Brazil" > 363 "Chile" > 364 "Colombia" > 365 "Ecuador" > 368 "Guyana" > 369 "Paraguay" > 370 "Peru" > 372 "Uruguay" > 373 "Venezuela" > 374 "South America, not specified" > 399 "Americas, not specified" > 400 "Algeria" > 407 "Cameroon" > 408 "Cape Verde" > 414 "Egypt" > 416 "Ethiopia" > 417 "Eritrea" > 421 "Ghana" > 427 "Kenya" > 429 "Liberia" > 436 "Morocco" > 440 "Nigeria" > 444 "Senegal" > 447 "Sierra Leone" > 448 "Somalia" > 449 "South Africa" > 451 "Sudan" > 453 "Tanzania" > 457 "Uganda" > 461 "Zimbabwe" > 462 "Africa, not specified" > 501 "Australia" > 508 "Fiji" > 515 "New Zealand" > 523 "Tonga" > 527 "Samoa" > 528 "Oceania, not specified" > 555 "Elsewhere" > ; . * pemntvty: 2007-; . label values pemntvty penatvty; . * pefntvty: 2007-; . label values pefntvty penatvty; . * prcitshp: 1994-; . label values prcitshp P16L; . label define P16L > 1 "Native, Born In US" > 2 "Native, Born in PR or US Outlying Area" > 3 "Native, Born Abroad Of US Parent(s)" > 4 "Foreign Born, US Cit By Naturalization" > 5 "Foreign Born, Not a US Citizen" > ; . * prcitflg: 1994-; . label values prcitflg P34L; . label define P34L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * meanings of last few codes of peinusyr change every year!!!; . * peinusyr: 2003-; . label values peinusyr P17L; . label define P17L > -1 "Not In Universe (Born In U.S.)" > 0 "Not Foreign Born" > 1 "Before 1950" > 2 "1950-1959" > 3 "1960-1964" > 4 "1965-1969" > 5 "1970-1974" > 6 "1975-1979" > 7 "1980-1981" > 8 "1982-1983" > 9 "1984-1985" > 10 "1986-1987" > 11 "1988-1989" > 12 "1990-1991" > 13 "1992-1995" > 14 "1994-1995" > 15 "1996-1997" > 16 "1998-1999" > 17 "2000-2001" > 18 "2002-2003" > 19 "2004-2005" > 20 "2006-2007" > 21 "2008-2009" > 22 "2010-2012" > ; . * paidhre: 1979-; . label values paidhre P18L; . label define P18L > 1 "Yes" > 2 "No" > ; . * I25a: 1979-; . label values I25a P28L; . label define P28L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * I25b: 1979-; . label values I25b P29L; . label define P29L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * I25c: 1996-; . label values I25c I25c; . label define I25c > 0 "No Components Allocated" > 1 "1 or more components Allocated" > ; . * I25d: 1996-; . label values I25d I25d; . label define I25d > 0 "No Components Allocated" > 1 "1 or more components Allocated" > ; . * class94: 1994-; . label values class94 P19L; . label define P19L > 1 "Government - Federal" > 2 "Government - State" > 3 "Government - Local" > 4 "Private, For Profit" > 5 "Private, Nonprofit" > 6 "Self-Employed, Incorporated" > 7 "Self-Employed, Unincorporated" > 8 "Without Pay" > ; . * lfsr94: 1994-; . label values lfsr94 P20L; . label define P20L > 1 "Employed-At Work" > 2 "Employed-Absent" > 3 "Unemployed-On Layoff" > 4 "Unemployed-Looking" > 5 "Retired-Not In Labor Force" > 6 "Disabled-Not In Labor Force" > 7 "Other-Not In Labor Force" > ; . * ind02: 2000-; . label values ind02 ind02; . label define ind02 > 170 "Crop production (111)" > 180 "Animal production (112)" > 190 "Forestry except logging (1131, 1132)" > 270 "Logging (1133)" > 280 "Fishing, hunting, and trapping (114)" > 290 "Support activities for agriculture and forestry (115)" > 370 "Oil and gas extraction (211)" > 380 "Coal mining (2121)" > 390 "Metal ore mining (2122)" > 470 "Nonmetallic mineral mining and quarrying (2123)" > 480 "Not specified type of mining (Part of 21)" > 490 "Support activities for mining (213)" > 570 "Electric power generation, transmission and distribution (Pt. 2211)" > 580 "Natural gas distribution (Pt.s2212)" > 590 "Electric and gas, and other combinations (Pts. 2211, 2212)" > 670 "Water, steam, air-conditioning, and irrigation systems (22131, 22133)" > 680 "Sewage treatment facilities (22132)" > 690 "Not specified utilities (Part of 22)" > 770 "** Construction (23)" > 1070 "Animal food, grain and oilseed milling (3111, 3112)" > 1080 "Sugar and confectionery products (3113)" > 1090 "Fruit and vegetable preserving and specialty food manufacturing (3114)" > 1170 "Dairy product manufacturing (3115)" > 1180 "Animal slaughtering and processing (3116)" > 1190 "Retail bakeries (311811)" > 1270 "Bakeries, except retail (3118 exc. 311811)" > 1280 "Seafood and other miscellaneous foods, n.e.c. (3117, 3119)" > 1290 "Not specified food industries (Part of 311)" > 1370 "Beverage manufacturing (3121)" > 1390 "Tobacco manufacturing (3122)" > 1470 "Fiber, yarn, and thread mills (3131)" > 1480 "Fabric mills, except knitting (3132 exc. 31324)" > 1490 "Textile and fabric finishing and coating mills (3133)" > 1570 "Carpet and rug mills (31411)" > 1590 "Textile product mills, except carpets and rugs (314 exc. 31411)" > 1670 "Knitting mills (31324, 3151)" > 1680 "Cut and sew apparel manufacturing (3152)" > 1690 "Apparel accessories and other apparel manufacturing (3159)" > 1770 "Footwear manufacturing (3162)" > 1790 "Leather tanning and products, except footwear manufacturing (3161, 3169)" > 1870 "Pulp, paper, and paperboard mills (3221)" > 1880 "Paperboard containers and boxes (32221)" > 1890 "Miscellaneous paper and pulp products (32222,32223, 32229)" > 1990 "Printing and related support activities (3231)" > 2070 "Petroleum refining (32411)" > 2090 "Miscellaneous petroleum and coal products (32419)" > 2170 "Resin, synthetic rubber and fibers, and filaments manufacturing (3252)" > 2180 "Agricultural chemical manufacturing (3253)" > 2190 "Pharmaceutical and medicine manufacturing (3254)" > 2270 "Paint, coating, and adhesive manufacturing B46 (3255)" > 2280 "Soap, cleaning compound, and cosmetics manufacturing (3256)" > 2290 "Industrial and miscellaneous chemicals (3251, 3259)" > 2370 "Plastics product manufacturing (3261)" > 2380 "Tire manufacturing (32621)" > 2390 "Rubber products, except tires, manufacturing (32622, 32629)" > 2470 "Pottery, ceramics, and related products manufacturing (32711)" > 2480 "Structural clay product manufacturing (32712)" > 2490 "Glass and glass product manufacturing (3272)" > 2570 "Cement, concrete, lime, and gypsum product manufacturing (3273, 3274)" > 2590 "Miscellaneous nonmetallic mineral product manufacturing (3279)" > 2670 "Iron and steel mills and steel product manufacturing (3311, 3312)" > 2680 "Aluminum production and processing (3313)" > 2690 "Nonferrous metal, except aluminum, production and processing (3314)" > 2770 "Foundries (3315)" > 2780 "Metal forgings and stampings (3321)" > 2790 "Cutlery and hand tool manufacturing (3322)" > 2870 "Structural metals, and tank and shipping container manufacturing (3323, 3324)" > 2880 "Machine shops; turned product; screw, nut and bolt manufacturing (3327)" > 2890 "Coating, engraving, heat treating and allied activities (3328)" > 2970 "Ordnance (332992 to 332995)" > 2980 "Miscellaneous fabricated metal products manufacturing (3325, 3326, 3329 exc. 332992, 3 > 32993, 332994, 332995)" > 2990 "Not specified metal industries (Part of 331 and 332)" > 3070 "Agricultural implement manufacturing (33311)" > 3080 "Construction, mining and oil field machinery manufacturing (33312, 33313)" > 3090 "Commercial and service industry machinery manufacturing (3333)" > 3170 "Metalworking machinery manufacturing (3335)" > 3180 "Engines, turbines, and power transmission equipment manufacturing (3336)" > 3190 "Machinery manufacturing, n.e.c. (3332, 3334, 3339)" > 3290 "Not specified machinery manufacturing (Part of 333)" > 3360 "Computer and peripheral equipment manufacturing (3341)" > 3370 "Communications, audio, and video equipment manufacturing (3342, 3343)" > 3380 "Navigational, measuring, electromedical, and control instruments manufacturing (3345)" > 3390 "Electronic component and product manufacturing, n.e.c. (3344, 3346)" > 3470 "Household appliance manufacturing (3352)" > 3490 "Electrical lighting, equipment, and supplies manufacturing, n.e.c. (3351, 3353, 3359)" > 3570 "Motor vehicles and motor vehicle equipment manufacturing (3361, 3362, 3363)" > 3580 "Aircraft and parts manufacturing (336411 to 336413)" > 3590 "Aerospace products and parts manufacturing (336414, 336415, 336419)" > 3670 "Railroad rolling stock manufacturing (3365)" > 3680 "Ship and boat building (3366)" > 3690 "Other transportation equipment manufacturing (3369)" > 3770 "Sawmills and wood preservation (3211)" > 3780 "Veneer, plywood, and engineered wood products (3212)" > 3790 "Prefabricated wood buildings and mobile homes (321991, 321992)" > 3870 "Miscellaneous wood products (3219 exc. 321991, 321992)" > 3890 "Furniture and related product manufacturing (337)" > 3960 "Medical equipment and supplies manufacturing (3391)" > 3970 "Toys, amusement, and sporting goods manufacturing (33992, 33993)" > 3980 "Miscellaneous manufacturing, n.e.c. (3399 exc. 33992, 33993)" > 3990 "Not specified manufacturing industries (Part of 31, 32, 33)" > 4070 "** Motor vehicles, parts and supplies, merchant wholesalers (*4231)" > 4080 "** Furniture and home furnishing, merchant wholesalers (*4232)" > 4090 "** Lumber and other construction materials, merchant wholesalers (*4233)" > 4170 "** Professional and commercial equipment and supplies, merchant wholesalers (*4234)" > 4180 "** Metals and minerals, except petroleum, merchant wholesalers (*4235)" > 4190 "** Electrical goods, merchant wholesalers (*4236)" > 4260 "** Hardware, plumbing and heating equipment, and supplies, merchant wholesalers (*4237 > )" > 4270 "** Machinery, equipment, and supplies, merchant wholesalers (*4238)" > 4280 "** Recyclable material, merchant wholesalers (*42393)" > 4290 "** Miscellaneous durable goods, merchant wholesalers (*4239 exc. 42393)" > 4370 "** Paper and paper products, merchant wholesalers (*4241)" > 4380 "** Drugs, sundries, and chemical and allied products, merchant (wholesalerss*4242, 424 > 6)" > 4390 "** Apparel, fabrics, and notions, merchant wholesalers (*4243)" > 4470 "** Groceries and related products, merchant wholesalers (*4244)" > 4480 "** Farm product raw materials, merchant wholesalers (*4245)" > 4490 "** Petroleum and petroleum products, merchant wholesalers (*4247)" > 4560 "** Alcoholic beverages, merchant wholesalers (*4248)" > 4570 "** Farm supplies, merchant wholesalers (*42491)" > 4580 "** Miscellaneous (nondurable goods, merchant wholesalerss*4249 exc. 42491)" > 4585 "*** Wholesale electronic markets, agents and brokers New industry (*4251)" > 4590 "**Not specified wholesale trade (Part of 42)" > 4670 "Automobile dealers (4411)" > 4680 "Other motor vehicle dealers (4412)" > 4690 "Auto parts, accessories, and tire stores (4413)" > 4770 "Furniture and home furnishings stores (442)" > 4780 "Household appliance stores (443111)" > 4790 "Radio, TV, and computer stores (443112, 44312)" > 4870 "Building material and supplies dealers (4441 exc. 44413)" > 4880 "Hardware stores (44413)" > 4890 "Lawn and garden equipment and supplies stores (4442)" > 4970 "Grocery stores (4451)" > 4980 "Specialty food stores (4452)" > 4990 "Beer, wine, and liquor stores (4453)" > 5070 "Pharmacies and drug stores (44611)" > 5080 "Health and personal care, except drug, stores (446 exc. 44611)" > 5090 "Gasoline stations (447)" > 5170 "Clothing and accessories, except shoe, stores (448 exc. 44821, 4483)" > 5180 "Shoe stores (44821)" > 5190 "Jewelry, luggage, and leather goods stores (4483)" > 5270 "Sporting goods, camera, and hobby and toy stores (44313, 45111, 45112)" > 5280 "Sewing, needlework, and piece goods stores (45113)" > 5290 "Music stores (45114, 45122)" > 5370 "Book stores and news dealers (45121)" > 5380 "****Department stores and discount stores (s45211)" > 5390 "Miscellaneous general merchandise stores (4529)" > 5470 "Retail florists (4531)" > 5480 "Office supplies and stationery stores (45321)" > 5490 "Used merchandise stores (4533)" > 5570 "Gift, novelty, and souvenir shops (45322)" > 5580 "Miscellaneous retail stores (4539)" > 5590 "*** Electronic shopping (New industry *454111)" > 5591 "*** Electronic auctions (New industrys*454112)" > 5592 "** Mail order houses (*454113)" > 5670 "Vending machine operators (4542)" > 5680 "Fuel dealers (45431)" > 5690 "Other direct selling establishments (45439)" > 5790 "Not specified retail trade (Part of 44, 45)" > 6070 "Air transportation (481)" > 6080 "Rail transportation (482)" > 6090 "Water transportation (483)" > 6170 "Truck transportation (484)" > 6180 "Bus service and urban transit (4851, 4852, 4854, 4855, 4859)" > 6190 "Taxi and limousine service (4853)" > 6270 "Pipeline transportation (486)" > 6280 "Scenic and sightseeing transportation (487)" > 6290 "Services incidental to transportation (488)" > 6370 "Postal Service (491)" > 6380 "Couriers and messengers (492)" > 6390 "Warehousing and storage (493)" > 6470 "**Newspaper publishers (51111)" > 6480 "**Publishing, except newspapers and software (5111 exc. 51111)" > 6490 "Software publishing (5112)" > 6570 "Motion pictures and video industries (5121)" > 6590 "Sound recording industries (5122)" > 6670 "Radio and television broadcasting and cable (5151, 5152, 5175)" > 6672 "Internet publishing and broadcasting and web search portals (51913)" > 6675 "*** Internet publishing and broadcasting (New industrys*5161)" > 6680 "Wired telecommunications carriers (*5171)" > 6690 "Other telecommunications services (*517 exc. 5171, 5175)" > 6692 "*** Internet service providers New industry (*5181)" > 6695 "**** Data processing, hosting, and related services (*5182)" > 6770 "Libraries and archives (*51912)" > 6780 "Other information services (*5191 exc. 51912)" > 6870 "Banking and related activities (521, 52211,52219)" > 6880 "Savings institutions, including credit unions (52212, 52213)" > 6890 "Non-depository credit and related activities (5222, 5223)" > 6970 "Securities, commodities, funds, trusts, and other financial investments (523, 525)" > 6990 "Insurance carriers and related activities (524)" > 7070 "Real estate (531)" > 7080 "Automotive equipment rental and leasing (5321)" > 7170 "Video tape and disk rental (53223)" > 7180 "Other consumer goods rental (53221, 53222, 53229, 5323)" > 7190 "Commercial, industrial, and other intangible assets rental and leasing (5324, 533)" > 7270 "Legal services (5411)" > 7280 "Accounting, tax preparation, bookkeeping, and payroll services (5412)" > 7290 "Architectural, engineering, and related services (5413)" > 7370 "Specialized design services (5414)" > 7380 "Computer systems design and related services (5415)" > 7390 "Management, scientific, and technical consulting services (5416)" > 7460 "Scientific research and development services (5417)" > 7470 "Advertising and related services (5418)" > 7480 "Veterinary services (54194)" > 7490 "Other professional, scientific, and technical services (5419 exc. 54194)" > 7570 "Management of companies and enterprises (551)" > 7580 "Employment services (5613)" > 7590 "Business support services (5614)" > 7670 "Travel arrangements and reservation services (5615)" > 7680 "Investigation and security services (5616)" > 7690 "** Services to buildings and dwellings (5617 exc. 56173)" > 7770 "Landscaping services (56173)" > 7780 "Other administrative and other support services (5611, 5612, 5619)" > 7790 "Waste management and remediation services (562)" > 7860 "Elementary and secondary schools (6111)" > 7870 "Colleges and universities, including junior colleges (6112, 6113)" > 7880 "Business, technical, and trade schools and training (6114, 6115)" > 7890 "Other schools, instruction, and educational services (6116, 6117)" > 7970 "Offices of physicians (6211)" > 7980 "Offices of dentists (6212)" > 7990 "Offices of chiropractors (62131)" > 8070 "Offices of optometrists (62132)" > 8080 "Offices of other health practitioners (6213 exc. 62131, 62132)" > 8090 "Outpatient care centers (6214)" > 8170 "Home health care services (6216)" > 8180 "Other health care services (6215, 6219)" > 8190 "Hospitals (622)" > 8270 "Nursing care facilities (6231)" > 8290 "Residential care facilities, without nursing (6232, 6233, 6239)" > 8370 "Individual and family services (6241)" > 8380 "Community food and housing, and emergency services (6242)" > 8390 "Vocational rehabilitation services (6243)" > 8470 "Child day care services (6244)" > 8560 "Independent artists, performing arts, spectator sports, and related industries (711)" > 8570 "Museums, art galleries, historical sites, and similar institutions (712)" > 8580 "Bowling centers (71395)" > 8590 "Other amusement, gambling, and recreation industries (713 exc. 71395)" > 8660 "Traveler accommodation (7211)" > 8670 "Recreational vehicle parks and camps, and rooming and boarding houses (7212, 7213)" > 8680 "Restaurants and other food services (722 exc. 7224)" > 8690 "Drinking places, alcoholic beverages (7224)" > 8770 "Automotive repair and maintenance (8111 exc. 811192)" > 8780 "Car washes (811192)" > 8790 "Electronic and precision equipment repair and maintenance (8112)" > 8870 "Commercial and industrial machinery and equipment repair and maintenance (8113)" > 8880 "Personal and household goods repair and maintenance (8114 exc. 81143)" > 8890 "Footwear and leather goods repair (81143)" > 8970 "Barber shops (812111)" > 8980 "Beauty salons (812112)" > 8990 "Nail salons and other personal care services (812113, 81219)" > 9070 "Drycleaning and laundry services (8123)" > 9080 "Funeral homes, cemeteries, and crematories (8122)" > 9090 "Other personal services (8129)" > 9160 "Religious organizations (8131)" > 9170 "Civic, social, advocacy organizations, and grantmaking and giving services (8132, 8133 > , 8134)" > 9180 "Labor unions (81393)" > 9190 "Business, professional, political, and similar organizations (8139 exc. 81393)" > 9290 "Private households (814)" > 9370 "Executive offices and legislative bodies (92111, 92112, 92114, pt. 92115)" > 9380 "Public finance activities (92113)" > 9390 "Other general government and support (92119)" > 9470 "Justice, public order, and safety activities (922, pt. 92115)" > 9480 "Administration of human resource programs (923)" > 9490 "Administration of environmental quality and housing programs (924, 925)" > 9570 "Administration of economic programs and space research (926, 927)" > 9590 "National security and international affairs (928)" > 9890 "Armed Forces" > 9970 "Problem referral" > 9990 "Uncodable ((Includes Refused or reported Classified))" > 9670 "U. S. Army" > 9680 "U. S. Air Force" > 9690 "U. S. Navy" > 9770 "U. S. Marines" > 9780 "U. S. Coast Guard" > 9790 "U. S. Armed Forces, Branch Not Specified" > 9870 "Military Reserves or National Guard" > ; . *dind02: 2000-; . label values dind02 dind02; . label define dind02 > 1 "Agriculture" > 2 "Forestry, logging, fishing, hunting, and trapping" > 3 "Mining" > 4 "Construction" > 5 "Nonmetallic mineral products" > 6 "Primary metals and fabricated metal products" > 7 "Machinery manufacturing" > 8 "Computer and electronic products" > 9 "Electrical equipment, appliance manufacturing" > 10 "Transportation equipment manufacturing" > 11 "Wood products" > 12 "Furniture and fixtures manufacturing" > 13 "Miscellaneous and not specified manufacturing" > 14 "Food manufacturing" > 15 "Beverage and tobacco products" > 16 "Textile, apparel, and leather manufacturing" > 17 "Paper and printing" > 18 "Petroleum and coal products" > 19 "Chemical manufacturing" > 20 "Plastics and rubber products" > 21 "Wholesale trade" > 22 "Retail trade" > 23 "Transportation and warehousing" > 24 "Utilities" > 25 "Publishing industries (except internet)" > 26 "Motion picture and sound recording industries" > 27 "Broadcasting (except internet)" > 28 "Internet publishing and broadcasting" > 29 "Telecommunications" > 30 "Internet service providers and data processing services" > 31 "Other information services" > 32 "Finance" > 33 "Insurance" > 34 "Real Estate" > 35 "Rental and leasing services" > 36 "Professional and Technical services" > 37 "Management of companies and enterprises" > 38 "Administrative and support services" > 39 "Waste management and remediation services" > 40 "Educational services" > 41 "Hospitals" > 42 "Health care services , except hospitals" > 43 "Social assistance" > 44 "Arts, entertainment, and recreation" > 45 "Accomodation" > 46 "Food services and drinking places" > 47 "Repair and maintenance" > 48 "Personal and laundry services" > 49 "Membership associations and organizations" > 50 "Private households" > 51 "Public Administration" > 52 "Armed forces" > ; . * occ2011: 2011-; . label values occ2011 occ2011l ; . label define occ2011l > 10 "Chief executives 11-1011" > 20 "General and operations managers 11-1021" > 30 "Legislators 11-1031" > 40 "Advertising and promotions managers 11-2011" > 50 "Marketing and sales managers 11-2020" > 60 "Public relations managers 11-2031" > 100 "Administrative services managers 11-3011" > 110 "Computer and information systems managers 11-3021" > 120 "Financial managers 11-3031" > 135 "Compensation and benefits managers 11-3111" > 136 "Human Resources Managers 11-3121" > 137 "Training and Development Managers 11-3131" > 140 "Industrial production managers 11-3051" > 150 "Purchasing managers 11-3061" > 160 "Transportation, storage, and distribution managers 11-3071" > 205 "Farmers, Ranchers, and other Agricultural Managers 11-9013" > 220 "Construction managers 11-9021" > 230 "Education administrators 11-9030" > 300 "Engineering managers 11-9041" > 310 "Food service managers 11-9051" > 325 "Funeral Service Managers 11-9061" > 330 "Gaming managers 11-9071" > 340 "Lodging managers 11-9081" > 350 "Medical and health services managers 11-9111" > 360 "Natural sciences managers 11-9121" > 400 "Postmasters and mail superintendents 11-9131" > 410 "Property, real estate, and community association managers 11-9141" > 420 "Social and community service managers 11-9151" > 425 "Emergency Management Directors 11-9161" > 430 "Managers, all other 11-9199" > 500 "Agents and business managers of artists, performers, and athletes 13-1011" > 510 "Purchasing agents and buyers, farm products 13-1021" > 520 "Wholesale and retail buyers, except farm products 13-1022" > 530 "Purchasing agents, except wholesale, retail, and farm products 13-1023" > 540 "Claims adjusters, appraisers, examiners, and investigators 13-1030" > 565 "Compliance Officers 13-1041" > 600 "Cost estimators 13-1051" > 630 "Human resources workers 13-1070" > 640 "Compensation, benefits, and job analysis specialists 13-1141" > 650 "Training and development specialists 13-1151" > 700 "Logisticians 13-1081" > 710 "Management analysts 13-1111" > 725 "Meeting, convention, and event planners 13-1121" > 726 "Fundraisers 13-1131" > 735 "Market research analysts and marketing specialists 13-1161" > 740 "Business operations specialists, all other 13-1199" > 800 "Accountants and auditors 13-2011" > 810 "Appraisers and assessors of real estate 13-2021" > 820 "Budget analysts 13-2031" > 830 "Credit analysts 13-2041" > 840 "Financial analysts 13-2051" > 850 "Personal financial advisors 13-2052" > 860 "Insurance underwriters 13-2053" > 900 "Financial examiners 13-2061" > 910 "Loan counselors and officers 13-2070" > 930 "Tax examiners, collectors, and revenue agents 13-2081" > 940 "Tax preparers 13-2082" > 950 "Financial specialists, all other 13-2099" > 1000 "Computer scientists and systems analysts 15-10XX" > 1005 "Computer and information research scientists 15-1111" > 1006 "Computer systems analysts 15-1121" > 1007 "Information security analysts 15-1122" > 1010 "Computer programmers 15-1131" > 1020 "Software developers, applications and systems software 15-113X" > 1030 "Web developers 15-1134" > 1050 "Computer support specialists 15-1150" > 1060 "Database administrators 15-1141" > 1105 "Network and computer systems administrators 15-1142" > 1106 "Computer network architects 15-1143" > 1107 "Computer occupations, all other 15-1199" > 1200 "Actuaries 15-2011" > 1210 "Mathematicians 15-2021" > 1220 "Operations research analysts 15-2031" > 1230 "Statisticians 15-2041" > 1240 "Miscellaneous mathematical science occupations 15-2090" > 1300 "Architects, except naval 17-1010" > 1310 "Surveyors, cartographers, and photogrammetrists 17-1020" > 1320 "Aerospace engineers 17-2011" > 1330 "Agricultural engineers 17-2021" > 1340 "Biomedical engineers 17-2031" > 1350 "Chemical engineers 17-2041" > 1360 "Civil engineers 17-2051" > 1400 "Computer hardware engineers 17-2061" > 1410 "Electrical and electronic engineers 17-2070" > 1420 "Environmental engineers 17-2081" > 1430 "Industrial engineers, including health and safety 17-2110" > 1440 "Marine engineers and naval architects 17-2121" > 1450 "Materials engineers 17-2131" > 1460 "Mechanical engineers 17-2141" > 1500 "Mining and geological engineers, including mining safety engineers 17-2151" > 1510 "Nuclear engineers 17-2161" > 1520 "Petroleum engineers 17-2171" > 1530 "Engineers, all other 17-2199" > 1540 "Drafters 17-3010" > 1550 "Engineering technicians, except drafters 17-3020" > 1560 "Surveying and mapping technicians 17-3031" > 1600 "Agricultural and food scientists 19-1010" > 1610 "Biological scientists 19-1020" > 1640 "Conservation scientists and foresters 19-1030" > 1650 "Medical scientists 19-1040" > 1660 "Life Scientists, all other 16-1099" > 1700 "Astronomers and physicists 19-2010" > 1710 "Atmospheric and space scientists 19-2021" > 1720 "Chemists and materials scientists 19-2030" > 1740 "Environmental scientists and geoscientists 19-2040" > 1760 "Physical scientists, all other 19-2099" > 1800 "Economists 19-3011" > 1815 "Survey Researchers 19-3022" > 1820 "Psychologists 19-3030" > 1830 "Sociologists 19-3041" > 1840 "Urban and regional planners 19-3051" > 1860 "Miscellaneous social scientists and related workers 19-3090" > 1900 "Agricultural and food science technicians 19-4011" > 1910 "Biological technicians 19-4021" > 1920 "Chemical technicians 19-4031" > 1930 "Geological and petroleum technicians 19-4041" > 1940 "Nuclear technicians 19-4051" > 1950 "Social science research assistants 19-4061" > 1965 "Miscellaneous life, physical, and social science technicians 19-4090" > 2000 "Counselors 21-1010" > 2010 "Social workers 21-1020" > 2015 "Probation Officers and Correctional Treatment Specialists 21-1092" > 2016 "Social and Human Service Assistants 21-1093" > 2025 "Miscellaneous community and social service specialists, 21-109X" > 2040 "Clergy 21-2011" > 2050 "Directors, religious activities and education 21-2021" > 2060 "Religious workers, all other 21-2099" > 2100 "Lawyers, Judges, magistrates, and other judicial workers 23-1011" > 2105 "Judicial Law Clerks 23-1012" > 2110 "Judges, Magistrates, and Other Judicial Workers 23-1020" > 2145 "Paralegals and Legal Assistants 23-2011" > 2160 "Miscellaneous Legal Support Workers 23-2090" > 2200 "Postsecondary teachers 25-1000" > 2300 "Preschool and kindergarten teachers 25-2010" > 2310 "Elementary and middle school teachers 25-2020" > 2320 "Secondary school teachers 25-2030" > 2330 "Special education teachers 25-2050" > 2340 "Other teachers and instructors 25-3000" > 2400 "Archivists, curators, and museum technicians 25-4010" > 2430 "Librarians 25-4021" > 2440 "Library technicians 25-4031" > 2540 "Teacher assistants 25-9041" > 2550 "Other education, training, and library workers 25-90XX" > 2600 "Artists and related workers 27-1010" > 2630 "Designers 27-1020" > 2700 "Actors 27-2011" > 2710 "Producers and directors 27-2012" > 2720 "Athletes, coaches, umpires, and related workers 27-2020" > 2740 "Dancers and choreographers 27-2030" > 2750 "Musicians, singers, and related workers 27-2040" > 2760 "Entertainers and performers, sports and related workers, all other 27-2099" > 2800 "Announcers 27-3010" > 2810 "News analysts, reporters and correspondents 27-3020" > 2825 "Public Relations Specialists 27-3031" > 2830 "Editors 27-3041" > 2840 "Technical writers 27-3042" > 2850 "Writers and authors 27-3043" > 2860 "Miscellaneous media and communication workers 27-3090" > 2900 "Broadcast and sound engineering technicians and radio operators 27-4010" > 2910 "Photographers 27-4021" > 2920 "Television, video, and motion picture camera operators and editors 27-4030" > 2960 "Media and communication equipment workers, all other 27-4099" > 3000 "Chiropractors 29-1011" > 3010 "Dentists 29-1020" > 3030 "Dietitians and nutritionists 29-1031" > 3040 "Optometrists 29-1041" > 3050 "Pharmacists 29-1051" > 3060 "Physicians and surgeons 29-1060" > 3110 "Physician assistants 29-1071" > 3120 "Podiatrists 29-1081" > 3140 "Audiologists 29-1181" > 3150 "Occupational therapists 29-1122" > 3160 "Physical therapists 29-1123" > 3200 "Radiation therapists 29-1124" > 3210 "Recreational therapists 29-1125" > 3220 "Respiratory therapists 29-1126" > 3230 "Speech-language pathologists 29-1127" > 3235 "Exercise Physiologists 29-1128" > 3245 "Therapists, all other 29-1129" > 3250 "Veterinarians 29-1131" > 3255 "Registered Nurses 29-1141" > 3256 "Nurse Anesthetists 29-1151" > 3257 "Nurse Midwives 29-1161" > 3258 "Nurse Practitioners 29-1171" > 3260 "Health diagnosing and treating practitioners, all other 29-1199" > 3300 "Clinical laboratory technologists and technicians 29-2010" > 3310 "Dental hygienists 29-2021" > 3320 "Diagnostic related technologists and technicians 29-2030" > 3400 "Emergency medical technicians and paramedics 29-2041" > 3420 "Health Practitioner Support Technologists and Technicians 29-2050" > 3500 "Licensed practical and licensed vocational nurses 29-2061" > 3510 "Medical records and health information technicians 29-2071" > 3520 "Opticians, dispensing 29-2081" > 3535 "Miscellaneous Health Technologists and Technicians 29-2090" > 3540 "Other healthcare practitioners and technical occupations 29-9000" > 3600 "Nursing, psychiatric, and home health aides 31-1010" > 3610 "Occupational therapist assistants and aides 31-2010" > 3620 "Physical therapist assistants and aides 31-2020" > 3630 "Massage therapists 31-9011" > 3640 "Dental assistants 31-9091" > 3645 "Medical Assistants 31-9092" > 3646 "Medical Transcriptionists 31-9094" > 3647 "Pharmacy Aides 31-9095" > 3648 "Veterinary Assistants and Laboratory Animal Caretakers 31-9096" > 3649 "Phlebotomists 31-9097" > 3655 "Miscellaneous Healthcare Support Occupations, Including 31-909X" > 3700 "First-line supervisors/managers of correctional officers 33-1011" > 3710 "First-line supervisors/managers of police and detectives 33-1012" > 3720 "First-line supervisors/managers of fire fighting and prevention workers 33-1021" > 3730 "Supervisors, protective service workers, all other 33-1099" > 3740 "Fire fighters 33-2011" > 3750 "Fire inspectors 33-2020" > 3800 "Bailiffs, correctional officers, and jailers 33-3010" > 3820 "Detectives and criminal investigators 33-3021" > 3830 "Fish and game wardens 33-3031" > 3840 "Parking enforcement workers 33-3041" > 3850 "Police and sheriff's patrol officers 33-3051" > 3860 "Transit and railroad police 33-3052" > 3900 "Animal control workers 33-9011" > 3910 "Private detectives and investigators 33-9021" > 3930 "Security Guards and Gaming Surveillance Officers 33-9030" > 3940 "Crossing guards 33-9091" > 3945 "Transportation Security Screeners 33-9093" > 3955 "Lifeguards and Other Recreational, and all Other Protective Service Workers 33-909X" > 4000 "Chefs and head cooks 35-1011" > 4010 "First-line supervisors/managers of food preparation and serving workers 35-1012" > 4020 "Cooks 35-2010" > 4030 "Food preparation workers 35-2021" > 4040 "Bartenders 35-3011" > 4050 "Combined food preparation and serving workers, including fast food 35-3021" > 4060 "Counter attendants, cafeteria, food concession, and coffee shop 35-3022" > 4110 "Waiters and waitresses 35-3031" > 4120 "Food servers, nonrestaurant 35-3041" > 4130 "Dining room and cafeteria attendants and bartender helpers 35-9011" > 4140 "Dishwashers 35-9021" > 4150 "Hosts and hostesses, restaurant, lounge, and coffee shop 35-9031" > 4160 "Food preparation and serving related workers, all other 35-9099" > 4200 "First-line supervisors/managers of housekeeping and janitorial workers 37-1011" > 4210 "First-line supervisors/managers of landscaping, lawn service, and groundskeeping worke > rs 37-1012" > 4220 "Janitors and building cleaners 31-201X" > 4230 "Maids and housekeeping cleaners 37-2012" > 4240 "Pest control workers 37-2021" > 4250 "Grounds maintenance workers 37-3010" > 4300 "First-line supervisors/managers of gaming workers 39-1010" > 4320 "First-line supervisors/managers of personal service workers 39-1021" > 4340 "Animal trainers 39-2011" > 4350 "Nonfarm animal caretakers 39-2021" > 4400 "Gaming services workers 39-3010" > 4410 "Motion picture projectionists 39-3021" > 4420 "Ushers, lobby attendants, and ticket takers 39-3031" > 4430 "Miscellaneous entertainment attendants and related workers 39-3090" > 4460 "Funeral service workers 39-40XX" > 4465 "Morticians, Undertakers, and Funeral Directors 39-4031" > 4500 "Barbers 39-5011" > 4510 "Hairdressers, hairstylists, and cosmetologists 39-5012" > 4520 "Miscellaneous personal appearance workers 39-5090" > 4530 "Baggage porters, bellhops, and concierges 39-6010" > 4540 "Tour and travel guides 39-7010" > 4600 "Child care workers 39-9011" > 4610 "Personal and home care aides 39-9021" > 4620 "Recreation and fitness workers 39-9030" > 4640 "Residential advisors 39-9041" > 4650 "Personal care and service workers, all other 39-9099" > 4700 "First-line supervisors/managers of retail sales workers 41-1011" > 4710 "First-line supervisors/managers of non-retail sales workers 41-1012" > 4720 "Cashiers 41-2010" > 4740 "Counter and rental clerks 41-2021" > 4750 "Parts salespersons 41-2022" > 4760 "Retail salespersons 41-2031" > 4800 "Advertising sales agents 41-3011" > 4810 "Insurance sales agents 41-3021" > 4820 "Securities, commodities, and financial services sales agents 41-3031" > 4830 "Travel agents 41-3041" > 4840 "Sales representatives, services, all other 41-3099" > 4850 "Sales representatives, wholesale and manufacturing 41-4010" > 4900 "Models, demonstrators, and product promoters 41-9010" > 4920 "Real estate brokers and sales agents 41-9020" > 4930 "Sales engineers 41-9031" > 4940 "Telemarketers 41-9041" > 4950 "Door-to-door sales workers, news and street vendors, and related workers 41-9091" > 4965 "Sales and Related Workers, all other 41-9099" > 5000 "First-line supervisors/managers of office and administrative support workers 43-1011" > 5010 "Switchboard operators, including answering service 43-2011" > 5020 "Telephone operators 43-2021" > 5030 "Communications equipment operators, all other 43-2099" > 5100 "Bill and account collectors 43-3011" > 5110 "Billing and posting clerks and machine operators 43-3021" > 5120 "Bookkeeping, accounting, and auditing clerks 43-3031" > 5130 "Gaming cage workers 43-3041" > 5140 "Payroll and timekeeping clerks 43-3051" > 5150 "Procurement clerks 43-3061" > 5160 "Tellers 43-3071" > 5165 "Financial Clerks, all other 43-3099" > 5200 "Brokerage clerks 43-4011" > 5210 "Correspondence clerks 43-4021" > 5220 "Court, municipal, and license clerks 43-4031" > 5230 "Credit authorizers, checkers, and clerks 43-4041" > 5240 "Customer service representatives 43-4051" > 5250 "Eligibility interviewers, government programs 43-4061" > 5260 "File Clerks 43-4071" > 5300 "Hotel, motel, and resort desk clerks 43-4081" > 5310 "Interviewers, except eligibility and loan 43-4111" > 5320 "Library assistants, clerical 43-4121" > 5330 "Loan interviewers and clerks 43-4131" > 5340 "New accounts clerks 43-4141" > 5350 "Order clerks 43-4151" > 5360 "Human resources assistants, except payroll and timekeeping 43-4161" > 5400 "Receptionists and information clerks 43-4171" > 5410 "Reservation and transportation ticket agents and travel clerks 43-4181" > 5420 "Information and record clerks, all other 43-4199" > 5500 "Cargo and freight agents 43-5011" > 5510 "Couriers and messengers 43-5021" > 5520 "Dispatchers 43-5030" > 5530 "Meter readers, utilities 43-5041" > 5540 "Postal service clerks 43-5051" > 5550 "Postal service mail carriers 43-5052" > 5560 "Postal service mail sorters, processors, and processing machine operators 43-5053" > 5600 "Production, planning, and expediting clerks 43-5061" > 5610 "Shipping, receiving, and traffic clerks 43-5071" > 5620 "Stock clerks and order fillers 43-5081" > 5630 "Weighers, measurers, checkers, and samplers, recordkeeping 43-5111" > 5700 "Secretaries and administrative assistants 43-6010" > 5800 "Computer operators 43-9011" > 5810 "Data entry keyers 43-9021" > 5820 "Word processors and typists 43-9022" > 5830 "Desktop publishers 43-9031" > 5840 "Insurance claims and policy processing clerks 43-9041" > 5850 "Mail clerks and mail machine operators, except postal service 43-9051" > 5860 "Office clerks, general 43-9061" > 5900 "Office machine operators, except computer 43-9071" > 5910 "Proofreaders and copy markers 43-9081" > 5920 "Statistical assistants 43-9111" > 5940 "Office and Administrative Support Workers, all other 43-9199" > 6005 "First-line supervisors of farming, fishing, and forestry workers 45-1011" > 6010 "Agricultural inspectors 45-2011" > 6020 "Animal breeders 45-2021" > 6040 "Graders and sorters, agricultural products 45-2041" > 6050 "Miscellaneous agricultural workers 45-2090" > 6100 "Fishers and related fishing workers 45-3011" > 6110 "Hunters and trappers 45-3021" > 6120 "Forest and conservation workers 45-4011" > 6130 "Logging workers 45-4020" > 6200 "First-line supervisors/managers of construction trades and extraction workers 47-1011" > 6210 "Boilermakers 47-2011" > 6220 "Brickmasons, blockmasons, and stonemasons 47-2020" > 6230 "Carpenters 47-2031" > 6240 "Carpet, floor, and tile installers and finishers 47-2040" > 6250 "Cement masons, concrete finishers, and terrazzo workers 47-2050" > 6260 "Construction laborers 47-2061" > 6300 "Paving, surfacing, and tamping equipment operators 47-2071" > 6310 "Pile-driver operators 47-2072" > 6320 "Operating engineers and other construction equipment operators 47-2073" > 6330 "Drywall installers, ceiling tile installers, and tapers 47-2080" > 6355 "Electricians 47-2111" > 6360 "Glaziers 47-2121" > 6400 "Insulation workers 47-2130" > 6420 "Painters, construction and maintenance 47-2141" > 6430 "Paperhangers 47-2142" > 6440 "Pipelayers, plumbers, pipefitters, and steamfitters 47-2150" > 6460 "Plasterers and stucco masons 47-2161" > 6500 "Reinforcing iron and rebar workers 47-2171" > 6515 "Roofers 47-2181" > 6520 "Sheet metal workers 47-2211" > 6530 "Structural iron and steel workers 47-2221" > 6540 "Solar Photovoltaic Installers 47-2231" > 6600 "Helpers, construction trades 47-3010" > 6660 "Construction and building inspectors 47-4011" > 6700 "Elevator installers and repairers 47-4021" > 6710 "Fence erectors 47-4031" > 6720 "Hazardous materials removal workers 47-4041" > 6730 "Highway maintenance workers 47-4051" > 6740 "Rail-track laying and maintenance equipment operators 47-4061" > 6750 "Septic tank servicers and sewer pipe cleaners 47-4071" > 6765 "Miscellaneous construction and related workers 47-4090" > 6800 "Derrick, rotary drill, and service unit operators, oil, gas, and mining 47-5010" > 6820 "Earth drillers, except oil and gas 47-5021" > 6830 "Explosives workers, ordnance handling experts, and blasters 47-5031" > 6840 "Mining machine operators 47-5040" > 6910 "Roof bolters, mining 47-5061" > 6920 "Roustabouts, oil and gas 47-5071" > 6930 "Helpers--extraction workers 47-5081" > 6940 "Other extraction workers 47-50XX" > 7000 "First-line supervisors/managers of mechanics, installers, and repairers 49-1011" > 7010 "Computer, automated teller, and office machine repairers 49-2011" > 7020 "Radio and telecommunications equipment installers and repairers 49-2020" > 7030 "Avionics technicians 49-2091" > 7040 "Electric motor, power tool, and related repairers 49-2092" > 7050 "Electrical and electronics installers and repairers, transportation equipment 49-2093" > 7100 "Electrical and electronics repairers, industrial and utility 49-209X" > 7110 "Electronic equipment installers and repairers, motor vehicles 49-2096" > 7120 "Electronic home entertainment equipment installers and repairers 49-2097" > 7130 "Security and fire alarm systems installers 49-2098" > 7140 "Aircraft mechanics and service technicians 49-3011" > 7150 "Automotive body and related repairers 49-3021" > 7160 "Automotive glass installers and repairers 49-3022" > 7200 "Automotive service technicians and mechanics 49-3023" > 7210 "Bus and truck mechanics and diesel engine specialists 49-3031" > 7220 "Heavy vehicle and mobile equipment service technicians and mechanics 49-3040" > 7240 "Small engine mechanics 49-3050" > 7260 "Miscellaneous vehicle and mobile equipment mechanics, installers, and repairers 49-309 > 0" > 7300 "Control and valve installers and repairers 49-9010" > 7315 "Heating, air conditioning, and refrigeration mechanics and installers 49-9021" > 7320 "Home appliance repairers 49-9031" > 7330 "Industrial and refractory machinery mechanics 49-904X" > 7340 "Maintenance and repair workers, general 49-9071" > 7350 "Maintenance workers, machinery 49-9043" > 7360 "Millwrights 49-9044" > 7410 "Electrical power-line installers and repairers 49-9051" > 7420 "Telecommunications line installers and repairers 49-9052" > 7430 "Precision instrument and equipment repairers 49-9060" > 7440 "Wind Turbine Service Technicians 49-9081" > 7510 "Coin, vending, and amusement machine servicers and repairers 49-9091" > 7520 "Commercial divers 49-9092" > 7540 "Locksmiths and safe repairers 49-9094" > 7550 "Manufactured building and mobile home installers 49-9095" > 7560 "Riggers 49-9096" > 7600 "Signal and track switch repairers 49-9097" > 7610 "Helpers--installation, maintenance, and repair workers 49-9098" > 7630 "Other installation, maintenance, and repair workers 49-909X" > 7700 "First-line supervisors/managers of production and operating workers 51-1011" > 7710 "Aircraft structure, surfaces, rigging, and systems assemblers 51-2011" > 7720 "Electrical, electronics, and electromechanical assemblers 51-2020" > 7730 "Engine and other machine assemblers 51-2031" > 7740 "Structural metal fabricators and fitters 51-2041" > 7750 "Miscellaneous assemblers and fabricators 51-2090" > 7800 "Bakers 51-3011" > 7810 "Butchers and other meat, poultry, and fish processing workers 51-3020" > 7830 "Food and tobacco roasting, baking, and drying machine operators and tenders 51-3091" > 7840 "Food batchmakers 51-3092" > 7850 "Food cooking machine operators and tenders 51-3093" > 7855 "Food Processing Workers, all Other 51-3099" > 7900 "Computer control programmers and operators 51-4010" > 7920 "Extruding and drawing machine setters, operators, and tenders, metal and plastic 51-40 > 21" > 7930 "Forging machine setters, operators, and tenders, metal and plastic 51-4022" > 7940 "Rolling machine setters, operators, and tenders, metal and plastic 51-4023" > 7950 "Cutting, punching, and press machine setters, operators, and tenders, metal and plasti > c 51-4031" > 7960 "Drilling and boring machine tool setters, operators, and tenders, metal and plastic 51 > -4032" > 8000 "Grinding, lapping, polishing, and buffing machine tool setters, operators, and tenders > , metal and plastic 51-4033" > 8010 "Lathe and turning machine tool setters, operators, and tenders, metal and plastic 51-4 > 034" > 8020 "Milling and planing machine setters, operators, and tenders, metal and plastic 51-4035 > " > 8030 "Machinists 51-4041" > 8040 "Metal furnace and kiln operators and tenders 51-4050" > 8060 "Model makers and patternmakers, metal and plastic 51-4060" > 8100 "Molders and molding machine setters, operators, and tenders, metal and plastic 51-4070 > " > 8120 "Multiple machine tool setters, operators, and tenders, metal and plastic 51-4081" > 8130 "Tool and die makers 51-4111" > 8140 "Welding, soldering, and brazing workers 51-4120" > 8150 "Heat treating equipment setters, operators, and tenders, metal and plastic 51-4191" > 8160 "Lay-out workers, metal and plastic 51-4192" > 8200 "Plating and coating machine setters, operators, and tenders, metal and plastic 51-4193 > " > 8210 "Tool grinders, filers, and sharpeners 51-4194" > 8220 "Metalworkers and plastic workers, all other 51-4199" > 8250 "Prepress technicians and workers 51-5111" > 8255 "Printing Press Operators 51-5112" > 8256 "Print Binding and Finishing Workers 51-5113" > 8300 "Laundry and dry-cleaning workers 51-6011" > 8310 "Pressers, textile, garment, and related materials 51-6021" > 8320 "Sewing machine operators 51-6031" > 8330 "Shoe and leather workers and repairers 51-6041" > 8340 "Shoe machine operators and tenders 51-6042" > 8350 "Tailors, dressmakers, and sewers 51-6050" > 8360 "Textile bleaching and dyeing machine operators and tenders 51-6061" > 8400 "Textile cutting machine setters, operators, and tenders 51-6062" > 8410 "Textile knitting and weaving machine setters, operators, and tenders 51-6063" > 8420 "Textile winding, twisting, and drawing out machine setters, operators, and tenders 51- > 6064" > 8430 "Extruding and forming machine setters, operators, and tenders, synthetic and glass fib > ers 51-6091" > 8440 "Fabric and apparel patternmakers 51-6092" > 8450 "Upholsterers 51-6093" > 8460 "Textile, apparel, and furnishings workers, all other 51-6099" > 8500 "Cabinetmakers and bench carpenters 51-7011" > 8510 "Furniture finishers 51-7021" > 8520 "Model makers and patternmakers, wood 51-7030" > 8530 "Sawing machine setters, operators, and tenders, wood 51-7041" > 8540 "Woodworking machine setters, operators, and tenders, except sawing 51-7042" > 8550 "Woodworkers, all other 51-7099" > 8600 "Power plant operators, distributors, and dispatchers 51-8010" > 8610 "Stationary engineers and boiler operators 51-8021" > 8620 "Water and liquid waste treatment plant and system operators 51-8031" > 8630 "Miscellaneous plant and system operators 51-8090" > 8640 "Chemical processing machine setters, operators, and tenders 51-9010" > 8650 "Crushing, grinding, polishing, mixing, and blending workers 51-9020" > 8710 "Cutting workers 51-9030" > 8720 "Extruding, forming, pressing, and compacting machine setters, operators, and tenders 5 > 1-9041" > 8730 "Furnace, kiln, oven, drier, and kettle operators and tenders 51-9051" > 8740 "Inspectors, testers, sorters, samplers, and weighers 51-9061" > 8750 "Jewelers and precious stone and metal workers 51-9071" > 8760 "Medical, dental, and ophthalmic laboratory technicians 51-9080" > 8800 "Packaging and filling machine operators and tenders 51-9111" > 8810 "Painting workers 51-9120" > 8830 "Photographic process workers and processing machine operators 51-9151" > 8840 "Semiconductor processors 51-9141" > 8850 "Cementing and gluing machine operators and tenders 51-9191" > 8860 "Cleaning, washing, and metal pickling equipment operators and tenders 51-9192" > 8900 "Cooling and freezing equipment operators and tenders 51-9193" > 8910 "Etchers and engravers 51-9194" > 8920 "Molders, shapers, and casters, except metal and plastic 51-9195" > 8930 "Paper goods machine setters, operators, and tenders 51-9196" > 8940 "Tire builders 51-9197" > 8950 "Helpers--production workers 51-9198" > 8965 "Production workers, all other 51-9199" > 9000 "Supervisors, transportation and material moving workers 53-1000" > 9030 "Aircraft pilots and flight engineers 53-2010" > 9040 "Air traffic controllers and airfield operations specialists 53-2020" > 9050 "Flight Attendants 53-2031" > 9110 "Ambulance drivers and attendants, except emergency medical technicians 53-3011" > 9120 "Bus drivers 53-3020" > 9130 "Driver/sales workers and truck drivers 53-3030" > 9140 "Taxi drivers and chauffeurs 53-3041" > 9150 "Motor vehicle operators, all other 53-3099" > 9200 "Locomotive engineers and operators 53-4010" > 9230 "Railroad brake, signal, and switch operators 53-4021" > 9240 "Railroad conductors and yardmasters 53-4031" > 9260 "Subway, streetcar, and other rail transportation workers 53-40XX" > 9300 "Sailors and marine oilers 53-5011" > 9310 "Ship and boat captains and operators 53-5020" > 9330 "Ship engineers 53-5031" > 9340 "Bridge and lock tenders 53-6011" > 9350 "Parking lot attendants 53-6021" > 9360 "Service station attendants 53-6031" > 9410 "Transportation inspectors 53-6051" > 9415 "Transportation Attendants, Except Flight Attendants 53-6061" > 9420 "Other transportation workers 53-60XX" > 9500 "Conveyor operators and tenders 53-7011" > 9510 "Crane and tower operators 53-7021" > 9520 "Dredge, excavating, and loading machine operators 53-7030" > 9560 "Hoist and winch operators 53-7041" > 9600 "Industrial truck and tractor operators 53-7051" > 9610 "Cleaners of vehicles and equipment 53-7061" > 9620 "Laborers and freight, stock, and material movers, hand 53-7062" > 9630 "Machine feeders and offbearers 53-7063" > 9640 "Packers and packagers, hand 53-7064" > 9650 "Pumping station operators 53-7070" > 9720 "Refuse and recyclable material collectors 53-7081" > 9730 "Shuttle car operators 53-7111" > 9740 "Tank car, truck, and ship loaders 53-7121" > 9750 "Material moving workers, all other 53-7199" > 9840 "Armed Forces" > 9970 "Problem referral" > 9990 "Not reported (Includes Refused, Classified, blank and all other noncodable entries)" > 9800 "Military officer special and tactical operations leaders/managers 55-1010" > 9810 "First-line enlisted military supervisors/managers 55-2010" > 9820 "Military enlisted tactical operations and air/weapons specialists and crew members 55- > 3010" > 9830 "Military, rank not specified 99-9999" > ; . * docc00: 2000-; . label values docc00 docc00l ; . label define docc00l > 1 "Management occupations" > 2 "Business and financial operations occupations" > 3 "Computer and mathematical science occupations" > 4 "Architecture and engineering occupations" > 5 "Life, physical, and social science occupations" > 6 "Community and social service occupations" > 7 "Legal occupations" > 8 "Education, training, and library occupations" > 9 "Arts, design, entertainment, sports, and media occupations" > 10 "Healthcare practitioner and technical occupations" > 11 "Healthcare support occupations" > 12 "Protective service occupations" > 13 "Food preparation and serving related occupations" > 14 "Building and grounds cleaning and maintenance occupations" > 15 "Personal care and service occupations" > 16 "Sales and related occupations" > 17 "Office and administrative support occupations" > 18 "Farming, fishing, and forestry occupations" > 19 "Construction and extraction occupations" > 20 "Installation, maintenance, and repair occupations" > 21 "Production occupations" > 22 "Transportation and material moving occupations" > 23 "Armed Forces" > ; . * eligible: 1979:5-; . label values eligible P21L; . label define P21L > 1 "Earnings Eligible For Edit" > 2 "Other" > ; . * reason94: 1994-; . label values reason94 P22L; . label define P22L > 1 "Slack Work/Business Conditions" > 2 "Seasonal Work" > 3 "Job Started Or Ended During Week" > 4 "Vacation/Personal Day" > 5 "Own Illness/Injury/Medical Appointment" > 6 "Holiday (legal Or Religious)" > 7 "Child Care Problems" > 8 "Other Family/Personal Obligations" > 9 "Labor Dispute" > 10 "Weather Affected Job" > 11 "School/Training" > 12 "Civic/Military Duty" > 13 "Other Reason" > ; . * absent94: 1994-; . label values absent94 P23L; . label define P23L > 1 "On Layoff" > 2 "Slack Work/Business Conditions" > 3 "Waiting For A New Job To Begin" > 4 "Vacation/Personal Days" > 5 "Own Illness/Injury/Medical Problems" > 6 "Child Care Problems" > 7 "Other Family/Personal Obligation" > 8 "Maternity/Paternity Leave" > 9 "Labor Dispute" > 10 "Weather Affected Job" > 11 "School/Training" > 12 "Civic/Military Duty" > 13 "Does Not Work In The Business" > 14 "Other (specify)" > ; . *why3594: 1994-; . label values why3594 P3594L; . label define P3594L > 1 "Usu. FT-Slack Work/Business Conditions" > 2 "Usu. FT-Seasonal Work" > 3 "Usu. FT-Job Started/Ended During Week" > 4 "Usu. FT-Vacation/Personal Day" > 5 "Usu. FT-Own Illness/Injury/Medical Appt" > 6 "Usu. FT-Holiday (religious Or Legal)" > 7 "Usu. FT-Child Care Problems" > 8 "Usu. FT-Other Fam/Pers Obligations" > 9 "Usu. FT-Labor Dispute" > 10 "Usu. FT-Weather Affected Job" > 11 "Usu. FT-School/Training" > 12 "Usu. FT-Civic/Military Duty" > 13 "Usu. FT-Other Reason" > 14 "Usu. PT-Slack Work/Business Conditions" > 15 "Usu. PT-Could Only Find PT Work" > 16 "Usu. PT-Seasonal Work" > 17 "Usu. PT-Child Care Problems" > 18 "Usu. PT-Other Fam/Pers Obligations" > 19 "Usu. PT-Health/Medical Limitations" > 20 "Usu. PT-School/Training" > 21 "Usu. PT-Retired/Ss Limit On Earnings" > 22 "Usu. PT-Workweek <35 Hours" > 23 "Usu. PT-Other Reason" > ; . * ftpt94: 1994-; . label values ftpt94 P160L; . label define P160L > 1 "Not In Labor Force" > 2 "FT Hours (35+), Usually FT" > 3 "PT For Economic Reasons, Usually FT" > 4 "PT For Non-Economic Reasons, Usually FT" > 5 "Not At Work, Usually FT" > 6 "PT Hours, Usually PT For Economic Reasons" > 7 "PT hrs, Usually PT For Non-Economic" > 8 "FT Hours, Usually PT For Economic Reas" > 9 "FT hrs, Usually PT For Non-Economic" > 10 "Not at work, Usually Part-Time" > 11 "Unemployed FT" > 12 "Unemployed PT" > ; . * studftpt: 1984-; . label values studftpt P24L; . label define P24L > 1 "Full-time" > 2 "Part-time" > ; . * unionmme: 1983-; . label values unionmme P25L; . label define P25L > 1 "Yes" > 2 "No" > ; . * unioncov: 1983-; . label values unioncov P26L; . label define P26L > 1 "Yes" > 2 "No" > ; . * otc: 1994-; . label values otc yesno; . label define yesno > 1 "Yes" > 2 "No" > ; . * hrhtype: 1984-; . label values hrhtype hrhtype; . label define hrhtype > 0 "Non-interview household" > 1 "Husband/wife primary fam (neither in Armed Forces)" > 2 "Husband/wife primary fam (one/both in Armed Forces)" > 3 "Unmarried civilian male primary fam householder" > 4 "Unmarried civilian female primary fam householder" > 5 "Unmarried primary fam householder in Armed Forces" > 6 "Civilian male primary individual" > 7 "Civilian female primary individual" > 8 "Primary ind HH - reference person in Armed Forces" > 9 "Group quarters with family" > 10 "Group quarters without family" > ; . ** Race 2003-April 2012 has 21 Categories" > ** "Race May 2012 on has 26 Categories" > label values race race21; > label define race21 > 1 "White Only" > 2 "Black Only" > 3 "American Indian, Alaskan Native Only" > 4 "Asian Only" > 5 "Hawaiian/Pacific Islander Only" > 6 "White-Black" > 7 "White-AI" > 8 "White-Asian" > 9 "White-Hawaiian" > 10 "Black-AI" > 11 "Black-Asian" > 12 "Black-HP" > 13 "AI-Asian" > 14 "Asian-HP" > 15 "W-B-AI" > 16 "W-B-A" > 17 "W-AI-A" > 18 "W-A-HP" > 19 "W-B-AI-A" > 20 "2 or 3 Races" > 21 "4 or 5 Races" > > ; end of do-file (saving in Stata 12 format, which Stata 11 can read) file /homes/data/morg/annual/morg11.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+--------------------------------------------------------- hhid | 0 intmonth | 318,334 6.502686 3.456309 1 12 hurespli | 318,302 1.432994 .808356 0 15 hrhtype | 318,334 2.674942 2.26281 1 10 minsamp | 318,334 6.001005 2.000003 4 8 -------------+--------------------------------------------------------- hrlonglk | 318,334 1.992392 .1231214 0 2 hrsample | 0 hrhhid2 | 0 serial | 0 hhnum | 318,334 1.047723 .2264846 1 5 -------------+--------------------------------------------------------- state | 318,334 53.91662 26.42134 11 95 stfips | 318,334 27.9508 15.88828 1 56 cbsafips | 318,334 25746.01 21169.05 0 79600 county | 318,334 28.81947 67.29321 0 810 centcity | 258,631 1.965112 .7349785 1 3 -------------+--------------------------------------------------------- smsastat | 315,708 1.207473 .4054981 1 2 icntcity | 26,515 1.482293 1.046704 1 7 smsa04 | 318,334 3.575207 2.574205 0 7 relref95 | 318,334 3.140503 3.192594 1 18 age | 318,334 46.26341 18.31576 16 85 -------------+--------------------------------------------------------- spouse | 165,198 1.585861 .710647 1 15 sex | 318,334 1.522363 .4995004 1 2 grade92 | 318,334 40.11653 2.750189 31 46 race | 318,334 1.402272 1.266108 1 21 ethnic | 36,993 2.003271 1.402395 1 5 -------------+--------------------------------------------------------- lineno | 318,334 1.763148 1.053488 1 16 famnum | 318,334 .8015606 .4732797 0 4 pfamrel | 318,334 1.375769 1.070597 0 4 marital | 318,334 3.417967 2.652354 1 7 prpertyp | 318,334 2.003952 .0627393 2 3 -------------+--------------------------------------------------------- penatvty | 318,334 86.84515 80.27001 57 555 pemntvty | 318,334 95.99081 88.73299 57 555 pefntvty | 318,334 96.15209 88.92279 57 555 prcitshp | 318,334 1.486599 1.214513 1 5 prcitflg | 318,334 .1586258 1.873614 0 41 -------------+--------------------------------------------------------- peinusyr | 318,334 1.800131 4.901669 0 21 selfproxy | 313,693 1.492434 .5062042 1 3 lfsr94 | 317,076 2.925453 2.374158 1 7 absent94 | 6,825 6.390623 3.619923 4 14 uhourse | 172,597 38.45974 11.36026 0 99 -------------+--------------------------------------------------------- reason94 | 13,854 5.0288 3.022229 1 13 hourslw | 180,184 38.23209 13.37208 1 99 laydur | 1,681 8.74539 11.28972 1 52 dwrsn | 6,765 6.676127 3.564009 1 11 why3594 | 48,414 14.74904 6.821853 1 23 -------------+--------------------------------------------------------- prunedur | 16,504 35.75721 36.15335 0 119 untype | 16,504 3.226006 1.61082 1 6 ftpt94 | 317,076 2.825729 2.70853 1 12 class94 | 210,180 4.099401 1.172943 1 8 agri | 210,180 .0207061 .1423988 0 1 -------------+--------------------------------------------------------- eligible | 318,334 1.477722 .4995042 1 2 otc | 166,259 1.86278 .3440801 1 2 ernpdh2 | 92,699 1.739145 .4391034 1 2 paidhre | 166,259 1.405145 .4909216 1 2 earnhre | 98,867 1562.456 933.1273 40 9999 -------------+--------------------------------------------------------- earnwke | 166,259 821.5108 618.5495 0 2884.61 unionmme | 166,259 1.880831 .3239888 1 2 unioncov | 146,446 1.985298 .1203562 1 2 schenr | 46,093 1.444666 .4969341 1 2 studftpt | 25,597 1.075634 .2644166 1 2 -------------+--------------------------------------------------------- schlvl | 25,597 1.499629 .5000096 1 2 earnwt | 318,334 9032.685 4900.622 0 43175.19 weight | 318,334 2258.171 1219.25 0 10830.38 chldpres | 318,334 1.362151 2.82675 0 15 ownchild | 318,334 .5017466 .9653627 0 12 -------------+--------------------------------------------------------- I25d | 166,259 .3375276 .4728679 0 1 I25c | 98,900 .368999 .4825361 0 1 I25a | 318,334 .3795353 3.71887 0 43 I25b | 318,334 3.801378 12.03497 0 42 qstnum | 0 -------------+--------------------------------------------------------- occurnum | 0 ged | 95,353 1.093442 .2910527 1 2 gedhigr | 8,910 6.396857 1.304676 1 8 yrcoll | 87,380 2.732296 1.018207 1 5 grprof | 56,655 1.708746 .4543443 1 2 -------------+--------------------------------------------------------- gr6cor | 16,501 1.282892 .450418 1 2 ms123 | 22,211 2.196929 .5670937 1 3 cmpwgt | 318,334 2258.297 1220.594 0 10698.62 ind02 | 210,180 6275.202 2692.162 170 9890 occ2011 | 210,180 4209.431 2551.831 10 9840 -------------+--------------------------------------------------------- occ002 | 318,334 115.8024 757.8588 -1 9750 vet1 | 29,284 4.09063 1.774574 1 9 vet2 | 5,380 3.742751 1.663781 1 9 vet3 | 1,367 3.350402 1.633999 1 9 vet4 | 298 4.241611 1.723871 1 9 -------------+--------------------------------------------------------- linedad | 44,592 1.698758 .9383978 1 12 linemom | 32,369 1.145448 .401786 1 3 recnum | 318,334 227228.5 131301.9 1 454769 year | 318,334 2011 0 2011 2011 ym_file | 318,334 617.5027 3.456309 612 623 -------------+--------------------------------------------------------- ym | 318,334 608.4997 6.932747 597 620 ch02 | 318,334 .0698543 .2549017 0 1 ch35 | 318,334 .0758888 .2648206 0 1 ch613 | 318,334 .1522583 .3592717 0 1 ch1417 | 318,334 .0919506 .2889566 0 1 -------------+--------------------------------------------------------- ch05 | 318,334 .1212563 .3264254 0 1 ihigrdc | 318,334 13.35532 2.984274 0 18 docc00 | 210,180 12.52329 6.656422 1 23 dind02 | 210,180 30.99875 14.45639 1 52 . aef2 2012 12 03 11 dct_name aef03.dbd raw_name=../raw/morg12 (0 observations deleted) obs 452317 # of persons with age<=15 135909 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 51,644 11.42 11.42 0 | 4,235 0.94 12.35 1 | 4,794 1.06 13.41 2 | 4,990 1.10 14.52 3 | 5,173 1.14 15.66 4 | 5,360 1.19 16.85 5 | 5,545 1.23 18.07 6 | 5,434 1.20 19.27 7 | 5,331 1.18 20.45 8 | 5,465 1.21 21.66 9 | 5,412 1.20 22.86 10 | 5,388 1.19 24.05 11 | 5,494 1.21 25.26 12 | 5,362 1.19 26.45 13 | 5,448 1.20 27.65 14 | 5,399 1.19 28.85 15 | 5,435 1.20 30.05 16 | 5,522 1.22 31.27 17 | 5,386 1.19 32.46 18 | 5,209 1.15 33.61 19 | 4,805 1.06 34.67 20 | 4,696 1.04 35.71 21 | 5,033 1.11 36.82 22 | 4,879 1.08 37.90 23 | 4,741 1.05 38.95 24 | 4,773 1.06 40.01 25 | 5,006 1.11 41.11 26 | 4,978 1.10 42.21 27 | 5,093 1.13 43.34 28 | 5,241 1.16 44.50 29 | 5,216 1.15 45.65 30 | 5,349 1.18 46.83 31 | 5,161 1.14 47.97 32 | 5,317 1.18 49.15 33 | 4,946 1.09 50.24 34 | 5,179 1.14 51.39 35 | 5,020 1.11 52.50 36 | 4,863 1.08 53.57 37 | 4,796 1.06 54.63 38 | 4,839 1.07 55.70 39 | 4,760 1.05 56.76 40 | 5,286 1.17 57.92 41 | 5,622 1.24 59.17 42 | 5,650 1.25 60.42 43 | 5,392 1.19 61.61 44 | 5,164 1.14 62.75 45 | 5,234 1.16 63.91 46 | 5,273 1.17 65.07 47 | 5,645 1.25 66.32 48 | 5,861 1.30 67.62 49 | 5,792 1.28 68.90 50 | 5,966 1.32 70.22 51 | 6,305 1.39 71.61 52 | 5,900 1.30 72.92 53 | 5,894 1.30 74.22 54 | 5,765 1.27 75.49 55 | 5,911 1.31 76.80 56 | 5,811 1.28 78.08 57 | 5,671 1.25 79.34 58 | 5,432 1.20 80.54 59 | 5,312 1.17 81.71 60 | 5,111 1.13 82.84 61 | 4,990 1.10 83.95 62 | 4,718 1.04 84.99 63 | 4,671 1.03 86.02 64 | 4,708 1.04 87.06 65 | 4,718 1.04 88.11 66 | 3,828 0.85 88.95 67 | 3,491 0.77 89.72 68 | 3,470 0.77 90.49 69 | 3,492 0.77 91.26 70 | 3,211 0.71 91.97 71 | 2,946 0.65 92.62 72 | 2,701 0.60 93.22 73 | 2,539 0.56 93.78 74 | 2,415 0.53 94.32 75 | 2,258 0.50 94.82 76 | 2,301 0.51 95.32 77 | 2,144 0.47 95.80 78 | 1,987 0.44 96.24 79 | 1,907 0.42 96.66 80 | 7,925 1.75 98.41 85 | 7,183 1.59 100.00 ------------+----------------------------------- Total | 452,317 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 51,644 38.00 38.00 0 | 4,235 3.12 41.12 1 | 4,794 3.53 44.64 2 | 4,990 3.67 48.31 3 | 5,173 3.81 52.12 4 | 5,360 3.94 56.06 5 | 5,545 4.08 60.14 6 | 5,434 4.00 64.14 7 | 5,331 3.92 68.06 8 | 5,465 4.02 72.09 9 | 5,412 3.98 76.07 10 | 5,388 3.96 80.03 11 | 5,494 4.04 84.07 12 | 5,362 3.95 88.02 13 | 5,448 4.01 92.03 14 | 5,399 3.97 96.00 15 | 5,435 4.00 100.00 ------------+----------------------------------- Total | 135,909 100.00 (135,909 observations deleted) (0 observations deleted) obs 316408 after keeping age>15&age!=. infile successful no observations (18 real changes made, 18 to missing) (272,451 real changes made, 272,451 to missing) (284,412 real changes made, 284,412 to missing) (0 real changes made) (0 real changes made) (158,074 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (158,334 real changes made) Geography (127,083 real changes made) dropping cmsacode msafips smsa93 smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (2,607 real changes made, 2,607 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (59,230 real changes made, 59,230 to missing) (289,584 real changes made, 289,584 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (151,948 real changes made, 151,948 to missing) if 2012 > 1983 & 2012 < 1989 { (0 real changes made) (0 real changes made) (0 real changes made) (ch02: 74899 changes made) (ch35: 84215 changes made) (ch613: 84215 changes made) (ch1417: 84215 changes made) (16,066 real changes made) (0 real changes made) (223,304 real changes made, 223,304 to missing) (307,308 real changes made, 307,308 to missing) (228,949 real changes made, 228,949 to missing) (258,326 real changes made, 258,326 to missing) (299,310 real changes made, 299,310 to missing) (293,628 real changes made, 293,628 to missing) (316,408 missing values generated) (1,055 real changes made) (1,984 real changes made) (3,828 real changes made) (5,932 real changes made) (6,618 real changes made) (10,292 real changes made) (11,992 real changes made) (4,558 real changes made) (47 real changes made) (109 real changes made) (66 real changes made) (524 real changes made) (1,047 real changes made) (2,285 real changes made) (3,266 real changes made) (1,756 real changes made) (84,004 real changes made) (10,678 real changes made) (22,425 real changes made) (38,808 real changes made) (10,025 real changes made) (5,523 real changes made) (40,984 real changes made) (4,657 real changes made) (12,441 real changes made) (1,884 real changes made) (20,896 real changes made) (8,724 real changes made) (222,747 real changes made, 222,747 to missing) (301,735 real changes made, 301,735 to missing) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (279,086 real changes made, 279,086 to missing) (0 real changes made) (287,973 real changes made, 287,973 to missing) (310,906 real changes made, 310,906 to missing) (315,022 real changes made, 315,022 to missing) (316,139 real changes made, 316,139 to missing) Employment (4,307 real changes made, 4,307 to missing) (309,964 real changes made, 309,964 to missing) (150,324 real changes made, 150,324 to missing) Race 2003-April 2012 21 Categories Race May 2012 on 26 Categories (211,139 real changes made, 211,139 to missing) (105,269 real changes made, 105,269 to missing) 2012 Occupation (247,209 real changes made, 247,209 to missing) (177,590 real changes made, 177,590 to missing) (108,391 real changes made, 108,391 to missing) (108,391 real changes made, 108,391 to missing) docc80 ** The renaming is part of the Census reweighting ; docc00 553 generate int docc00=occ2011; 568 572 (247,209 missing values generated) (138,818 real changes made) 577 581 recode docc00 2011 (docc00: 208017 changes made) dind (108,391 missing values generated) (dind02: 208017 changes made) Wages (150,324 real changes made, 150,324 to missing) (0 real changes made) (218,097 real changes made, 218,097 to missing) (0 real changes made) (0 real changes made) (150,324 real changes made) (203,779 real changes made) (108,391 real changes made, 108,391 to missing) (301,735 real changes made, 301,735 to missing) (129,641 real changes made) (150,324 real changes made) (0 real changes made) (129,641 real changes made, 129,641 to missing) (1,244 real changes made, 1,244 to missing) (314,842 real changes made, 314,842 to missing) (218,066 real changes made, 218,066 to missing) (150,324 real changes made, 150,324 to missing) Hours, Unions (303,723 real changes made, 303,723 to missing) (309,392 real changes made, 309,392 to missing) (291,301 real changes made, 291,301 to missing) (271,595 real changes made, 271,595 to missing) (291,301 real changes made, 291,301 to missing) (1,244 real changes made, 1,244 to missing) (136,657 real changes made, 136,657 to missing) (85 real changes made) (14,821 real changes made, 14,821 to missing) (269,912 real changes made, 269,912 to missing) (150,324 real changes made, 150,324 to missing) (169,207 real changes made, 169,207 to missing) variable spouse was int now byte variable hourslw was int now byte variable laydur was int now byte variable ym_file was float now int variable ym was float now int variable ch02 was int now byte variable ch35 was int now byte variable ch613 was int now byte variable ch1417 was int now byte variable ch05 was int now byte variable race21 was float now byte variable race26 was float now byte variable occ2012 was float now int variable docc00 was int now byte variable dind02 was float now byte (7,593,792 bytes saved) . *by Jean Roth Thu Mar 17 2005 14:38:42 . *Please report errors to jroth@nber.org . . * Note: Variable names in Stata are case-sensitive . #delimit ; delimiter now ; . ; . * minsamp: 1979-; . label values minsamp P2L; . label define P2L > 4 "MIS 4" > 8 "MIS 8" > ; . * hrlonglk: 1994-; . label values hrlonglk P3L; . label define P3L > 0 "MIS 1 Or Replacement HH (no" > 2 "MIS 2-4 Or MIS 6-8 (link To" > ; . * intmonth: 1979-; . label values intmonth P4L; . label define P4L > 1 "January" > 2 "February" > 3 "March" > 4 "April" > 5 "May" > 6 "June" > 7 "July" > 8 "August" > 9 "September" > 10 "October" > 11 "November" > 12 "December" > ; . * stfips: 1989-; . label values stfips stfips; . label define stfips > 1 "AL" > 2 "AK" > 4 "AZ" > 5 "AR" > 6 "CA" > 8 "CO" > 9 "CT" > 10 "DE" > 11 "DC" > 12 "FL" > 13 "GA" > 15 "HI" > 16 "ID" > 17 "IL" > 18 "IN" > 19 "IA" > 20 "KS" > 21 "KY" > 22 "LA" > 23 "ME" > 24 "MD" > 25 "MA" > 26 "MI" > 27 "MN" > 28 "MS" > 29 "MO" > 30 "MT" > 31 "NE" > 32 "NV" > 33 "NH" > 34 "NJ" > 35 "NM" > 36 "NY" > 37 "NC" > 38 "ND" > 39 "OH" > 40 "OK" > 41 "OR" > 42 "PA" > 44 "RI" > 45 "SC" > 46 "SD" > 47 "TN" > 48 "TX" > 49 "UT" > 50 "VT" > 51 "VA" > 53 "WA" > 54 "WV" > 55 "WI" > 56 "WY" > ; . * state: 1979-; . label values state P27L; . label define P27L > 11 "ME" > 12 "NH" > 13 "VT" > 14 "MA" > 15 "RI" > 16 "CT" > 21 "NY" > 22 "NJ" > 23 "PA" > 31 "OH" > 32 "IN" > 33 "IL" > 34 "MI" > 35 "WI" > 41 "MN" > 42 "IA" > 43 "MO" > 44 "ND" > 45 "SD" > ; . * penatvty: 2007-; . label values penatvty penatvty; . label define penatvty > 57 "United States" > 60 "American Samoa" > 66 "Guam" > 73 "Puerto Rico" > 78 "U.S. Virgin Islands" > 96 "U.S. Outlying Area" > 100 "Albania" > 102 "Austria" > 103 "Belgium" > 104 "Bulgaria" > 105 "Czechoslovakia" > 106 "Denmark" > 108 "Finland" > 109 "France" > 110 "Germany" > 116 "Greece" > 117 "Hungary" > 119 "Ireland/Eire" > 120 "Italy" > 126 "Holland/Netherlands" > 127 "Norway" > 128 "Poland" > 129 "Portugal" > 130 "Azores" > 132 "Romania" > 134 "Spain" > 136 "Sweden" > 137 "Switzerland" > 138 "United Kingdom/Great Britain" > 139 "England" > 140 "Scotland" > 141 "Wales" > 142 "Northern Ireland" > 147 "Yugoslavia" > 148 "Czech Republic" > 149 "Slovakia" > 150 "Bosnia & Herzegovina" > 151 "Croatia" > 152 "Macedonia" > 154 "Serbia" > 156 "Latvia" > 157 "Lithuania" > 158 "Armenia" > 159 "Azerbaijan" > 160 "Belarus" > 161 "Georgia" > 162 "Moldova" > 163 "Russia" > 164 "Ukraine" > 165 "USSR" > 166 "Europe, not specified" > 167 "Kosovo" > 200 "Afghanistan" > 202 "Bangladesh" > 205 "Myanmar (Burma)" > 206 "Cambodia" > 207 "China" > 208 "Cyprus" > 209 "Hong Kong" > 210 "India" > 211 "Indonesia" > 212 "Iran" > 213 "Iraq" > 214 "Israel" > 215 "Japan" > 216 "Jordan" > 217 "Korea" > 220 "South Korea" > 222 "Kuwait" > 223 "Laos" > 224 "Lebanon" > 226 "Malaysia" > 229 "Nepal" > 231 "Pakistan" > 233 "Philippines" > 235 "Saudi Arabia" > 236 "Singapore" > 238 "Sri Lanka" > 239 "Syria" > 240 "Taiwan" > 242 "Thailand" > 243 "Turkey" > 246 "Uzbekistan" > 247 "Vietnam" > 248 "Yemen" > 249 "Asia, not specified" > 300 "Bermuda" > 301 "Canada" > 303 "Mexico" > 310 "Belize" > 311 "Costa Rica" > 312 "El Salvador" > 313 "Guatemala" > 314 "Honduras" > 315 "Nicaragua" > 316 "Panama" > 318 "Central America" > 321 "Antigua and Barbuda" > 323 "Bahamas" > 324 "Barbados" > 327 "Cuba" > 328 "Dominica" > 329 "Dominican Republic" > 330 "Grenada" > 332 "Haiti" > 333 "Jamaica" > 338 "St. Kitts-Nevis" > 339 "St. Lucia" > 340 "St. Vincent and the Grenadines" > 341 "Trinidad and Tobago" > 343 "West Indes, not specified" > 360 "Argentina" > 361 "Bolivia" > 362 "Brazil" > 363 "Chile" > 364 "Colombia" > 365 "Ecuador" > 368 "Guyana" > 369 "Paraguay" > 370 "Peru" > 372 "Uruguay" > 373 "Venezuela" > 374 "South America, not specified" > 399 "Americas, not specified" > 400 "Algeria" > 407 "Cameroon" > 408 "Cape Verde" > 414 "Egypt" > 416 "Ethiopia" > 417 "Eritrea" > 421 "Ghana" > 427 "Kenya" > 429 "Liberia" > 436 "Morocco" > 440 "Nigeria" > 444 "Senegal" > 447 "Sierra Leone" > 448 "Somalia" > 449 "South Africa" > 451 "Sudan" > 453 "Tanzania" > 457 "Uganda" > 461 "Zimbabwe" > 462 "Africa, not specified" > 501 "Australia" > 508 "Fiji" > 515 "New Zealand" > 523 "Tonga" > 527 "Samoa" > 528 "Oceania, not specified" > 555 "Elsewhere" > ; . * pemntvty: 2007-; . label values pemntvty penatvty; . * pefntvty: 2007-; . label values pefntvty penatvty; . * prcitshp: 1994-; . label values prcitshp P16L; . label define P16L > 1 "Native, Born In US" > 2 "Native, Born in PR or US Outlying Area" > 3 "Native, Born Abroad Of US Parent(s)" > 4 "Foreign Born, US Cit By Naturalization" > 5 "Foreign Born, Not a US Citizen" > ; . * prcitflg: 1994-; . label values prcitflg P34L; . label define P34L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * meanings of last few codes of peinusyr change every year!!!; . * peinusyr: 2003-; . label values peinusyr P17L; . label define P17L > -1 "Not In Universe (Born In U.S.)" > 0 "Not Foreign Born" > 1 "Before 1950" > 2 "1950-1959" > 3 "1960-1964" > 4 "1965-1969" > 5 "1970-1974" > 6 "1975-1979" > 7 "1980-1981" > 8 "1982-1983" > 9 "1984-1985" > 10 "1986-1987" > 11 "1988-1989" > 12 "1990-1991" > 13 "1992-1995" > 14 "1994-1995" > 15 "1996-1997" > 16 "1998-1999" > 17 "2000-2001" > 18 "2002-2003" > 19 "2004-2005" > 20 "2006-2007" > 21 "2008-2009" > 22 "2010-2012" > ; . * paidhre: 1979-; . label values paidhre P18L; . label define P18L > 1 "Yes" > 2 "No" > ; . * I25a: 1979-; . label values I25a P28L; . label define P28L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * I25b: 1979-; . label values I25b P29L; . label define P29L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * I25c: 1996-; . label values I25c I25c; . label define I25c > 0 "No Components Allocated" > 1 "1 or more components Allocated" > ; . * I25d: 1996-; . label values I25d I25d; . label define I25d > 0 "No Components Allocated" > 1 "1 or more components Allocated" > ; . * class94: 1994-; . label values class94 P19L; . label define P19L > 1 "Government - Federal" > 2 "Government - State" > 3 "Government - Local" > 4 "Private, For Profit" > 5 "Private, Nonprofit" > 6 "Self-Employed, Incorporated" > 7 "Self-Employed, Unincorporated" > 8 "Without Pay" > ; . * lfsr94: 1994-; . label values lfsr94 P20L; . label define P20L > 1 "Employed-At Work" > 2 "Employed-Absent" > 3 "Unemployed-On Layoff" > 4 "Unemployed-Looking" > 5 "Retired-Not In Labor Force" > 6 "Disabled-Not In Labor Force" > 7 "Other-Not In Labor Force" > ; . * ind02: 2000-; . label values ind02 ind02; . label define ind02 > 170 "Crop production (111)" > 180 "Animal production (112)" > 190 "Forestry except logging (1131, 1132)" > 270 "Logging (1133)" > 280 "Fishing, hunting, and trapping (114)" > 290 "Support activities for agriculture and forestry (115)" > 370 "Oil and gas extraction (211)" > 380 "Coal mining (2121)" > 390 "Metal ore mining (2122)" > 470 "Nonmetallic mineral mining and quarrying (2123)" > 480 "Not specified type of mining (Part of 21)" > 490 "Support activities for mining (213)" > 570 "Electric power generation, transmission and distribution (Pt. 2211)" > 580 "Natural gas distribution (Pt.s2212)" > 590 "Electric and gas, and other combinations (Pts. 2211, 2212)" > 670 "Water, steam, air-conditioning, and irrigation systems (22131, 22133)" > 680 "Sewage treatment facilities (22132)" > 690 "Not specified utilities (Part of 22)" > 770 "** Construction (23)" > 1070 "Animal food, grain and oilseed milling (3111, 3112)" > 1080 "Sugar and confectionery products (3113)" > 1090 "Fruit and vegetable preserving and specialty food manufacturing (3114)" > 1170 "Dairy product manufacturing (3115)" > 1180 "Animal slaughtering and processing (3116)" > 1190 "Retail bakeries (311811)" > 1270 "Bakeries, except retail (3118 exc. 311811)" > 1280 "Seafood and other miscellaneous foods, n.e.c. (3117, 3119)" > 1290 "Not specified food industries (Part of 311)" > 1370 "Beverage manufacturing (3121)" > 1390 "Tobacco manufacturing (3122)" > 1470 "Fiber, yarn, and thread mills (3131)" > 1480 "Fabric mills, except knitting (3132 exc. 31324)" > 1490 "Textile and fabric finishing and coating mills (3133)" > 1570 "Carpet and rug mills (31411)" > 1590 "Textile product mills, except carpets and rugs (314 exc. 31411)" > 1670 "Knitting mills (31324, 3151)" > 1680 "Cut and sew apparel manufacturing (3152)" > 1690 "Apparel accessories and other apparel manufacturing (3159)" > 1770 "Footwear manufacturing (3162)" > 1790 "Leather tanning and products, except footwear manufacturing (3161, 3169)" > 1870 "Pulp, paper, and paperboard mills (3221)" > 1880 "Paperboard containers and boxes (32221)" > 1890 "Miscellaneous paper and pulp products (32222,32223, 32229)" > 1990 "Printing and related support activities (3231)" > 2070 "Petroleum refining (32411)" > 2090 "Miscellaneous petroleum and coal products (32419)" > 2170 "Resin, synthetic rubber and fibers, and filaments manufacturing (3252)" > 2180 "Agricultural chemical manufacturing (3253)" > 2190 "Pharmaceutical and medicine manufacturing (3254)" > 2270 "Paint, coating, and adhesive manufacturing B46 (3255)" > 2280 "Soap, cleaning compound, and cosmetics manufacturing (3256)" > 2290 "Industrial and miscellaneous chemicals (3251, 3259)" > 2370 "Plastics product manufacturing (3261)" > 2380 "Tire manufacturing (32621)" > 2390 "Rubber products, except tires, manufacturing (32622, 32629)" > 2470 "Pottery, ceramics, and related products manufacturing (32711)" > 2480 "Structural clay product manufacturing (32712)" > 2490 "Glass and glass product manufacturing (3272)" > 2570 "Cement, concrete, lime, and gypsum product manufacturing (3273, 3274)" > 2590 "Miscellaneous nonmetallic mineral product manufacturing (3279)" > 2670 "Iron and steel mills and steel product manufacturing (3311, 3312)" > 2680 "Aluminum production and processing (3313)" > 2690 "Nonferrous metal, except aluminum, production and processing (3314)" > 2770 "Foundries (3315)" > 2780 "Metal forgings and stampings (3321)" > 2790 "Cutlery and hand tool manufacturing (3322)" > 2870 "Structural metals, and tank and shipping container manufacturing (3323, 3324)" > 2880 "Machine shops; turned product; screw, nut and bolt manufacturing (3327)" > 2890 "Coating, engraving, heat treating and allied activities (3328)" > 2970 "Ordnance (332992 to 332995)" > 2980 "Miscellaneous fabricated metal products manufacturing (3325, 3326, 3329 exc. 332992, 3 > 32993, 332994, 332995)" > 2990 "Not specified metal industries (Part of 331 and 332)" > 3070 "Agricultural implement manufacturing (33311)" > 3080 "Construction, mining and oil field machinery manufacturing (33312, 33313)" > 3090 "Commercial and service industry machinery manufacturing (3333)" > 3170 "Metalworking machinery manufacturing (3335)" > 3180 "Engines, turbines, and power transmission equipment manufacturing (3336)" > 3190 "Machinery manufacturing, n.e.c. (3332, 3334, 3339)" > 3290 "Not specified machinery manufacturing (Part of 333)" > 3360 "Computer and peripheral equipment manufacturing (3341)" > 3370 "Communications, audio, and video equipment manufacturing (3342, 3343)" > 3380 "Navigational, measuring, electromedical, and control instruments manufacturing (3345)" > 3390 "Electronic component and product manufacturing, n.e.c. (3344, 3346)" > 3470 "Household appliance manufacturing (3352)" > 3490 "Electrical lighting, equipment, and supplies manufacturing, n.e.c. (3351, 3353, 3359)" > 3570 "Motor vehicles and motor vehicle equipment manufacturing (3361, 3362, 3363)" > 3580 "Aircraft and parts manufacturing (336411 to 336413)" > 3590 "Aerospace products and parts manufacturing (336414, 336415, 336419)" > 3670 "Railroad rolling stock manufacturing (3365)" > 3680 "Ship and boat building (3366)" > 3690 "Other transportation equipment manufacturing (3369)" > 3770 "Sawmills and wood preservation (3211)" > 3780 "Veneer, plywood, and engineered wood products (3212)" > 3790 "Prefabricated wood buildings and mobile homes (321991, 321992)" > 3870 "Miscellaneous wood products (3219 exc. 321991, 321992)" > 3890 "Furniture and related product manufacturing (337)" > 3960 "Medical equipment and supplies manufacturing (3391)" > 3970 "Toys, amusement, and sporting goods manufacturing (33992, 33993)" > 3980 "Miscellaneous manufacturing, n.e.c. (3399 exc. 33992, 33993)" > 3990 "Not specified manufacturing industries (Part of 31, 32, 33)" > 4070 "** Motor vehicles, parts and supplies, merchant wholesalers (*4231)" > 4080 "** Furniture and home furnishing, merchant wholesalers (*4232)" > 4090 "** Lumber and other construction materials, merchant wholesalers (*4233)" > 4170 "** Professional and commercial equipment and supplies, merchant wholesalers (*4234)" > 4180 "** Metals and minerals, except petroleum, merchant wholesalers (*4235)" > 4190 "** Electrical goods, merchant wholesalers (*4236)" > 4260 "** Hardware, plumbing and heating equipment, and supplies, merchant wholesalers (*4237 > )" > 4270 "** Machinery, equipment, and supplies, merchant wholesalers (*4238)" > 4280 "** Recyclable material, merchant wholesalers (*42393)" > 4290 "** Miscellaneous durable goods, merchant wholesalers (*4239 exc. 42393)" > 4370 "** Paper and paper products, merchant wholesalers (*4241)" > 4380 "** Drugs, sundries, and chemical and allied products, merchant (wholesalerss*4242, 424 > 6)" > 4390 "** Apparel, fabrics, and notions, merchant wholesalers (*4243)" > 4470 "** Groceries and related products, merchant wholesalers (*4244)" > 4480 "** Farm product raw materials, merchant wholesalers (*4245)" > 4490 "** Petroleum and petroleum products, merchant wholesalers (*4247)" > 4560 "** Alcoholic beverages, merchant wholesalers (*4248)" > 4570 "** Farm supplies, merchant wholesalers (*42491)" > 4580 "** Miscellaneous (nondurable goods, merchant wholesalerss*4249 exc. 42491)" > 4585 "*** Wholesale electronic markets, agents and brokers New industry (*4251)" > 4590 "**Not specified wholesale trade (Part of 42)" > 4670 "Automobile dealers (4411)" > 4680 "Other motor vehicle dealers (4412)" > 4690 "Auto parts, accessories, and tire stores (4413)" > 4770 "Furniture and home furnishings stores (442)" > 4780 "Household appliance stores (443111)" > 4790 "Radio, TV, and computer stores (443112, 44312)" > 4870 "Building material and supplies dealers (4441 exc. 44413)" > 4880 "Hardware stores (44413)" > 4890 "Lawn and garden equipment and supplies stores (4442)" > 4970 "Grocery stores (4451)" > 4980 "Specialty food stores (4452)" > 4990 "Beer, wine, and liquor stores (4453)" > 5070 "Pharmacies and drug stores (44611)" > 5080 "Health and personal care, except drug, stores (446 exc. 44611)" > 5090 "Gasoline stations (447)" > 5170 "Clothing and accessories, except shoe, stores (448 exc. 44821, 4483)" > 5180 "Shoe stores (44821)" > 5190 "Jewelry, luggage, and leather goods stores (4483)" > 5270 "Sporting goods, camera, and hobby and toy stores (44313, 45111, 45112)" > 5280 "Sewing, needlework, and piece goods stores (45113)" > 5290 "Music stores (45114, 45122)" > 5370 "Book stores and news dealers (45121)" > 5380 "****Department stores and discount stores (s45211)" > 5390 "Miscellaneous general merchandise stores (4529)" > 5470 "Retail florists (4531)" > 5480 "Office supplies and stationery stores (45321)" > 5490 "Used merchandise stores (4533)" > 5570 "Gift, novelty, and souvenir shops (45322)" > 5580 "Miscellaneous retail stores (4539)" > 5590 "*** Electronic shopping (New industry *454111)" > 5591 "*** Electronic auctions (New industrys*454112)" > 5592 "** Mail order houses (*454113)" > 5670 "Vending machine operators (4542)" > 5680 "Fuel dealers (45431)" > 5690 "Other direct selling establishments (45439)" > 5790 "Not specified retail trade (Part of 44, 45)" > 6070 "Air transportation (481)" > 6080 "Rail transportation (482)" > 6090 "Water transportation (483)" > 6170 "Truck transportation (484)" > 6180 "Bus service and urban transit (4851, 4852, 4854, 4855, 4859)" > 6190 "Taxi and limousine service (4853)" > 6270 "Pipeline transportation (486)" > 6280 "Scenic and sightseeing transportation (487)" > 6290 "Services incidental to transportation (488)" > 6370 "Postal Service (491)" > 6380 "Couriers and messengers (492)" > 6390 "Warehousing and storage (493)" > 6470 "**Newspaper publishers (51111)" > 6480 "**Publishing, except newspapers and software (5111 exc. 51111)" > 6490 "Software publishing (5112)" > 6570 "Motion pictures and video industries (5121)" > 6590 "Sound recording industries (5122)" > 6670 "Radio and television broadcasting and cable (5151, 5152, 5175)" > 6672 "Internet publishing and broadcasting and web search portals (51913)" > 6675 "*** Internet publishing and broadcasting (New industrys*5161)" > 6680 "Wired telecommunications carriers (*5171)" > 6690 "Other telecommunications services (*517 exc. 5171, 5175)" > 6692 "*** Internet service providers New industry (*5181)" > 6695 "**** Data processing, hosting, and related services (*5182)" > 6770 "Libraries and archives (*51912)" > 6780 "Other information services (*5191 exc. 51912)" > 6870 "Banking and related activities (521, 52211,52219)" > 6880 "Savings institutions, including credit unions (52212, 52213)" > 6890 "Non-depository credit and related activities (5222, 5223)" > 6970 "Securities, commodities, funds, trusts, and other financial investments (523, 525)" > 6990 "Insurance carriers and related activities (524)" > 7070 "Real estate (531)" > 7080 "Automotive equipment rental and leasing (5321)" > 7170 "Video tape and disk rental (53223)" > 7180 "Other consumer goods rental (53221, 53222, 53229, 5323)" > 7190 "Commercial, industrial, and other intangible assets rental and leasing (5324, 533)" > 7270 "Legal services (5411)" > 7280 "Accounting, tax preparation, bookkeeping, and payroll services (5412)" > 7290 "Architectural, engineering, and related services (5413)" > 7370 "Specialized design services (5414)" > 7380 "Computer systems design and related services (5415)" > 7390 "Management, scientific, and technical consulting services (5416)" > 7460 "Scientific research and development services (5417)" > 7470 "Advertising and related services (5418)" > 7480 "Veterinary services (54194)" > 7490 "Other professional, scientific, and technical services (5419 exc. 54194)" > 7570 "Management of companies and enterprises (551)" > 7580 "Employment services (5613)" > 7590 "Business support services (5614)" > 7670 "Travel arrangements and reservation services (5615)" > 7680 "Investigation and security services (5616)" > 7690 "** Services to buildings and dwellings (5617 exc. 56173)" > 7770 "Landscaping services (56173)" > 7780 "Other administrative and other support services (5611, 5612, 5619)" > 7790 "Waste management and remediation services (562)" > 7860 "Elementary and secondary schools (6111)" > 7870 "Colleges and universities, including junior colleges (6112, 6113)" > 7880 "Business, technical, and trade schools and training (6114, 6115)" > 7890 "Other schools, instruction, and educational services (6116, 6117)" > 7970 "Offices of physicians (6211)" > 7980 "Offices of dentists (6212)" > 7990 "Offices of chiropractors (62131)" > 8070 "Offices of optometrists (62132)" > 8080 "Offices of other health practitioners (6213 exc. 62131, 62132)" > 8090 "Outpatient care centers (6214)" > 8170 "Home health care services (6216)" > 8180 "Other health care services (6215, 6219)" > 8190 "Hospitals (622)" > 8270 "Nursing care facilities (6231)" > 8290 "Residential care facilities, without nursing (6232, 6233, 6239)" > 8370 "Individual and family services (6241)" > 8380 "Community food and housing, and emergency services (6242)" > 8390 "Vocational rehabilitation services (6243)" > 8470 "Child day care services (6244)" > 8560 "Independent artists, performing arts, spectator sports, and related industries (711)" > 8570 "Museums, art galleries, historical sites, and similar institutions (712)" > 8580 "Bowling centers (71395)" > 8590 "Other amusement, gambling, and recreation industries (713 exc. 71395)" > 8660 "Traveler accommodation (7211)" > 8670 "Recreational vehicle parks and camps, and rooming and boarding houses (7212, 7213)" > 8680 "Restaurants and other food services (722 exc. 7224)" > 8690 "Drinking places, alcoholic beverages (7224)" > 8770 "Automotive repair and maintenance (8111 exc. 811192)" > 8780 "Car washes (811192)" > 8790 "Electronic and precision equipment repair and maintenance (8112)" > 8870 "Commercial and industrial machinery and equipment repair and maintenance (8113)" > 8880 "Personal and household goods repair and maintenance (8114 exc. 81143)" > 8890 "Footwear and leather goods repair (81143)" > 8970 "Barber shops (812111)" > 8980 "Beauty salons (812112)" > 8990 "Nail salons and other personal care services (812113, 81219)" > 9070 "Drycleaning and laundry services (8123)" > 9080 "Funeral homes, cemeteries, and crematories (8122)" > 9090 "Other personal services (8129)" > 9160 "Religious organizations (8131)" > 9170 "Civic, social, advocacy organizations, and grantmaking and giving services (8132, 8133 > , 8134)" > 9180 "Labor unions (81393)" > 9190 "Business, professional, political, and similar organizations (8139 exc. 81393)" > 9290 "Private households (814)" > 9370 "Executive offices and legislative bodies (92111, 92112, 92114, pt. 92115)" > 9380 "Public finance activities (92113)" > 9390 "Other general government and support (92119)" > 9470 "Justice, public order, and safety activities (922, pt. 92115)" > 9480 "Administration of human resource programs (923)" > 9490 "Administration of environmental quality and housing programs (924, 925)" > 9570 "Administration of economic programs and space research (926, 927)" > 9590 "National security and international affairs (928)" > 9890 "Armed Forces" > 9970 "Problem referral" > 9990 "Uncodable ((Includes Refused or reported Classified))" > 9670 "U. S. Army" > 9680 "U. S. Air Force" > 9690 "U. S. Navy" > 9770 "U. S. Marines" > 9780 "U. S. Coast Guard" > 9790 "U. S. Armed Forces, Branch Not Specified" > 9870 "Military Reserves or National Guard" > ; . *dind02: 2000-; . label values dind02 dind02; . label define dind02 > 1 "Agriculture" > 2 "Forestry, logging, fishing, hunting, and trapping" > 3 "Mining" > 4 "Construction" > 5 "Nonmetallic mineral products" > 6 "Primary metals and fabricated metal products" > 7 "Machinery manufacturing" > 8 "Computer and electronic products" > 9 "Electrical equipment, appliance manufacturing" > 10 "Transportation equipment manufacturing" > 11 "Wood products" > 12 "Furniture and fixtures manufacturing" > 13 "Miscellaneous and not specified manufacturing" > 14 "Food manufacturing" > 15 "Beverage and tobacco products" > 16 "Textile, apparel, and leather manufacturing" > 17 "Paper and printing" > 18 "Petroleum and coal products" > 19 "Chemical manufacturing" > 20 "Plastics and rubber products" > 21 "Wholesale trade" > 22 "Retail trade" > 23 "Transportation and warehousing" > 24 "Utilities" > 25 "Publishing industries (except internet)" > 26 "Motion picture and sound recording industries" > 27 "Broadcasting (except internet)" > 28 "Internet publishing and broadcasting" > 29 "Telecommunications" > 30 "Internet service providers and data processing services" > 31 "Other information services" > 32 "Finance" > 33 "Insurance" > 34 "Real Estate" > 35 "Rental and leasing services" > 36 "Professional and Technical services" > 37 "Management of companies and enterprises" > 38 "Administrative and support services" > 39 "Waste management and remediation services" > 40 "Educational services" > 41 "Hospitals" > 42 "Health care services , except hospitals" > 43 "Social assistance" > 44 "Arts, entertainment, and recreation" > 45 "Accomodation" > 46 "Food services and drinking places" > 47 "Repair and maintenance" > 48 "Personal and laundry services" > 49 "Membership associations and organizations" > 50 "Private households" > 51 "Public Administration" > 52 "Armed forces" > ; . * occ2011: 2011-; . label values occ2011 occ2011l ; . label define occ2011l > 10 "Chief executives 11-1011" > 20 "General and operations managers 11-1021" > 30 "Legislators 11-1031" > 40 "Advertising and promotions managers 11-2011" > 50 "Marketing and sales managers 11-2020" > 60 "Public relations managers 11-2031" > 100 "Administrative services managers 11-3011" > 110 "Computer and information systems managers 11-3021" > 120 "Financial managers 11-3031" > 135 "Compensation and benefits managers 11-3111" > 136 "Human Resources Managers 11-3121" > 137 "Training and Development Managers 11-3131" > 140 "Industrial production managers 11-3051" > 150 "Purchasing managers 11-3061" > 160 "Transportation, storage, and distribution managers 11-3071" > 205 "Farmers, Ranchers, and other Agricultural Managers 11-9013" > 220 "Construction managers 11-9021" > 230 "Education administrators 11-9030" > 300 "Engineering managers 11-9041" > 310 "Food service managers 11-9051" > 325 "Funeral Service Managers 11-9061" > 330 "Gaming managers 11-9071" > 340 "Lodging managers 11-9081" > 350 "Medical and health services managers 11-9111" > 360 "Natural sciences managers 11-9121" > 400 "Postmasters and mail superintendents 11-9131" > 410 "Property, real estate, and community association managers 11-9141" > 420 "Social and community service managers 11-9151" > 425 "Emergency Management Directors 11-9161" > 430 "Managers, all other 11-9199" > 500 "Agents and business managers of artists, performers, and athletes 13-1011" > 510 "Purchasing agents and buyers, farm products 13-1021" > 520 "Wholesale and retail buyers, except farm products 13-1022" > 530 "Purchasing agents, except wholesale, retail, and farm products 13-1023" > 540 "Claims adjusters, appraisers, examiners, and investigators 13-1030" > 565 "Compliance Officers 13-1041" > 600 "Cost estimators 13-1051" > 630 "Human resources workers 13-1070" > 640 "Compensation, benefits, and job analysis specialists 13-1141" > 650 "Training and development specialists 13-1151" > 700 "Logisticians 13-1081" > 710 "Management analysts 13-1111" > 725 "Meeting, convention, and event planners 13-1121" > 726 "Fundraisers 13-1131" > 735 "Market research analysts and marketing specialists 13-1161" > 740 "Business operations specialists, all other 13-1199" > 800 "Accountants and auditors 13-2011" > 810 "Appraisers and assessors of real estate 13-2021" > 820 "Budget analysts 13-2031" > 830 "Credit analysts 13-2041" > 840 "Financial analysts 13-2051" > 850 "Personal financial advisors 13-2052" > 860 "Insurance underwriters 13-2053" > 900 "Financial examiners 13-2061" > 910 "Loan counselors and officers 13-2070" > 930 "Tax examiners, collectors, and revenue agents 13-2081" > 940 "Tax preparers 13-2082" > 950 "Financial specialists, all other 13-2099" > 1000 "Computer scientists and systems analysts 15-10XX" > 1005 "Computer and information research scientists 15-1111" > 1006 "Computer systems analysts 15-1121" > 1007 "Information security analysts 15-1122" > 1010 "Computer programmers 15-1131" > 1020 "Software developers, applications and systems software 15-113X" > 1030 "Web developers 15-1134" > 1050 "Computer support specialists 15-1150" > 1060 "Database administrators 15-1141" > 1105 "Network and computer systems administrators 15-1142" > 1106 "Computer network architects 15-1143" > 1107 "Computer occupations, all other 15-1199" > 1200 "Actuaries 15-2011" > 1210 "Mathematicians 15-2021" > 1220 "Operations research analysts 15-2031" > 1230 "Statisticians 15-2041" > 1240 "Miscellaneous mathematical science occupations 15-2090" > 1300 "Architects, except naval 17-1010" > 1310 "Surveyors, cartographers, and photogrammetrists 17-1020" > 1320 "Aerospace engineers 17-2011" > 1330 "Agricultural engineers 17-2021" > 1340 "Biomedical engineers 17-2031" > 1350 "Chemical engineers 17-2041" > 1360 "Civil engineers 17-2051" > 1400 "Computer hardware engineers 17-2061" > 1410 "Electrical and electronic engineers 17-2070" > 1420 "Environmental engineers 17-2081" > 1430 "Industrial engineers, including health and safety 17-2110" > 1440 "Marine engineers and naval architects 17-2121" > 1450 "Materials engineers 17-2131" > 1460 "Mechanical engineers 17-2141" > 1500 "Mining and geological engineers, including mining safety engineers 17-2151" > 1510 "Nuclear engineers 17-2161" > 1520 "Petroleum engineers 17-2171" > 1530 "Engineers, all other 17-2199" > 1540 "Drafters 17-3010" > 1550 "Engineering technicians, except drafters 17-3020" > 1560 "Surveying and mapping technicians 17-3031" > 1600 "Agricultural and food scientists 19-1010" > 1610 "Biological scientists 19-1020" > 1640 "Conservation scientists and foresters 19-1030" > 1650 "Medical scientists 19-1040" > 1660 "Life Scientists, all other 16-1099" > 1700 "Astronomers and physicists 19-2010" > 1710 "Atmospheric and space scientists 19-2021" > 1720 "Chemists and materials scientists 19-2030" > 1740 "Environmental scientists and geoscientists 19-2040" > 1760 "Physical scientists, all other 19-2099" > 1800 "Economists 19-3011" > 1815 "Survey Researchers 19-3022" > 1820 "Psychologists 19-3030" > 1830 "Sociologists 19-3041" > 1840 "Urban and regional planners 19-3051" > 1860 "Miscellaneous social scientists and related workers 19-3090" > 1900 "Agricultural and food science technicians 19-4011" > 1910 "Biological technicians 19-4021" > 1920 "Chemical technicians 19-4031" > 1930 "Geological and petroleum technicians 19-4041" > 1940 "Nuclear technicians 19-4051" > 1950 "Social science research assistants 19-4061" > 1965 "Miscellaneous life, physical, and social science technicians 19-4090" > 2000 "Counselors 21-1010" > 2010 "Social workers 21-1020" > 2015 "Probation Officers and Correctional Treatment Specialists 21-1092" > 2016 "Social and Human Service Assistants 21-1093" > 2025 "Miscellaneous community and social service specialists, 21-109X" > 2040 "Clergy 21-2011" > 2050 "Directors, religious activities and education 21-2021" > 2060 "Religious workers, all other 21-2099" > 2100 "Lawyers, Judges, magistrates, and other judicial workers 23-1011" > 2105 "Judicial Law Clerks 23-1012" > 2110 "Judges, Magistrates, and Other Judicial Workers 23-1020" > 2145 "Paralegals and Legal Assistants 23-2011" > 2160 "Miscellaneous Legal Support Workers 23-2090" > 2200 "Postsecondary teachers 25-1000" > 2300 "Preschool and kindergarten teachers 25-2010" > 2310 "Elementary and middle school teachers 25-2020" > 2320 "Secondary school teachers 25-2030" > 2330 "Special education teachers 25-2050" > 2340 "Other teachers and instructors 25-3000" > 2400 "Archivists, curators, and museum technicians 25-4010" > 2430 "Librarians 25-4021" > 2440 "Library technicians 25-4031" > 2540 "Teacher assistants 25-9041" > 2550 "Other education, training, and library workers 25-90XX" > 2600 "Artists and related workers 27-1010" > 2630 "Designers 27-1020" > 2700 "Actors 27-2011" > 2710 "Producers and directors 27-2012" > 2720 "Athletes, coaches, umpires, and related workers 27-2020" > 2740 "Dancers and choreographers 27-2030" > 2750 "Musicians, singers, and related workers 27-2040" > 2760 "Entertainers and performers, sports and related workers, all other 27-2099" > 2800 "Announcers 27-3010" > 2810 "News analysts, reporters and correspondents 27-3020" > 2825 "Public Relations Specialists 27-3031" > 2830 "Editors 27-3041" > 2840 "Technical writers 27-3042" > 2850 "Writers and authors 27-3043" > 2860 "Miscellaneous media and communication workers 27-3090" > 2900 "Broadcast and sound engineering technicians and radio operators 27-4010" > 2910 "Photographers 27-4021" > 2920 "Television, video, and motion picture camera operators and editors 27-4030" > 2960 "Media and communication equipment workers, all other 27-4099" > 3000 "Chiropractors 29-1011" > 3010 "Dentists 29-1020" > 3030 "Dietitians and nutritionists 29-1031" > 3040 "Optometrists 29-1041" > 3050 "Pharmacists 29-1051" > 3060 "Physicians and surgeons 29-1060" > 3110 "Physician assistants 29-1071" > 3120 "Podiatrists 29-1081" > 3140 "Audiologists 29-1181" > 3150 "Occupational therapists 29-1122" > 3160 "Physical therapists 29-1123" > 3200 "Radiation therapists 29-1124" > 3210 "Recreational therapists 29-1125" > 3220 "Respiratory therapists 29-1126" > 3230 "Speech-language pathologists 29-1127" > 3235 "Exercise Physiologists 29-1128" > 3245 "Therapists, all other 29-1129" > 3250 "Veterinarians 29-1131" > 3255 "Registered Nurses 29-1141" > 3256 "Nurse Anesthetists 29-1151" > 3257 "Nurse Midwives 29-1161" > 3258 "Nurse Practitioners 29-1171" > 3260 "Health diagnosing and treating practitioners, all other 29-1199" > 3300 "Clinical laboratory technologists and technicians 29-2010" > 3310 "Dental hygienists 29-2021" > 3320 "Diagnostic related technologists and technicians 29-2030" > 3400 "Emergency medical technicians and paramedics 29-2041" > 3420 "Health Practitioner Support Technologists and Technicians 29-2050" > 3500 "Licensed practical and licensed vocational nurses 29-2061" > 3510 "Medical records and health information technicians 29-2071" > 3520 "Opticians, dispensing 29-2081" > 3535 "Miscellaneous Health Technologists and Technicians 29-2090" > 3540 "Other healthcare practitioners and technical occupations 29-9000" > 3600 "Nursing, psychiatric, and home health aides 31-1010" > 3610 "Occupational therapist assistants and aides 31-2010" > 3620 "Physical therapist assistants and aides 31-2020" > 3630 "Massage therapists 31-9011" > 3640 "Dental assistants 31-9091" > 3645 "Medical Assistants 31-9092" > 3646 "Medical Transcriptionists 31-9094" > 3647 "Pharmacy Aides 31-9095" > 3648 "Veterinary Assistants and Laboratory Animal Caretakers 31-9096" > 3649 "Phlebotomists 31-9097" > 3655 "Miscellaneous Healthcare Support Occupations, Including 31-909X" > 3700 "First-line supervisors/managers of correctional officers 33-1011" > 3710 "First-line supervisors/managers of police and detectives 33-1012" > 3720 "First-line supervisors/managers of fire fighting and prevention workers 33-1021" > 3730 "Supervisors, protective service workers, all other 33-1099" > 3740 "Fire fighters 33-2011" > 3750 "Fire inspectors 33-2020" > 3800 "Bailiffs, correctional officers, and jailers 33-3010" > 3820 "Detectives and criminal investigators 33-3021" > 3830 "Fish and game wardens 33-3031" > 3840 "Parking enforcement workers 33-3041" > 3850 "Police and sheriff's patrol officers 33-3051" > 3860 "Transit and railroad police 33-3052" > 3900 "Animal control workers 33-9011" > 3910 "Private detectives and investigators 33-9021" > 3930 "Security Guards and Gaming Surveillance Officers 33-9030" > 3940 "Crossing guards 33-9091" > 3945 "Transportation Security Screeners 33-9093" > 3955 "Lifeguards and Other Recreational, and all Other Protective Service Workers 33-909X" > 4000 "Chefs and head cooks 35-1011" > 4010 "First-line supervisors/managers of food preparation and serving workers 35-1012" > 4020 "Cooks 35-2010" > 4030 "Food preparation workers 35-2021" > 4040 "Bartenders 35-3011" > 4050 "Combined food preparation and serving workers, including fast food 35-3021" > 4060 "Counter attendants, cafeteria, food concession, and coffee shop 35-3022" > 4110 "Waiters and waitresses 35-3031" > 4120 "Food servers, nonrestaurant 35-3041" > 4130 "Dining room and cafeteria attendants and bartender helpers 35-9011" > 4140 "Dishwashers 35-9021" > 4150 "Hosts and hostesses, restaurant, lounge, and coffee shop 35-9031" > 4160 "Food preparation and serving related workers, all other 35-9099" > 4200 "First-line supervisors/managers of housekeeping and janitorial workers 37-1011" > 4210 "First-line supervisors/managers of landscaping, lawn service, and groundskeeping worke > rs 37-1012" > 4220 "Janitors and building cleaners 31-201X" > 4230 "Maids and housekeeping cleaners 37-2012" > 4240 "Pest control workers 37-2021" > 4250 "Grounds maintenance workers 37-3010" > 4300 "First-line supervisors/managers of gaming workers 39-1010" > 4320 "First-line supervisors/managers of personal service workers 39-1021" > 4340 "Animal trainers 39-2011" > 4350 "Nonfarm animal caretakers 39-2021" > 4400 "Gaming services workers 39-3010" > 4410 "Motion picture projectionists 39-3021" > 4420 "Ushers, lobby attendants, and ticket takers 39-3031" > 4430 "Miscellaneous entertainment attendants and related workers 39-3090" > 4460 "Funeral service workers 39-40XX" > 4465 "Morticians, Undertakers, and Funeral Directors 39-4031" > 4500 "Barbers 39-5011" > 4510 "Hairdressers, hairstylists, and cosmetologists 39-5012" > 4520 "Miscellaneous personal appearance workers 39-5090" > 4530 "Baggage porters, bellhops, and concierges 39-6010" > 4540 "Tour and travel guides 39-7010" > 4600 "Child care workers 39-9011" > 4610 "Personal and home care aides 39-9021" > 4620 "Recreation and fitness workers 39-9030" > 4640 "Residential advisors 39-9041" > 4650 "Personal care and service workers, all other 39-9099" > 4700 "First-line supervisors/managers of retail sales workers 41-1011" > 4710 "First-line supervisors/managers of non-retail sales workers 41-1012" > 4720 "Cashiers 41-2010" > 4740 "Counter and rental clerks 41-2021" > 4750 "Parts salespersons 41-2022" > 4760 "Retail salespersons 41-2031" > 4800 "Advertising sales agents 41-3011" > 4810 "Insurance sales agents 41-3021" > 4820 "Securities, commodities, and financial services sales agents 41-3031" > 4830 "Travel agents 41-3041" > 4840 "Sales representatives, services, all other 41-3099" > 4850 "Sales representatives, wholesale and manufacturing 41-4010" > 4900 "Models, demonstrators, and product promoters 41-9010" > 4920 "Real estate brokers and sales agents 41-9020" > 4930 "Sales engineers 41-9031" > 4940 "Telemarketers 41-9041" > 4950 "Door-to-door sales workers, news and street vendors, and related workers 41-9091" > 4965 "Sales and Related Workers, all other 41-9099" > 5000 "First-line supervisors/managers of office and administrative support workers 43-1011" > 5010 "Switchboard operators, including answering service 43-2011" > 5020 "Telephone operators 43-2021" > 5030 "Communications equipment operators, all other 43-2099" > 5100 "Bill and account collectors 43-3011" > 5110 "Billing and posting clerks and machine operators 43-3021" > 5120 "Bookkeeping, accounting, and auditing clerks 43-3031" > 5130 "Gaming cage workers 43-3041" > 5140 "Payroll and timekeeping clerks 43-3051" > 5150 "Procurement clerks 43-3061" > 5160 "Tellers 43-3071" > 5165 "Financial Clerks, all other 43-3099" > 5200 "Brokerage clerks 43-4011" > 5210 "Correspondence clerks 43-4021" > 5220 "Court, municipal, and license clerks 43-4031" > 5230 "Credit authorizers, checkers, and clerks 43-4041" > 5240 "Customer service representatives 43-4051" > 5250 "Eligibility interviewers, government programs 43-4061" > 5260 "File Clerks 43-4071" > 5300 "Hotel, motel, and resort desk clerks 43-4081" > 5310 "Interviewers, except eligibility and loan 43-4111" > 5320 "Library assistants, clerical 43-4121" > 5330 "Loan interviewers and clerks 43-4131" > 5340 "New accounts clerks 43-4141" > 5350 "Order clerks 43-4151" > 5360 "Human resources assistants, except payroll and timekeeping 43-4161" > 5400 "Receptionists and information clerks 43-4171" > 5410 "Reservation and transportation ticket agents and travel clerks 43-4181" > 5420 "Information and record clerks, all other 43-4199" > 5500 "Cargo and freight agents 43-5011" > 5510 "Couriers and messengers 43-5021" > 5520 "Dispatchers 43-5030" > 5530 "Meter readers, utilities 43-5041" > 5540 "Postal service clerks 43-5051" > 5550 "Postal service mail carriers 43-5052" > 5560 "Postal service mail sorters, processors, and processing machine operators 43-5053" > 5600 "Production, planning, and expediting clerks 43-5061" > 5610 "Shipping, receiving, and traffic clerks 43-5071" > 5620 "Stock clerks and order fillers 43-5081" > 5630 "Weighers, measurers, checkers, and samplers, recordkeeping 43-5111" > 5700 "Secretaries and administrative assistants 43-6010" > 5800 "Computer operators 43-9011" > 5810 "Data entry keyers 43-9021" > 5820 "Word processors and typists 43-9022" > 5830 "Desktop publishers 43-9031" > 5840 "Insurance claims and policy processing clerks 43-9041" > 5850 "Mail clerks and mail machine operators, except postal service 43-9051" > 5860 "Office clerks, general 43-9061" > 5900 "Office machine operators, except computer 43-9071" > 5910 "Proofreaders and copy markers 43-9081" > 5920 "Statistical assistants 43-9111" > 5940 "Office and Administrative Support Workers, all other 43-9199" > 6005 "First-line supervisors of farming, fishing, and forestry workers 45-1011" > 6010 "Agricultural inspectors 45-2011" > 6020 "Animal breeders 45-2021" > 6040 "Graders and sorters, agricultural products 45-2041" > 6050 "Miscellaneous agricultural workers 45-2090" > 6100 "Fishers and related fishing workers 45-3011" > 6110 "Hunters and trappers 45-3021" > 6120 "Forest and conservation workers 45-4011" > 6130 "Logging workers 45-4020" > 6200 "First-line supervisors/managers of construction trades and extraction workers 47-1011" > 6210 "Boilermakers 47-2011" > 6220 "Brickmasons, blockmasons, and stonemasons 47-2020" > 6230 "Carpenters 47-2031" > 6240 "Carpet, floor, and tile installers and finishers 47-2040" > 6250 "Cement masons, concrete finishers, and terrazzo workers 47-2050" > 6260 "Construction laborers 47-2061" > 6300 "Paving, surfacing, and tamping equipment operators 47-2071" > 6310 "Pile-driver operators 47-2072" > 6320 "Operating engineers and other construction equipment operators 47-2073" > 6330 "Drywall installers, ceiling tile installers, and tapers 47-2080" > 6355 "Electricians 47-2111" > 6360 "Glaziers 47-2121" > 6400 "Insulation workers 47-2130" > 6420 "Painters, construction and maintenance 47-2141" > 6430 "Paperhangers 47-2142" > 6440 "Pipelayers, plumbers, pipefitters, and steamfitters 47-2150" > 6460 "Plasterers and stucco masons 47-2161" > 6500 "Reinforcing iron and rebar workers 47-2171" > 6515 "Roofers 47-2181" > 6520 "Sheet metal workers 47-2211" > 6530 "Structural iron and steel workers 47-2221" > 6540 "Solar Photovoltaic Installers 47-2231" > 6600 "Helpers, construction trades 47-3010" > 6660 "Construction and building inspectors 47-4011" > 6700 "Elevator installers and repairers 47-4021" > 6710 "Fence erectors 47-4031" > 6720 "Hazardous materials removal workers 47-4041" > 6730 "Highway maintenance workers 47-4051" > 6740 "Rail-track laying and maintenance equipment operators 47-4061" > 6750 "Septic tank servicers and sewer pipe cleaners 47-4071" > 6765 "Miscellaneous construction and related workers 47-4090" > 6800 "Derrick, rotary drill, and service unit operators, oil, gas, and mining 47-5010" > 6820 "Earth drillers, except oil and gas 47-5021" > 6830 "Explosives workers, ordnance handling experts, and blasters 47-5031" > 6840 "Mining machine operators 47-5040" > 6910 "Roof bolters, mining 47-5061" > 6920 "Roustabouts, oil and gas 47-5071" > 6930 "Helpers--extraction workers 47-5081" > 6940 "Other extraction workers 47-50XX" > 7000 "First-line supervisors/managers of mechanics, installers, and repairers 49-1011" > 7010 "Computer, automated teller, and office machine repairers 49-2011" > 7020 "Radio and telecommunications equipment installers and repairers 49-2020" > 7030 "Avionics technicians 49-2091" > 7040 "Electric motor, power tool, and related repairers 49-2092" > 7050 "Electrical and electronics installers and repairers, transportation equipment 49-2093" > 7100 "Electrical and electronics repairers, industrial and utility 49-209X" > 7110 "Electronic equipment installers and repairers, motor vehicles 49-2096" > 7120 "Electronic home entertainment equipment installers and repairers 49-2097" > 7130 "Security and fire alarm systems installers 49-2098" > 7140 "Aircraft mechanics and service technicians 49-3011" > 7150 "Automotive body and related repairers 49-3021" > 7160 "Automotive glass installers and repairers 49-3022" > 7200 "Automotive service technicians and mechanics 49-3023" > 7210 "Bus and truck mechanics and diesel engine specialists 49-3031" > 7220 "Heavy vehicle and mobile equipment service technicians and mechanics 49-3040" > 7240 "Small engine mechanics 49-3050" > 7260 "Miscellaneous vehicle and mobile equipment mechanics, installers, and repairers 49-309 > 0" > 7300 "Control and valve installers and repairers 49-9010" > 7315 "Heating, air conditioning, and refrigeration mechanics and installers 49-9021" > 7320 "Home appliance repairers 49-9031" > 7330 "Industrial and refractory machinery mechanics 49-904X" > 7340 "Maintenance and repair workers, general 49-9071" > 7350 "Maintenance workers, machinery 49-9043" > 7360 "Millwrights 49-9044" > 7410 "Electrical power-line installers and repairers 49-9051" > 7420 "Telecommunications line installers and repairers 49-9052" > 7430 "Precision instrument and equipment repairers 49-9060" > 7440 "Wind Turbine Service Technicians 49-9081" > 7510 "Coin, vending, and amusement machine servicers and repairers 49-9091" > 7520 "Commercial divers 49-9092" > 7540 "Locksmiths and safe repairers 49-9094" > 7550 "Manufactured building and mobile home installers 49-9095" > 7560 "Riggers 49-9096" > 7600 "Signal and track switch repairers 49-9097" > 7610 "Helpers--installation, maintenance, and repair workers 49-9098" > 7630 "Other installation, maintenance, and repair workers 49-909X" > 7700 "First-line supervisors/managers of production and operating workers 51-1011" > 7710 "Aircraft structure, surfaces, rigging, and systems assemblers 51-2011" > 7720 "Electrical, electronics, and electromechanical assemblers 51-2020" > 7730 "Engine and other machine assemblers 51-2031" > 7740 "Structural metal fabricators and fitters 51-2041" > 7750 "Miscellaneous assemblers and fabricators 51-2090" > 7800 "Bakers 51-3011" > 7810 "Butchers and other meat, poultry, and fish processing workers 51-3020" > 7830 "Food and tobacco roasting, baking, and drying machine operators and tenders 51-3091" > 7840 "Food batchmakers 51-3092" > 7850 "Food cooking machine operators and tenders 51-3093" > 7855 "Food Processing Workers, all Other 51-3099" > 7900 "Computer control programmers and operators 51-4010" > 7920 "Extruding and drawing machine setters, operators, and tenders, metal and plastic 51-40 > 21" > 7930 "Forging machine setters, operators, and tenders, metal and plastic 51-4022" > 7940 "Rolling machine setters, operators, and tenders, metal and plastic 51-4023" > 7950 "Cutting, punching, and press machine setters, operators, and tenders, metal and plasti > c 51-4031" > 7960 "Drilling and boring machine tool setters, operators, and tenders, metal and plastic 51 > -4032" > 8000 "Grinding, lapping, polishing, and buffing machine tool setters, operators, and tenders > , metal and plastic 51-4033" > 8010 "Lathe and turning machine tool setters, operators, and tenders, metal and plastic 51-4 > 034" > 8020 "Milling and planing machine setters, operators, and tenders, metal and plastic 51-4035 > " > 8030 "Machinists 51-4041" > 8040 "Metal furnace and kiln operators and tenders 51-4050" > 8060 "Model makers and patternmakers, metal and plastic 51-4060" > 8100 "Molders and molding machine setters, operators, and tenders, metal and plastic 51-4070 > " > 8120 "Multiple machine tool setters, operators, and tenders, metal and plastic 51-4081" > 8130 "Tool and die makers 51-4111" > 8140 "Welding, soldering, and brazing workers 51-4120" > 8150 "Heat treating equipment setters, operators, and tenders, metal and plastic 51-4191" > 8160 "Lay-out workers, metal and plastic 51-4192" > 8200 "Plating and coating machine setters, operators, and tenders, metal and plastic 51-4193 > " > 8210 "Tool grinders, filers, and sharpeners 51-4194" > 8220 "Metalworkers and plastic workers, all other 51-4199" > 8250 "Prepress technicians and workers 51-5111" > 8255 "Printing Press Operators 51-5112" > 8256 "Print Binding and Finishing Workers 51-5113" > 8300 "Laundry and dry-cleaning workers 51-6011" > 8310 "Pressers, textile, garment, and related materials 51-6021" > 8320 "Sewing machine operators 51-6031" > 8330 "Shoe and leather workers and repairers 51-6041" > 8340 "Shoe machine operators and tenders 51-6042" > 8350 "Tailors, dressmakers, and sewers 51-6050" > 8360 "Textile bleaching and dyeing machine operators and tenders 51-6061" > 8400 "Textile cutting machine setters, operators, and tenders 51-6062" > 8410 "Textile knitting and weaving machine setters, operators, and tenders 51-6063" > 8420 "Textile winding, twisting, and drawing out machine setters, operators, and tenders 51- > 6064" > 8430 "Extruding and forming machine setters, operators, and tenders, synthetic and glass fib > ers 51-6091" > 8440 "Fabric and apparel patternmakers 51-6092" > 8450 "Upholsterers 51-6093" > 8460 "Textile, apparel, and furnishings workers, all other 51-6099" > 8500 "Cabinetmakers and bench carpenters 51-7011" > 8510 "Furniture finishers 51-7021" > 8520 "Model makers and patternmakers, wood 51-7030" > 8530 "Sawing machine setters, operators, and tenders, wood 51-7041" > 8540 "Woodworking machine setters, operators, and tenders, except sawing 51-7042" > 8550 "Woodworkers, all other 51-7099" > 8600 "Power plant operators, distributors, and dispatchers 51-8010" > 8610 "Stationary engineers and boiler operators 51-8021" > 8620 "Water and liquid waste treatment plant and system operators 51-8031" > 8630 "Miscellaneous plant and system operators 51-8090" > 8640 "Chemical processing machine setters, operators, and tenders 51-9010" > 8650 "Crushing, grinding, polishing, mixing, and blending workers 51-9020" > 8710 "Cutting workers 51-9030" > 8720 "Extruding, forming, pressing, and compacting machine setters, operators, and tenders 5 > 1-9041" > 8730 "Furnace, kiln, oven, drier, and kettle operators and tenders 51-9051" > 8740 "Inspectors, testers, sorters, samplers, and weighers 51-9061" > 8750 "Jewelers and precious stone and metal workers 51-9071" > 8760 "Medical, dental, and ophthalmic laboratory technicians 51-9080" > 8800 "Packaging and filling machine operators and tenders 51-9111" > 8810 "Painting workers 51-9120" > 8830 "Photographic process workers and processing machine operators 51-9151" > 8840 "Semiconductor processors 51-9141" > 8850 "Cementing and gluing machine operators and tenders 51-9191" > 8860 "Cleaning, washing, and metal pickling equipment operators and tenders 51-9192" > 8900 "Cooling and freezing equipment operators and tenders 51-9193" > 8910 "Etchers and engravers 51-9194" > 8920 "Molders, shapers, and casters, except metal and plastic 51-9195" > 8930 "Paper goods machine setters, operators, and tenders 51-9196" > 8940 "Tire builders 51-9197" > 8950 "Helpers--production workers 51-9198" > 8965 "Production workers, all other 51-9199" > 9000 "Supervisors, transportation and material moving workers 53-1000" > 9030 "Aircraft pilots and flight engineers 53-2010" > 9040 "Air traffic controllers and airfield operations specialists 53-2020" > 9050 "Flight Attendants 53-2031" > 9110 "Ambulance drivers and attendants, except emergency medical technicians 53-3011" > 9120 "Bus drivers 53-3020" > 9130 "Driver/sales workers and truck drivers 53-3030" > 9140 "Taxi drivers and chauffeurs 53-3041" > 9150 "Motor vehicle operators, all other 53-3099" > 9200 "Locomotive engineers and operators 53-4010" > 9230 "Railroad brake, signal, and switch operators 53-4021" > 9240 "Railroad conductors and yardmasters 53-4031" > 9260 "Subway, streetcar, and other rail transportation workers 53-40XX" > 9300 "Sailors and marine oilers 53-5011" > 9310 "Ship and boat captains and operators 53-5020" > 9330 "Ship engineers 53-5031" > 9340 "Bridge and lock tenders 53-6011" > 9350 "Parking lot attendants 53-6021" > 9360 "Service station attendants 53-6031" > 9410 "Transportation inspectors 53-6051" > 9415 "Transportation Attendants, Except Flight Attendants 53-6061" > 9420 "Other transportation workers 53-60XX" > 9500 "Conveyor operators and tenders 53-7011" > 9510 "Crane and tower operators 53-7021" > 9520 "Dredge, excavating, and loading machine operators 53-7030" > 9560 "Hoist and winch operators 53-7041" > 9600 "Industrial truck and tractor operators 53-7051" > 9610 "Cleaners of vehicles and equipment 53-7061" > 9620 "Laborers and freight, stock, and material movers, hand 53-7062" > 9630 "Machine feeders and offbearers 53-7063" > 9640 "Packers and packagers, hand 53-7064" > 9650 "Pumping station operators 53-7070" > 9720 "Refuse and recyclable material collectors 53-7081" > 9730 "Shuttle car operators 53-7111" > 9740 "Tank car, truck, and ship loaders 53-7121" > 9750 "Material moving workers, all other 53-7199" > 9840 "Armed Forces" > 9970 "Problem referral" > 9990 "Not reported (Includes Refused, Classified, blank and all other noncodable entries)" > 9800 "Military officer special and tactical operations leaders/managers 55-1010" > 9810 "First-line enlisted military supervisors/managers 55-2010" > 9820 "Military enlisted tactical operations and air/weapons specialists and crew members 55- > 3010" > 9830 "Military, rank not specified 99-9999" > ; . * docc00: 2000-; . label values docc00 docc00l ; . label define docc00l > 1 "Management occupations" > 2 "Business and financial operations occupations" > 3 "Computer and mathematical science occupations" > 4 "Architecture and engineering occupations" > 5 "Life, physical, and social science occupations" > 6 "Community and social service occupations" > 7 "Legal occupations" > 8 "Education, training, and library occupations" > 9 "Arts, design, entertainment, sports, and media occupations" > 10 "Healthcare practitioner and technical occupations" > 11 "Healthcare support occupations" > 12 "Protective service occupations" > 13 "Food preparation and serving related occupations" > 14 "Building and grounds cleaning and maintenance occupations" > 15 "Personal care and service occupations" > 16 "Sales and related occupations" > 17 "Office and administrative support occupations" > 18 "Farming, fishing, and forestry occupations" > 19 "Construction and extraction occupations" > 20 "Installation, maintenance, and repair occupations" > 21 "Production occupations" > 22 "Transportation and material moving occupations" > 23 "Armed Forces" > ; . * eligible: 1979:5-; . label values eligible P21L; . label define P21L > 1 "Earnings Eligible For Edit" > 2 "Other" > ; . * reason94: 1994-; . label values reason94 P22L; . label define P22L > 1 "Slack Work/Business Conditions" > 2 "Seasonal Work" > 3 "Job Started Or Ended During Week" > 4 "Vacation/Personal Day" > 5 "Own Illness/Injury/Medical Appointment" > 6 "Holiday (legal Or Religious)" > 7 "Child Care Problems" > 8 "Other Family/Personal Obligations" > 9 "Labor Dispute" > 10 "Weather Affected Job" > 11 "School/Training" > 12 "Civic/Military Duty" > 13 "Other Reason" > ; . * absent94: 1994-; . label values absent94 P23L; . label define P23L > 1 "On Layoff" > 2 "Slack Work/Business Conditions" > 3 "Waiting For A New Job To Begin" > 4 "Vacation/Personal Days" > 5 "Own Illness/Injury/Medical Problems" > 6 "Child Care Problems" > 7 "Other Family/Personal Obligation" > 8 "Maternity/Paternity Leave" > 9 "Labor Dispute" > 10 "Weather Affected Job" > 11 "School/Training" > 12 "Civic/Military Duty" > 13 "Does Not Work In The Business" > 14 "Other (specify)" > ; . *why3594: 1994-; . label values why3594 P3594L; . label define P3594L > 1 "Usu. FT-Slack Work/Business Conditions" > 2 "Usu. FT-Seasonal Work" > 3 "Usu. FT-Job Started/Ended During Week" > 4 "Usu. FT-Vacation/Personal Day" > 5 "Usu. FT-Own Illness/Injury/Medical Appt" > 6 "Usu. FT-Holiday (religious Or Legal)" > 7 "Usu. FT-Child Care Problems" > 8 "Usu. FT-Other Fam/Pers Obligations" > 9 "Usu. FT-Labor Dispute" > 10 "Usu. FT-Weather Affected Job" > 11 "Usu. FT-School/Training" > 12 "Usu. FT-Civic/Military Duty" > 13 "Usu. FT-Other Reason" > 14 "Usu. PT-Slack Work/Business Conditions" > 15 "Usu. PT-Could Only Find PT Work" > 16 "Usu. PT-Seasonal Work" > 17 "Usu. PT-Child Care Problems" > 18 "Usu. PT-Other Fam/Pers Obligations" > 19 "Usu. PT-Health/Medical Limitations" > 20 "Usu. PT-School/Training" > 21 "Usu. PT-Retired/Ss Limit On Earnings" > 22 "Usu. PT-Workweek <35 Hours" > 23 "Usu. PT-Other Reason" > ; . * ftpt94: 1994-; . label values ftpt94 P160L; . label define P160L > 1 "Not In Labor Force" > 2 "FT Hours (35+), Usually FT" > 3 "PT For Economic Reasons, Usually FT" > 4 "PT For Non-Economic Reasons, Usually FT" > 5 "Not At Work, Usually FT" > 6 "PT Hours, Usually PT For Economic Reasons" > 7 "PT hrs, Usually PT For Non-Economic" > 8 "FT Hours, Usually PT For Economic Reas" > 9 "FT hrs, Usually PT For Non-Economic" > 10 "Not at work, Usually Part-Time" > 11 "Unemployed FT" > 12 "Unemployed PT" > ; . * studftpt: 1984-; . label values studftpt P24L; . label define P24L > 1 "Full-time" > 2 "Part-time" > ; . * unionmme: 1983-; . label values unionmme P25L; . label define P25L > 1 "Yes" > 2 "No" > ; . * unioncov: 1983-; . label values unioncov P26L; . label define P26L > 1 "Yes" > 2 "No" > ; . * otc: 1994-; . label values otc yesno; . label define yesno > 1 "Yes" > 2 "No" > ; . * hrhtype: 1984-; . label values hrhtype hrhtype; . label define hrhtype > 0 "Non-interview household" > 1 "Husband/wife primary fam (neither in Armed Forces)" > 2 "Husband/wife primary fam (one/both in Armed Forces)" > 3 "Unmarried civilian male primary fam householder" > 4 "Unmarried civilian female primary fam householder" > 5 "Unmarried primary fam householder in Armed Forces" > 6 "Civilian male primary individual" > 7 "Civilian female primary individual" > 8 "Primary ind HH - reference person in Armed Forces" > 9 "Group quarters with family" > 10 "Group quarters without family" > ; . ** Race 2003-April 2012 has 21 Categories" > ** "Race May 2012 on has 26 Categories" > label values race race21; > label define race21 > 1 "White Only" > 2 "Black Only" > 3 "American Indian, Alaskan Native Only" > 4 "Asian Only" > 5 "Hawaiian/Pacific Islander Only" > 6 "White-Black" > 7 "White-AI" > 8 "White-Asian" > 9 "White-Hawaiian" > 10 "Black-AI" > 11 "Black-Asian" > 12 "Black-HP" > 13 "AI-Asian" > 14 "Asian-HP" > 15 "W-B-AI" > 16 "W-B-A" > 17 "W-AI-A" > 18 "W-A-HP" > 19 "W-B-AI-A" > 20 "2 or 3 Races" > 21 "4 or 5 Races" > > ; end of do-file (saving in Stata 12 format, which Stata 11 can read) file /homes/data/morg/annual/morg12.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+--------------------------------------------------------- hhid | 0 intmonth | 316,408 6.505622 3.45343 1 12 hurespli | 316,390 1.416992 .7887689 0 16 hrhtype | 316,408 2.674218 2.261939 1 10 minsamp | 316,408 6.001643 2.000002 4 8 -------------+--------------------------------------------------------- hrlonglk | 316,408 1.992383 .123189 0 2 hrsample | 0 hrhhid2 | 0 serial | 0 hhnum | 316,408 1.048712 .2279868 1 6 -------------+--------------------------------------------------------- state | 316,408 54.02199 26.41768 11 95 stfips | 316,408 27.90288 15.89768 1 56 cbsafips | 316,408 25861.48 21109.9 0 79600 county | 316,408 28.96384 67.34775 0 810 centcity | 257,178 1.959164 .7318766 1 3 -------------+--------------------------------------------------------- smsastat | 313,801 1.203444 .4025608 1 2 icntcity | 26,824 1.48561 1.053263 1 7 smsa04 | 316,408 3.5949 2.56727 0 7 relref95 | 316,408 3.130054 3.180738 1 18 age | 316,408 46.56629 18.34466 16 85 -------------+--------------------------------------------------------- spouse | 164,460 1.583941 .7067399 1 14 sex | 316,408 1.521134 .4995539 1 2 grade92 | 316,408 40.18481 2.745015 31 46 race | 316,408 1.403492 1.259527 1 26 ethnic | 37,322 1.99148 1.398373 1 5 -------------+--------------------------------------------------------- lineno | 316,408 1.754311 1.034068 1 16 famnum | 316,408 .8011017 .4727538 0 5 pfamrel | 316,408 1.373729 1.068881 0 4 marital | 316,408 3.414244 2.651669 1 7 prpertyp | 316,408 2.003932 .0625794 2 3 -------------+--------------------------------------------------------- penatvty | 316,408 87.08048 80.44654 57 555 pemntvty | 316,408 96.2973 88.97279 57 555 pefntvty | 316,408 96.52764 89.17506 57 555 prcitshp | 316,408 1.489864 1.216172 1 5 prcitflg | 316,408 .164389 1.907574 0 41 -------------+--------------------------------------------------------- peinusyr | 316,408 1.85812 5.034859 0 22 selfproxy | 312,101 1.491001 .5057629 1 3 lfsr94 | 315,164 2.915952 2.370646 1 7 absent94 | 7,016 6.332811 3.566772 4 14 uhourse | 171,946 38.57483 11.33713 0 99 -------------+--------------------------------------------------------- reason94 | 12,685 4.811273 2.90016 1 13 hourslw | 179,751 38.42136 13.26563 1 99 laydur | 1,566 9.171775 11.44848 1 52 dwrsn | 6,444 6.926754 3.477058 1 11 why3594 | 46,496 14.93331 6.839047 1 23 -------------+--------------------------------------------------------- prunedur | 14,673 34.82928 36.86445 0 119 untype | 14,673 3.330539 1.639565 1 6 ftpt94 | 315,164 2.765065 2.642505 1 12 class94 | 208,017 4.10616 1.167527 1 8 agri | 208,017 .0203733 .1412741 0 1 -------------+--------------------------------------------------------- eligible | 316,408 1.475095 .4993802 1 2 otc | 166,084 1.858855 .3481726 1 2 ernpdh2 | 93,661 1.736593 .4404838 1 2 paidhre | 166,084 1.407878 .4914417 1 2 earnhre | 98,311 1585.588 949.8391 12 9999 -------------+--------------------------------------------------------- earnwke | 166,084 843.7225 636.5698 0 2884.61 unionmme | 166,084 1.886305 .317442 1 2 unioncov | 147,201 1.985272 .120463 1 2 schenr | 44,813 1.439738 .4963608 1 2 studftpt | 25,107 1.075557 .2642926 1 2 -------------+--------------------------------------------------------- schlvl | 25,107 1.502688 .5000027 1 2 earnwt | 316,408 9226.733 5011.108 0 49973 weight | 316,408 2306.683 1245.885 0 12311.47 chldpres | 316,408 1.349789 2.816227 0 15 ownchild | 316,408 .4965456 .9623568 0 12 -------------+--------------------------------------------------------- I25d | 166,084 .3292069 .4699266 0 1 I25c | 98,342 .3638832 .481118 0 1 I25a | 316,408 .370057 3.677173 0 43 I25b | 316,408 3.760044 11.97657 0 42 qstnum | 0 -------------+--------------------------------------------------------- occurnum | 0 ged | 93,104 1.09774 .2969646 1 2 gedhigr | 9,100 6.419121 1.298738 1 8 yrcoll | 87,459 2.740335 1.022048 1 5 grprof | 58,082 1.705623 .4557661 1 2 -------------+--------------------------------------------------------- gr6cor | 17,098 1.272371 .4451928 1 2 ms123 | 22,780 2.190957 .56561 1 3 cmpwgt | 316,408 2306.684 1247.486 0 12441.33 ind02 | 208,017 6280.757 2683.839 170 9890 occ2011 | 69,199 4192.766 2565.293 10 9840 -------------+--------------------------------------------------------- occ002 | 316,408 112.937 747.8648 -1 9750 vet1 | 28,435 4.008335 1.750943 1 9 vet2 | 5,502 3.669938 1.627489 1 9 vet3 | 1,386 3.247475 1.606871 1 9 vet4 | 269 3.936803 1.703733 1 9 -------------+--------------------------------------------------------- linedad | 43,957 1.702709 .9428212 1 12 linemom | 31,996 1.146018 .4029041 1 3 recnum | 316,408 226245.2 130652.5 1 452317 year | 316,408 2012 0 2012 2012 ym_file | 316,408 629.5056 3.45343 624 635 -------------+--------------------------------------------------------- ym | 316,408 620.5007 6.911197 609 632 ch02 | 316,408 .0676532 .2511502 0 1 ch35 | 316,408 .0751972 .2637097 0 1 ch613 | 316,408 .1513521 .3583923 0 1 ch1417 | 316,408 .0911703 .2878515 0 1 -------------+--------------------------------------------------------- ch05 | 316,408 .1184294 .3231164 0 1 ihigrdc | 316,408 13.42328 2.988644 0 18 race21 | 105,269 1.399358 1.212886 1 21 race26 | 211,139 1.405553 1.282146 1 26 occ2012 | 138,818 4164.038 2570.586 10 9840 -------------+--------------------------------------------------------- docc00 | 208,017 12.40573 6.705812 1 23 dind02 | 208,017 31.03339 14.41411 1 52 . aef2 2013 13 03 13 dct_name aef03.dbd raw_name=../raw/morg13 (0 observations deleted) obs 450983 # of persons with age<=15 135266 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 52,620 11.67 11.67 0 | 3,879 0.86 12.53 1 | 4,654 1.03 13.56 2 | 4,804 1.07 14.63 3 | 5,062 1.12 15.75 4 | 5,247 1.16 16.91 5 | 5,369 1.19 18.10 6 | 5,529 1.23 19.33 7 | 5,157 1.14 20.47 8 | 5,277 1.17 21.64 9 | 5,325 1.18 22.82 10 | 5,313 1.18 24.00 11 | 5,324 1.18 25.18 12 | 5,455 1.21 26.39 13 | 5,465 1.21 27.60 14 | 5,443 1.21 28.81 15 | 5,343 1.18 29.99 16 | 5,336 1.18 31.18 17 | 5,481 1.22 32.39 18 | 4,944 1.10 33.49 19 | 4,676 1.04 34.53 20 | 4,516 1.00 35.53 21 | 4,739 1.05 36.58 22 | 4,847 1.07 37.65 23 | 4,972 1.10 38.75 24 | 4,909 1.09 39.84 25 | 4,863 1.08 40.92 26 | 4,864 1.08 42.00 27 | 5,011 1.11 43.11 28 | 5,063 1.12 44.23 29 | 4,958 1.10 45.33 30 | 5,301 1.18 46.51 31 | 5,284 1.17 47.68 32 | 5,243 1.16 48.84 33 | 5,346 1.19 50.03 34 | 4,975 1.10 51.13 35 | 5,102 1.13 52.26 36 | 5,095 1.13 53.39 37 | 4,825 1.07 54.46 38 | 4,864 1.08 55.54 39 | 4,724 1.05 56.59 40 | 4,824 1.07 57.66 41 | 5,054 1.12 58.78 42 | 5,535 1.23 60.01 43 | 5,436 1.21 61.21 44 | 5,213 1.16 62.37 45 | 5,299 1.17 63.54 46 | 5,116 1.13 64.68 47 | 5,230 1.16 65.84 48 | 5,557 1.23 67.07 49 | 5,790 1.28 68.35 50 | 6,003 1.33 69.68 51 | 5,966 1.32 71.01 52 | 6,004 1.33 72.34 53 | 5,973 1.32 73.66 54 | 5,777 1.28 74.94 55 | 5,865 1.30 76.24 56 | 5,941 1.32 77.56 57 | 5,626 1.25 78.81 58 | 5,547 1.23 80.04 59 | 5,323 1.18 81.22 60 | 5,285 1.17 82.39 61 | 5,210 1.16 83.55 62 | 4,822 1.07 84.62 63 | 4,672 1.04 85.65 64 | 4,605 1.02 86.67 65 | 4,757 1.05 87.73 66 | 4,725 1.05 88.77 67 | 3,815 0.85 89.62 68 | 3,387 0.75 90.37 69 | 3,290 0.73 91.10 70 | 3,544 0.79 91.89 71 | 3,102 0.69 92.57 72 | 2,812 0.62 93.20 73 | 2,647 0.59 93.79 74 | 2,462 0.55 94.33 75 | 2,274 0.50 94.84 76 | 2,141 0.47 95.31 77 | 2,121 0.47 95.78 78 | 1,994 0.44 96.22 79 | 1,849 0.41 96.63 80 | 7,883 1.75 98.38 85 | 7,303 1.62 100.00 ------------+----------------------------------- Total | 450,983 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 52,620 38.90 38.90 0 | 3,879 2.87 41.77 1 | 4,654 3.44 45.21 2 | 4,804 3.55 48.76 3 | 5,062 3.74 52.50 4 | 5,247 3.88 56.38 5 | 5,369 3.97 60.35 6 | 5,529 4.09 64.44 7 | 5,157 3.81 68.25 8 | 5,277 3.90 72.15 9 | 5,325 3.94 76.09 10 | 5,313 3.93 80.02 11 | 5,324 3.94 83.95 12 | 5,455 4.03 87.99 13 | 5,465 4.04 92.03 14 | 5,443 4.02 96.05 15 | 5,343 3.95 100.00 ------------+----------------------------------- Total | 135,266 100.00 (135,266 observations deleted) (0 observations deleted) obs 315717 after keeping age>15&age!=. infile successful no observations (19 real changes made, 19 to missing) (271,856 real changes made, 271,856 to missing) (283,858 real changes made, 283,858 to missing) (0 real changes made) (0 real changes made) (158,293 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (157,424 real changes made) Geography (125,702 real changes made) dropping cmsacode msafips smsa93 smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (2,773 real changes made, 2,773 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (59,074 real changes made, 59,074 to missing) (288,881 real changes made, 288,881 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (152,227 real changes made, 152,227 to missing) if 2013 > 1983 & 2013 < 1989 { (0 real changes made) (0 real changes made) (0 real changes made) (ch02: 73874 changes made) (ch35: 82918 changes made) (ch613: 82918 changes made) (ch1417: 82918 changes made) (15,765 real changes made) (0 real changes made) (223,889 real changes made, 223,889 to missing) (306,805 real changes made, 306,805 to missing) (227,646 real changes made, 227,646 to missing) (256,840 real changes made, 256,840 to missing) (298,913 real changes made, 298,913 to missing) (292,098 real changes made, 292,098 to missing) (315,717 missing values generated) (933 real changes made) (1,842 real changes made) (3,671 real changes made) (5,702 real changes made) (6,508 real changes made) (9,824 real changes made) (11,423 real changes made) (4,557 real changes made) (35 real changes made) (112 real changes made) (58 real changes made) (522 real changes made) (985 real changes made) (2,222 real changes made) (3,161 real changes made) (1,817 real changes made) (82,916 real changes made) (10,830 real changes made) (22,037 real changes made) (39,480 real changes made) (9,857 real changes made) (5,867 real changes made) (42,073 real changes made) (4,673 real changes made) (12,131 real changes made) (1,895 real changes made) (21,724 real changes made) (8,862 real changes made) (221,995 real changes made, 221,995 to missing) (302,494 real changes made, 302,494 to missing) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (277,762 real changes made, 277,762 to missing) (0 real changes made) (287,986 real changes made, 287,986 to missing) (310,257 real changes made, 310,257 to missing) (314,390 real changes made, 314,390 to missing) (315,487 real changes made, 315,487 to missing) Employment (4,672 real changes made, 4,672 to missing) (309,441 real changes made, 309,441 to missing) (149,839 real changes made, 149,839 to missing) (109,525 real changes made, 109,525 to missing) (109,525 real changes made, 109,525 to missing) (109,525 real changes made, 109,525 to missing) docc80 ** The renaming is part of the Census reweighting ; docc00 553 generate int docc00=occ2011; 568 572 577 (109,525 missing values generated) 581 recode docc00 2011 (docc00: 206192 changes made) dind (109,525 missing values generated) (dind02: 206192 changes made) Wages (149,839 real changes made, 149,839 to missing) (0 real changes made) (218,156 real changes made, 218,156 to missing) (0 real changes made) (0 real changes made) (149,839 real changes made) (202,357 real changes made) (109,525 real changes made, 109,525 to missing) (302,494 real changes made, 302,494 to missing) (129,602 real changes made) (149,839 real changes made) (2 real changes made, 2 to missing) (129,602 real changes made, 129,602 to missing) (1,293 real changes made, 1,293 to missing) (314,199 real changes made, 314,199 to missing) (218,135 real changes made, 218,135 to missing) (149,839 real changes made, 149,839 to missing) Hours, Unions (303,990 real changes made, 303,990 to missing) (308,863 real changes made, 308,863 to missing) (284,378 real changes made, 284,378 to missing) (114,276 real changes made, 114,276 to missing) (284,378 real changes made, 284,378 to missing) (1,293 real changes made, 1,293 to missing) (136,456 real changes made, 136,456 to missing) (96 real changes made) (13,952 real changes made, 13,952 to missing) (270,698 real changes made, 270,698 to missing) (149,839 real changes made, 149,839 to missing) (168,614 real changes made, 168,614 to missing) variable spouse was int now byte variable hourslw was int now byte variable laydur was int now byte variable ym_file was float now int variable ym was float now int variable ch02 was int now byte variable ch35 was int now byte variable ch613 was int now byte variable ch1417 was int now byte variable ch05 was int now byte variable docc00 was int now byte variable dind02 was float now byte (5,051,472 bytes saved) . *by Jean Roth Thu Mar 17 2005 14:38:42 . *Please report errors to jroth@nber.org . . * Note: Variable names in Stata are case-sensitive . #delimit ; delimiter now ; . ; . * minsamp: 1979-; . label values minsamp P2L; . label define P2L > 4 "MIS 4" > 8 "MIS 8" > ; . * hrlonglk: 1994-; . label values hrlonglk P3L; . label define P3L > 0 "MIS 1 Or Replacement HH (no" > 2 "MIS 2-4 Or MIS 6-8 (link To" > ; . * intmonth: 1979-; . label values intmonth P4L; . label define P4L > 1 "January" > 2 "February" > 3 "March" > 4 "April" > 5 "May" > 6 "June" > 7 "July" > 8 "August" > 9 "September" > 10 "October" > 11 "November" > 12 "December" > ; . * stfips: 1989-; . label values stfips stfips; . label define stfips > 1 "AL" > 2 "AK" > 4 "AZ" > 5 "AR" > 6 "CA" > 8 "CO" > 9 "CT" > 10 "DE" > 11 "DC" > 12 "FL" > 13 "GA" > 15 "HI" > 16 "ID" > 17 "IL" > 18 "IN" > 19 "IA" > 20 "KS" > 21 "KY" > 22 "LA" > 23 "ME" > 24 "MD" > 25 "MA" > 26 "MI" > 27 "MN" > 28 "MS" > 29 "MO" > 30 "MT" > 31 "NE" > 32 "NV" > 33 "NH" > 34 "NJ" > 35 "NM" > 36 "NY" > 37 "NC" > 38 "ND" > 39 "OH" > 40 "OK" > 41 "OR" > 42 "PA" > 44 "RI" > 45 "SC" > 46 "SD" > 47 "TN" > 48 "TX" > 49 "UT" > 50 "VT" > 51 "VA" > 53 "WA" > 54 "WV" > 55 "WI" > 56 "WY" > ; . * state: 1979- April 2014 ; . cap label values state P27L; . cap label define P27L > 11 "ME" > 12 "NH" > 13 "VT" > 14 "MA" > 15 "RI" > 16 "CT" > 21 "NY" > 22 "NJ" > 23 "PA" > 31 "OH" > 32 "IN" > 33 "IL" > 34 "MI" > 35 "WI" > 41 "MN" > 42 "IA" > 43 "MO" > 44 "ND" > 45 "SD" > ; . * penatvty: 2007-; . label values penatvty penatvty; . label define penatvty > 57 "United States" > 60 "American Samoa" > 66 "Guam" > 73 "Puerto Rico" > 78 "U.S. Virgin Islands" > 96 "U.S. Outlying Area" > 100 "Albania" > 102 "Austria" > 103 "Belgium" > 104 "Bulgaria" > 105 "Czechoslovakia" > 106 "Denmark" > 108 "Finland" > 109 "France" > 110 "Germany" > 116 "Greece" > 117 "Hungary" > 119 "Ireland/Eire" > 120 "Italy" > 126 "Holland/Netherlands" > 127 "Norway" > 128 "Poland" > 129 "Portugal" > 130 "Azores" > 132 "Romania" > 134 "Spain" > 136 "Sweden" > 137 "Switzerland" > 138 "United Kingdom/Great Britain" > 139 "England" > 140 "Scotland" > 141 "Wales" > 142 "Northern Ireland" > 147 "Yugoslavia" > 148 "Czech Republic" > 149 "Slovakia" > 150 "Bosnia & Herzegovina" > 151 "Croatia" > 152 "Macedonia" > 154 "Serbia" > 156 "Latvia" > 157 "Lithuania" > 158 "Armenia" > 159 "Azerbaijan" > 160 "Belarus" > 161 "Georgia" > 162 "Moldova" > 163 "Russia" > 164 "Ukraine" > 165 "USSR" > 166 "Europe, not specified" > 167 "Kosovo" > 200 "Afghanistan" > 202 "Bangladesh" > 205 "Myanmar (Burma)" > 206 "Cambodia" > 207 "China" > 208 "Cyprus" > 209 "Hong Kong" > 210 "India" > 211 "Indonesia" > 212 "Iran" > 213 "Iraq" > 214 "Israel" > 215 "Japan" > 216 "Jordan" > 217 "Korea" > 220 "South Korea" > 222 "Kuwait" > 223 "Laos" > 224 "Lebanon" > 226 "Malaysia" > 229 "Nepal" > 231 "Pakistan" > 233 "Philippines" > 235 "Saudi Arabia" > 236 "Singapore" > 238 "Sri Lanka" > 239 "Syria" > 240 "Taiwan" > 242 "Thailand" > 243 "Turkey" > 246 "Uzbekistan" > 247 "Vietnam" > 248 "Yemen" > 249 "Asia, not specified" > 300 "Bermuda" > 301 "Canada" > 303 "Mexico" > 310 "Belize" > 311 "Costa Rica" > 312 "El Salvador" > 313 "Guatemala" > 314 "Honduras" > 315 "Nicaragua" > 316 "Panama" > 318 "Central America" > 321 "Antigua and Barbuda" > 323 "Bahamas" > 324 "Barbados" > 327 "Cuba" > 328 "Dominica" > 329 "Dominican Republic" > 330 "Grenada" > 332 "Haiti" > 333 "Jamaica" > 338 "St. Kitts-Nevis" > 339 "St. Lucia" > 340 "St. Vincent and the Grenadines" > 341 "Trinidad and Tobago" > 343 "West Indes, not specified" > 360 "Argentina" > 361 "Bolivia" > 362 "Brazil" > 363 "Chile" > 364 "Colombia" > 365 "Ecuador" > 368 "Guyana" > 369 "Paraguay" > 370 "Peru" > 372 "Uruguay" > 373 "Venezuela" > 374 "South America, not specified" > 399 "Americas, not specified" > 400 "Algeria" > 407 "Cameroon" > 408 "Cape Verde" > 414 "Egypt" > 416 "Ethiopia" > 417 "Eritrea" > 421 "Ghana" > 427 "Kenya" > 429 "Liberia" > 436 "Morocco" > 440 "Nigeria" > 444 "Senegal" > 447 "Sierra Leone" > 448 "Somalia" > 449 "South Africa" > 451 "Sudan" > 453 "Tanzania" > 457 "Uganda" > 461 "Zimbabwe" > 462 "Africa, not specified" > 501 "Australia" > 508 "Fiji" > 515 "New Zealand" > 523 "Tonga" > 527 "Samoa" > 528 "Oceania, not specified" > 555 "Elsewhere" > ; . * pemntvty: 2007-; . label values pemntvty penatvty; . * pefntvty: 2007-; . label values pefntvty penatvty; . * prcitshp: 1994-; . label values prcitshp P16L; . label define P16L > 1 "Native, Born In US" > 2 "Native, Born in PR or US Outlying Area" > 3 "Native, Born Abroad Of US Parent(s)" > 4 "Foreign Born, US Cit By Naturalization" > 5 "Foreign Born, Not a US Citizen" > ; . * prcitflg: 1994-; . label values prcitflg P34L; . label define P34L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * meanings of last few codes of peinusyr change every year!!!; . * peinusyr: 2003-; . label values peinusyr P17L; . label define P17L > -1 "Not In Universe (Born In U.S.)" > 0 "Not Foreign Born" > 1 "Before 1950" > 2 "1950-1959" > 3 "1960-1964" > 4 "1965-1969" > 5 "1970-1974" > 6 "1975-1979" > 7 "1980-1981" > 8 "1982-1983" > 9 "1984-1985" > 10 "1986-1987" > 11 "1988-1989" > 12 "1990-1991" > 13 "1992-1995" > 14 "1994-1995" > 15 "1996-1997" > 16 "1998-1999" > 17 "2000-2001" > 18 "2002-2003" > 19 "2004-2005" > 20 "2006-2007" > 21 "2008-2009" > 22 "2010-2012" > ; . * paidhre: 1979-; . label values paidhre P18L; . label define P18L > 1 "Yes" > 2 "No" > ; . * I25a: 1979-; . label values I25a P28L; . label define P28L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * I25b: 1979-; . label values I25b P29L; . label define P29L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * I25c: 1996-; . label values I25c I25c; . label define I25c > 0 "No Components Allocated" > 1 "1 or more components Allocated" > ; . * I25d: 1996-; . label values I25d I25d; . label define I25d > 0 "No Components Allocated" > 1 "1 or more components Allocated" > ; . * class94: 1994-; . label values class94 P19L; . label define P19L > 1 "Government - Federal" > 2 "Government - State" > 3 "Government - Local" > 4 "Private, For Profit" > 5 "Private, Nonprofit" > 6 "Self-Employed, Incorporated" > 7 "Self-Employed, Unincorporated" > 8 "Without Pay" > ; . * lfsr94: 1994-; . label values lfsr94 P20L; . label define P20L > 1 "Employed-At Work" > 2 "Employed-Absent" > 3 "Unemployed-On Layoff" > 4 "Unemployed-Looking" > 5 "Retired-Not In Labor Force" > 6 "Disabled-Not In Labor Force" > 7 "Other-Not In Labor Force" > ; . * ind02: 2000-; . label values ind02 ind02; . label define ind02 > 170 "Crop production (111)" > 180 "Animal production (112)" > 190 "Forestry except logging (1131, 1132)" > 270 "Logging (1133)" > 280 "Fishing, hunting, and trapping (114)" > 290 "Support activities for agriculture and forestry (115)" > 370 "Oil and gas extraction (211)" > 380 "Coal mining (2121)" > 390 "Metal ore mining (2122)" > 470 "Nonmetallic mineral mining and quarrying (2123)" > 480 "Not specified type of mining (Part of 21)" > 490 "Support activities for mining (213)" > 570 "Electric power generation, transmission and distribution (Pt. 2211)" > 580 "Natural gas distribution (Pt.s2212)" > 590 "Electric and gas, and other combinations (Pts. 2211, 2212)" > 670 "Water, steam, air-conditioning, and irrigation systems (22131, 22133)" > 680 "Sewage treatment facilities (22132)" > 690 "Not specified utilities (Part of 22)" > 770 "** Construction (23)" > 1070 "Animal food, grain and oilseed milling (3111, 3112)" > 1080 "Sugar and confectionery products (3113)" > 1090 "Fruit and vegetable preserving and specialty food manufacturing (3114)" > 1170 "Dairy product manufacturing (3115)" > 1180 "Animal slaughtering and processing (3116)" > 1190 "Retail bakeries (311811)" > 1270 "Bakeries, except retail (3118 exc. 311811)" > 1280 "Seafood and other miscellaneous foods, n.e.c. (3117, 3119)" > 1290 "Not specified food industries (Part of 311)" > 1370 "Beverage manufacturing (3121)" > 1390 "Tobacco manufacturing (3122)" > 1470 "Fiber, yarn, and thread mills (3131)" > 1480 "Fabric mills, except knitting (3132 exc. 31324)" > 1490 "Textile and fabric finishing and coating mills (3133)" > 1570 "Carpet and rug mills (31411)" > 1590 "Textile product mills, except carpets and rugs (314 exc. 31411)" > 1670 "Knitting mills (31324, 3151)" > 1680 "Cut and sew apparel manufacturing (3152)" > 1690 "Apparel accessories and other apparel manufacturing (3159)" > 1770 "Footwear manufacturing (3162)" > 1790 "Leather tanning and products, except footwear manufacturing (3161, 3169)" > 1870 "Pulp, paper, and paperboard mills (3221)" > 1880 "Paperboard containers and boxes (32221)" > 1890 "Miscellaneous paper and pulp products (32222,32223, 32229)" > 1990 "Printing and related support activities (3231)" > 2070 "Petroleum refining (32411)" > 2090 "Miscellaneous petroleum and coal products (32419)" > 2170 "Resin, synthetic rubber and fibers, and filaments manufacturing (3252)" > 2180 "Agricultural chemical manufacturing (3253)" > 2190 "Pharmaceutical and medicine manufacturing (3254)" > 2270 "Paint, coating, and adhesive manufacturing B46 (3255)" > 2280 "Soap, cleaning compound, and cosmetics manufacturing (3256)" > 2290 "Industrial and miscellaneous chemicals (3251, 3259)" > 2370 "Plastics product manufacturing (3261)" > 2380 "Tire manufacturing (32621)" > 2390 "Rubber products, except tires, manufacturing (32622, 32629)" > 2470 "Pottery, ceramics, and related products manufacturing (32711)" > 2480 "Structural clay product manufacturing (32712)" > 2490 "Glass and glass product manufacturing (3272)" > 2570 "Cement, concrete, lime, and gypsum product manufacturing (3273, 3274)" > 2590 "Miscellaneous nonmetallic mineral product manufacturing (3279)" > 2670 "Iron and steel mills and steel product manufacturing (3311, 3312)" > 2680 "Aluminum production and processing (3313)" > 2690 "Nonferrous metal, except aluminum, production and processing (3314)" > 2770 "Foundries (3315)" > 2780 "Metal forgings and stampings (3321)" > 2790 "Cutlery and hand tool manufacturing (3322)" > 2870 "Structural metals, and tank and shipping container manufacturing (3323, 3324)" > 2880 "Machine shops; turned product; screw, nut and bolt manufacturing (3327)" > 2890 "Coating, engraving, heat treating and allied activities (3328)" > 2970 "Ordnance (332992 to 332995)" > 2980 "Miscellaneous fabricated metal products manufacturing (3325, 3326, 3329 exc. 332992, 3 > 32993, 332994, 332995)" > 2990 "Not specified metal industries (Part of 331 and 332)" > 3070 "Agricultural implement manufacturing (33311)" > 3080 "Construction, mining and oil field machinery manufacturing (33312, 33313)" > 3090 "Commercial and service industry machinery manufacturing (3333)" > 3170 "Metalworking machinery manufacturing (3335)" > 3180 "Engines, turbines, and power transmission equipment manufacturing (3336)" > 3190 "Machinery manufacturing, n.e.c. (3332, 3334, 3339)" > 3290 "Not specified machinery manufacturing (Part of 333)" > 3360 "Computer and peripheral equipment manufacturing (3341)" > 3370 "Communications, audio, and video equipment manufacturing (3342, 3343)" > 3380 "Navigational, measuring, electromedical, and control instruments manufacturing (3345)" > 3390 "Electronic component and product manufacturing, n.e.c. (3344, 3346)" > 3470 "Household appliance manufacturing (3352)" > 3490 "Electrical lighting, equipment, and supplies manufacturing, n.e.c. (3351, 3353, 3359)" > 3570 "Motor vehicles and motor vehicle equipment manufacturing (3361, 3362, 3363)" > 3580 "Aircraft and parts manufacturing (336411 to 336413)" > 3590 "Aerospace products and parts manufacturing (336414, 336415, 336419)" > 3670 "Railroad rolling stock manufacturing (3365)" > 3680 "Ship and boat building (3366)" > 3690 "Other transportation equipment manufacturing (3369)" > 3770 "Sawmills and wood preservation (3211)" > 3780 "Veneer, plywood, and engineered wood products (3212)" > 3790 "Prefabricated wood buildings and mobile homes (321991, 321992)" > 3870 "Miscellaneous wood products (3219 exc. 321991, 321992)" > 3890 "Furniture and related product manufacturing (337)" > 3960 "Medical equipment and supplies manufacturing (3391)" > 3970 "Toys, amusement, and sporting goods manufacturing (33992, 33993)" > 3980 "Miscellaneous manufacturing, n.e.c. (3399 exc. 33992, 33993)" > 3990 "Not specified manufacturing industries (Part of 31, 32, 33)" > 4070 "** Motor vehicles, parts and supplies, merchant wholesalers (*4231)" > 4080 "** Furniture and home furnishing, merchant wholesalers (*4232)" > 4090 "** Lumber and other construction materials, merchant wholesalers (*4233)" > 4170 "** Professional and commercial equipment and supplies, merchant wholesalers (*4234)" > 4180 "** Metals and minerals, except petroleum, merchant wholesalers (*4235)" > 4190 "** Electrical goods, merchant wholesalers (*4236)" > 4260 "** Hardware, plumbing and heating equipment, and supplies, merchant wholesalers (*4237 > )" > 4270 "** Machinery, equipment, and supplies, merchant wholesalers (*4238)" > 4280 "** Recyclable material, merchant wholesalers (*42393)" > 4290 "** Miscellaneous durable goods, merchant wholesalers (*4239 exc. 42393)" > 4370 "** Paper and paper products, merchant wholesalers (*4241)" > 4380 "** Drugs, sundries, and chemical and allied products, merchant (wholesalerss*4242, 424 > 6)" > 4390 "** Apparel, fabrics, and notions, merchant wholesalers (*4243)" > 4470 "** Groceries and related products, merchant wholesalers (*4244)" > 4480 "** Farm product raw materials, merchant wholesalers (*4245)" > 4490 "** Petroleum and petroleum products, merchant wholesalers (*4247)" > 4560 "** Alcoholic beverages, merchant wholesalers (*4248)" > 4570 "** Farm supplies, merchant wholesalers (*42491)" > 4580 "** Miscellaneous (nondurable goods, merchant wholesalerss*4249 exc. 42491)" > 4585 "*** Wholesale electronic markets, agents and brokers New industry (*4251)" > 4590 "**Not specified wholesale trade (Part of 42)" > 4670 "Automobile dealers (4411)" > 4680 "Other motor vehicle dealers (4412)" > 4690 "Auto parts, accessories, and tire stores (4413)" > 4770 "Furniture and home furnishings stores (442)" > 4780 "Household appliance stores (443111)" > 4790 "Radio, TV, and computer stores (443112, 44312)" > 4870 "Building material and supplies dealers (4441 exc. 44413)" > 4880 "Hardware stores (44413)" > 4890 "Lawn and garden equipment and supplies stores (4442)" > 4970 "Grocery stores (4451)" > 4980 "Specialty food stores (4452)" > 4990 "Beer, wine, and liquor stores (4453)" > 5070 "Pharmacies and drug stores (44611)" > 5080 "Health and personal care, except drug, stores (446 exc. 44611)" > 5090 "Gasoline stations (447)" > 5170 "Clothing and accessories, except shoe, stores (448 exc. 44821, 4483)" > 5180 "Shoe stores (44821)" > 5190 "Jewelry, luggage, and leather goods stores (4483)" > 5270 "Sporting goods, camera, and hobby and toy stores (44313, 45111, 45112)" > 5280 "Sewing, needlework, and piece goods stores (45113)" > 5290 "Music stores (45114, 45122)" > 5370 "Book stores and news dealers (45121)" > 5380 "****Department stores and discount stores (s45211)" > 5390 "Miscellaneous general merchandise stores (4529)" > 5470 "Retail florists (4531)" > 5480 "Office supplies and stationery stores (45321)" > 5490 "Used merchandise stores (4533)" > 5570 "Gift, novelty, and souvenir shops (45322)" > 5580 "Miscellaneous retail stores (4539)" > 5590 "*** Electronic shopping (New industry *454111)" > 5591 "*** Electronic auctions (New industrys*454112)" > 5592 "** Mail order houses (*454113)" > 5670 "Vending machine operators (4542)" > 5680 "Fuel dealers (45431)" > 5690 "Other direct selling establishments (45439)" > 5790 "Not specified retail trade (Part of 44, 45)" > 6070 "Air transportation (481)" > 6080 "Rail transportation (482)" > 6090 "Water transportation (483)" > 6170 "Truck transportation (484)" > 6180 "Bus service and urban transit (4851, 4852, 4854, 4855, 4859)" > 6190 "Taxi and limousine service (4853)" > 6270 "Pipeline transportation (486)" > 6280 "Scenic and sightseeing transportation (487)" > 6290 "Services incidental to transportation (488)" > 6370 "Postal Service (491)" > 6380 "Couriers and messengers (492)" > 6390 "Warehousing and storage (493)" > 6470 "**Newspaper publishers (51111)" > 6480 "**Publishing, except newspapers and software (5111 exc. 51111)" > 6490 "Software publishing (5112)" > 6570 "Motion pictures and video industries (5121)" > 6590 "Sound recording industries (5122)" > 6670 "Radio and television broadcasting and cable (5151, 5152, 5175)" > 6672 "Internet publishing and broadcasting and web search portals (51913)" > 6675 "*** Internet publishing and broadcasting (New industrys*5161)" > 6680 "Wired telecommunications carriers (*5171)" > 6690 "Other telecommunications services (*517 exc. 5171, 5175)" > 6692 "*** Internet service providers New industry (*5181)" > 6695 "**** Data processing, hosting, and related services (*5182)" > 6770 "Libraries and archives (*51912)" > 6780 "Other information services (*5191 exc. 51912)" > 6870 "Banking and related activities (521, 52211,52219)" > 6880 "Savings institutions, including credit unions (52212, 52213)" > 6890 "Non-depository credit and related activities (5222, 5223)" > 6970 "Securities, commodities, funds, trusts, and other financial investments (523, 525)" > 6990 "Insurance carriers and related activities (524)" > 7070 "Real estate (531)" > 7080 "Automotive equipment rental and leasing (5321)" > 7170 "Video tape and disk rental (53223)" > 7180 "Other consumer goods rental (53221, 53222, 53229, 5323)" > 7190 "Commercial, industrial, and other intangible assets rental and leasing (5324, 533)" > 7270 "Legal services (5411)" > 7280 "Accounting, tax preparation, bookkeeping, and payroll services (5412)" > 7290 "Architectural, engineering, and related services (5413)" > 7370 "Specialized design services (5414)" > 7380 "Computer systems design and related services (5415)" > 7390 "Management, scientific, and technical consulting services (5416)" > 7460 "Scientific research and development services (5417)" > 7470 "Advertising and related services (5418)" > 7480 "Veterinary services (54194)" > 7490 "Other professional, scientific, and technical services (5419 exc. 54194)" > 7570 "Management of companies and enterprises (551)" > 7580 "Employment services (5613)" > 7590 "Business support services (5614)" > 7670 "Travel arrangements and reservation services (5615)" > 7680 "Investigation and security services (5616)" > 7690 "** Services to buildings and dwellings (5617 exc. 56173)" > 7770 "Landscaping services (56173)" > 7780 "Other administrative and other support services (5611, 5612, 5619)" > 7790 "Waste management and remediation services (562)" > 7860 "Elementary and secondary schools (6111)" > 7870 "Colleges and universities, including junior colleges (6112, 6113)" > 7880 "Business, technical, and trade schools and training (6114, 6115)" > 7890 "Other schools, instruction, and educational services (6116, 6117)" > 7970 "Offices of physicians (6211)" > 7980 "Offices of dentists (6212)" > 7990 "Offices of chiropractors (62131)" > 8070 "Offices of optometrists (62132)" > 8080 "Offices of other health practitioners (6213 exc. 62131, 62132)" > 8090 "Outpatient care centers (6214)" > 8170 "Home health care services (6216)" > 8180 "Other health care services (6215, 6219)" > 8190 "Hospitals (622)" > 8270 "Nursing care facilities (6231)" > 8290 "Residential care facilities, without nursing (6232, 6233, 6239)" > 8370 "Individual and family services (6241)" > 8380 "Community food and housing, and emergency services (6242)" > 8390 "Vocational rehabilitation services (6243)" > 8470 "Child day care services (6244)" > 8560 "Independent artists, performing arts, spectator sports, and related industries (711)" > 8570 "Museums, art galleries, historical sites, and similar institutions (712)" > 8580 "Bowling centers (71395)" > 8590 "Other amusement, gambling, and recreation industries (713 exc. 71395)" > 8660 "Traveler accommodation (7211)" > 8670 "Recreational vehicle parks and camps, and rooming and boarding houses (7212, 7213)" > 8680 "Restaurants and other food services (722 exc. 7224)" > 8690 "Drinking places, alcoholic beverages (7224)" > 8770 "Automotive repair and maintenance (8111 exc. 811192)" > 8780 "Car washes (811192)" > 8790 "Electronic and precision equipment repair and maintenance (8112)" > 8870 "Commercial and industrial machinery and equipment repair and maintenance (8113)" > 8880 "Personal and household goods repair and maintenance (8114 exc. 81143)" > 8890 "Footwear and leather goods repair (81143)" > 8970 "Barber shops (812111)" > 8980 "Beauty salons (812112)" > 8990 "Nail salons and other personal care services (812113, 81219)" > 9070 "Drycleaning and laundry services (8123)" > 9080 "Funeral homes, cemeteries, and crematories (8122)" > 9090 "Other personal services (8129)" > 9160 "Religious organizations (8131)" > 9170 "Civic, social, advocacy organizations, and grantmaking and giving services (8132, 8133 > , 8134)" > 9180 "Labor unions (81393)" > 9190 "Business, professional, political, and similar organizations (8139 exc. 81393)" > 9290 "Private households (814)" > 9370 "Executive offices and legislative bodies (92111, 92112, 92114, pt. 92115)" > 9380 "Public finance activities (92113)" > 9390 "Other general government and support (92119)" > 9470 "Justice, public order, and safety activities (922, pt. 92115)" > 9480 "Administration of human resource programs (923)" > 9490 "Administration of environmental quality and housing programs (924, 925)" > 9570 "Administration of economic programs and space research (926, 927)" > 9590 "National security and international affairs (928)" > 9890 "Armed Forces" > 9970 "Problem referral" > 9990 "Uncodable ((Includes Refused or reported Classified))" > 9670 "U. S. Army" > 9680 "U. S. Air Force" > 9690 "U. S. Navy" > 9770 "U. S. Marines" > 9780 "U. S. Coast Guard" > 9790 "U. S. Armed Forces, Branch Not Specified" > 9870 "Military Reserves or National Guard" > ; . *dind02: 2000-; . label values dind02 dind02; . label define dind02 > 1 "Agriculture" > 2 "Forestry, logging, fishing, hunting, and trapping" > 3 "Mining" > 4 "Construction" > 5 "Nonmetallic mineral products" > 6 "Primary metals and fabricated metal products" > 7 "Machinery manufacturing" > 8 "Computer and electronic products" > 9 "Electrical equipment, appliance manufacturing" > 10 "Transportation equipment manufacturing" > 11 "Wood products" > 12 "Furniture and fixtures manufacturing" > 13 "Miscellaneous and not specified manufacturing" > 14 "Food manufacturing" > 15 "Beverage and tobacco products" > 16 "Textile, apparel, and leather manufacturing" > 17 "Paper and printing" > 18 "Petroleum and coal products" > 19 "Chemical manufacturing" > 20 "Plastics and rubber products" > 21 "Wholesale trade" > 22 "Retail trade" > 23 "Transportation and warehousing" > 24 "Utilities" > 25 "Publishing industries (except internet)" > 26 "Motion picture and sound recording industries" > 27 "Broadcasting (except internet)" > 28 "Internet publishing and broadcasting" > 29 "Telecommunications" > 30 "Internet service providers and data processing services" > 31 "Other information services" > 32 "Finance" > 33 "Insurance" > 34 "Real Estate" > 35 "Rental and leasing services" > 36 "Professional and Technical services" > 37 "Management of companies and enterprises" > 38 "Administrative and support services" > 39 "Waste management and remediation services" > 40 "Educational services" > 41 "Hospitals" > 42 "Health care services , except hospitals" > 43 "Social assistance" > 44 "Arts, entertainment, and recreation" > 45 "Accomodation" > 46 "Food services and drinking places" > 47 "Repair and maintenance" > 48 "Personal and laundry services" > 49 "Membership associations and organizations" > 50 "Private households" > 51 "Public Administration" > 52 "Armed forces" > ; . * occ2011: 2011-; . *label values occ2011 occ2011l ; . *label define occ2011l > 10 "Chief executives 11-1011" > 20 "General and operations managers 11-1021" > 30 "Legislators 11-1031" > 40 "Advertising and promotions managers 11-2011" > 50 "Marketing and sales managers 11-2020" > 60 "Public relations managers 11-2031" > 100 "Administrative services managers 11-3011" > 110 "Computer and information systems managers 11-3021" > 120 "Financial managers 11-3031" > 135 "Compensation and benefits managers 11-3111" > 136 "Human Resources Managers 11-3121" > 137 "Training and Development Managers 11-3131" > 140 "Industrial production managers 11-3051" > 150 "Purchasing managers 11-3061" > 160 "Transportation, storage, and distribution managers 11-3071" > 205 "Farmers, Ranchers, and other Agricultural Managers 11-9013" > 220 "Construction managers 11-9021" > 230 "Education administrators 11-9030" > 300 "Engineering managers 11-9041" > 310 "Food service managers 11-9051" > 325 "Funeral Service Managers 11-9061" > 330 "Gaming managers 11-9071" > 340 "Lodging managers 11-9081" > 350 "Medical and health services managers 11-9111" > 360 "Natural sciences managers 11-9121" > 400 "Postmasters and mail superintendents 11-9131" > 410 "Property, real estate, and community association managers 11-9141" > 420 "Social and community service managers 11-9151" > 425 "Emergency Management Directors 11-9161" > 430 "Managers, all other 11-9199" > 500 "Agents and business managers of artists, performers, and athletes 13-1011" > 510 "Purchasing agents and buyers, farm products 13-1021" > 520 "Wholesale and retail buyers, except farm products 13-1022" > 530 "Purchasing agents, except wholesale, retail, and farm products 13-1023" > 540 "Claims adjusters, appraisers, examiners, and investigators 13-1030" > 565 "Compliance Officers 13-1041" > 600 "Cost estimators 13-1051" > 630 "Human resources workers 13-1070" > 640 "Compensation, benefits, and job analysis specialists 13-1141" > 650 "Training and development specialists 13-1151" > 700 "Logisticians 13-1081" > 710 "Management analysts 13-1111" > 725 "Meeting, convention, and event planners 13-1121" > 726 "Fundraisers 13-1131" > 735 "Market research analysts and marketing specialists 13-1161" > 740 "Business operations specialists, all other 13-1199" > 800 "Accountants and auditors 13-2011" > 810 "Appraisers and assessors of real estate 13-2021" > 820 "Budget analysts 13-2031" > 830 "Credit analysts 13-2041" > 840 "Financial analysts 13-2051" > 850 "Personal financial advisors 13-2052" > 860 "Insurance underwriters 13-2053" > 900 "Financial examiners 13-2061" > 910 "Loan counselors and officers 13-2070" > 930 "Tax examiners, collectors, and revenue agents 13-2081" > 940 "Tax preparers 13-2082" > 950 "Financial specialists, all other 13-2099" > 1000 "Computer scientists and systems analysts 15-10XX" > 1005 "Computer and information research scientists 15-1111" > 1006 "Computer systems analysts 15-1121" > 1007 "Information security analysts 15-1122" > 1010 "Computer programmers 15-1131" > 1020 "Software developers, applications and systems software 15-113X" > 1030 "Web developers 15-1134" > 1050 "Computer support specialists 15-1150" > 1060 "Database administrators 15-1141" > 1105 "Network and computer systems administrators 15-1142" > 1106 "Computer network architects 15-1143" > 1107 "Computer occupations, all other 15-1199" > 1200 "Actuaries 15-2011" > 1210 "Mathematicians 15-2021" > 1220 "Operations research analysts 15-2031" > 1230 "Statisticians 15-2041" > 1240 "Miscellaneous mathematical science occupations 15-2090" > 1300 "Architects, except naval 17-1010" > 1310 "Surveyors, cartographers, and photogrammetrists 17-1020" > 1320 "Aerospace engineers 17-2011" > 1330 "Agricultural engineers 17-2021" > 1340 "Biomedical engineers 17-2031" > 1350 "Chemical engineers 17-2041" > 1360 "Civil engineers 17-2051" > 1400 "Computer hardware engineers 17-2061" > 1410 "Electrical and electronic engineers 17-2070" > 1420 "Environmental engineers 17-2081" > 1430 "Industrial engineers, including health and safety 17-2110" > 1440 "Marine engineers and naval architects 17-2121" > 1450 "Materials engineers 17-2131" > 1460 "Mechanical engineers 17-2141" > 1500 "Mining and geological engineers, including mining safety engineers 17-2151" > 1510 "Nuclear engineers 17-2161" > 1520 "Petroleum engineers 17-2171" > 1530 "Engineers, all other 17-2199" > 1540 "Drafters 17-3010" > 1550 "Engineering technicians, except drafters 17-3020" > 1560 "Surveying and mapping technicians 17-3031" > 1600 "Agricultural and food scientists 19-1010" > 1610 "Biological scientists 19-1020" > 1640 "Conservation scientists and foresters 19-1030" > 1650 "Medical scientists 19-1040" > 1660 "Life Scientists, all other 16-1099" > 1700 "Astronomers and physicists 19-2010" > 1710 "Atmospheric and space scientists 19-2021" > 1720 "Chemists and materials scientists 19-2030" > 1740 "Environmental scientists and geoscientists 19-2040" > 1760 "Physical scientists, all other 19-2099" > 1800 "Economists 19-3011" > 1815 "Survey Researchers 19-3022" > 1820 "Psychologists 19-3030" > 1830 "Sociologists 19-3041" > 1840 "Urban and regional planners 19-3051" > 1860 "Miscellaneous social scientists and related workers 19-3090" > 1900 "Agricultural and food science technicians 19-4011" > 1910 "Biological technicians 19-4021" > 1920 "Chemical technicians 19-4031" > 1930 "Geological and petroleum technicians 19-4041" > 1940 "Nuclear technicians 19-4051" > 1950 "Social science research assistants 19-4061" > 1965 "Miscellaneous life, physical, and social science technicians 19-4090" > 2000 "Counselors 21-1010" > 2010 "Social workers 21-1020" > 2015 "Probation Officers and Correctional Treatment Specialists 21-1092" > 2016 "Social and Human Service Assistants 21-1093" > 2025 "Miscellaneous community and social service specialists, 21-109X" > 2040 "Clergy 21-2011" > 2050 "Directors, religious activities and education 21-2021" > 2060 "Religious workers, all other 21-2099" > 2100 "Lawyers, Judges, magistrates, and other judicial workers 23-1011" > 2105 "Judicial Law Clerks 23-1012" > 2110 "Judges, Magistrates, and Other Judicial Workers 23-1020" > 2145 "Paralegals and Legal Assistants 23-2011" > 2160 "Miscellaneous Legal Support Workers 23-2090" > 2200 "Postsecondary teachers 25-1000" > 2300 "Preschool and kindergarten teachers 25-2010" > 2310 "Elementary and middle school teachers 25-2020" > 2320 "Secondary school teachers 25-2030" > 2330 "Special education teachers 25-2050" > 2340 "Other teachers and instructors 25-3000" > 2400 "Archivists, curators, and museum technicians 25-4010" > 2430 "Librarians 25-4021" > 2440 "Library technicians 25-4031" > 2540 "Teacher assistants 25-9041" > 2550 "Other education, training, and library workers 25-90XX" > 2600 "Artists and related workers 27-1010" > 2630 "Designers 27-1020" > 2700 "Actors 27-2011" > 2710 "Producers and directors 27-2012" > 2720 "Athletes, coaches, umpires, and related workers 27-2020" > 2740 "Dancers and choreographers 27-2030" > 2750 "Musicians, singers, and related workers 27-2040" > 2760 "Entertainers and performers, sports and related workers, all other 27-2099" > 2800 "Announcers 27-3010" > 2810 "News analysts, reporters and correspondents 27-3020" > 2825 "Public Relations Specialists 27-3031" > 2830 "Editors 27-3041" > 2840 "Technical writers 27-3042" > 2850 "Writers and authors 27-3043" > 2860 "Miscellaneous media and communication workers 27-3090" > 2900 "Broadcast and sound engineering technicians and radio operators 27-4010" > 2910 "Photographers 27-4021" > 2920 "Television, video, and motion picture camera operators and editors 27-4030" > 2960 "Media and communication equipment workers, all other 27-4099" > 3000 "Chiropractors 29-1011" > 3010 "Dentists 29-1020" > 3030 "Dietitians and nutritionists 29-1031" > 3040 "Optometrists 29-1041" > 3050 "Pharmacists 29-1051" > 3060 "Physicians and surgeons 29-1060" > 3110 "Physician assistants 29-1071" > 3120 "Podiatrists 29-1081" > 3140 "Audiologists 29-1181" > 3150 "Occupational therapists 29-1122" > 3160 "Physical therapists 29-1123" > 3200 "Radiation therapists 29-1124" > 3210 "Recreational therapists 29-1125" > 3220 "Respiratory therapists 29-1126" > 3230 "Speech-language pathologists 29-1127" > 3235 "Exercise Physiologists 29-1128" > 3245 "Therapists, all other 29-1129" > 3250 "Veterinarians 29-1131" > 3255 "Registered Nurses 29-1141" > 3256 "Nurse Anesthetists 29-1151" > 3257 "Nurse Midwives 29-1161" > 3258 "Nurse Practitioners 29-1171" > 3260 "Health diagnosing and treating practitioners, all other 29-1199" > 3300 "Clinical laboratory technologists and technicians 29-2010" > 3310 "Dental hygienists 29-2021" > 3320 "Diagnostic related technologists and technicians 29-2030" > 3400 "Emergency medical technicians and paramedics 29-2041" > 3420 "Health Practitioner Support Technologists and Technicians 29-2050" > 3500 "Licensed practical and licensed vocational nurses 29-2061" > 3510 "Medical records and health information technicians 29-2071" > 3520 "Opticians, dispensing 29-2081" > 3535 "Miscellaneous Health Technologists and Technicians 29-2090" > 3540 "Other healthcare practitioners and technical occupations 29-9000" > 3600 "Nursing, psychiatric, and home health aides 31-1010" > 3610 "Occupational therapist assistants and aides 31-2010" > 3620 "Physical therapist assistants and aides 31-2020" > 3630 "Massage therapists 31-9011" > 3640 "Dental assistants 31-9091" > 3645 "Medical Assistants 31-9092" > 3646 "Medical Transcriptionists 31-9094" > 3647 "Pharmacy Aides 31-9095" > 3648 "Veterinary Assistants and Laboratory Animal Caretakers 31-9096" > 3649 "Phlebotomists 31-9097" > 3655 "Miscellaneous Healthcare Support Occupations, Including 31-909X" > 3700 "First-line supervisors/managers of correctional officers 33-1011" > 3710 "First-line supervisors/managers of police and detectives 33-1012" > 3720 "First-line supervisors/managers of fire fighting and prevention workers 33-1021" > 3730 "Supervisors, protective service workers, all other 33-1099" > 3740 "Fire fighters 33-2011" > 3750 "Fire inspectors 33-2020" > 3800 "Bailiffs, correctional officers, and jailers 33-3010" > 3820 "Detectives and criminal investigators 33-3021" > 3830 "Fish and game wardens 33-3031" > 3840 "Parking enforcement workers 33-3041" > 3850 "Police and sheriff's patrol officers 33-3051" > 3860 "Transit and railroad police 33-3052" > 3900 "Animal control workers 33-9011" > 3910 "Private detectives and investigators 33-9021" > 3930 "Security Guards and Gaming Surveillance Officers 33-9030" > 3940 "Crossing guards 33-9091" > 3945 "Transportation Security Screeners 33-9093" > 3955 "Lifeguards and Other Recreational, and all Other Protective Service Workers 33-909X" > 4000 "Chefs and head cooks 35-1011" > 4010 "First-line supervisors/managers of food preparation and serving workers 35-1012" > 4020 "Cooks 35-2010" > 4030 "Food preparation workers 35-2021" > 4040 "Bartenders 35-3011" > 4050 "Combined food preparation and serving workers, including fast food 35-3021" > 4060 "Counter attendants, cafeteria, food concession, and coffee shop 35-3022" > 4110 "Waiters and waitresses 35-3031" > 4120 "Food servers, nonrestaurant 35-3041" > 4130 "Dining room and cafeteria attendants and bartender helpers 35-9011" > 4140 "Dishwashers 35-9021" > 4150 "Hosts and hostesses, restaurant, lounge, and coffee shop 35-9031" > 4160 "Food preparation and serving related workers, all other 35-9099" > 4200 "First-line supervisors/managers of housekeeping and janitorial workers 37-1011" > 4210 "First-line supervisors/managers of landscaping, lawn service, and groundskeeping worke > rs 37-1012" > 4220 "Janitors and building cleaners 31-201X" > 4230 "Maids and housekeeping cleaners 37-2012" > 4240 "Pest control workers 37-2021" > 4250 "Grounds maintenance workers 37-3010" > 4300 "First-line supervisors/managers of gaming workers 39-1010" > 4320 "First-line supervisors/managers of personal service workers 39-1021" > 4340 "Animal trainers 39-2011" > 4350 "Nonfarm animal caretakers 39-2021" > 4400 "Gaming services workers 39-3010" > 4410 "Motion picture projectionists 39-3021" > 4420 "Ushers, lobby attendants, and ticket takers 39-3031" > 4430 "Miscellaneous entertainment attendants and related workers 39-3090" > 4460 "Funeral service workers 39-40XX" > 4465 "Morticians, Undertakers, and Funeral Directors 39-4031" > 4500 "Barbers 39-5011" > 4510 "Hairdressers, hairstylists, and cosmetologists 39-5012" > 4520 "Miscellaneous personal appearance workers 39-5090" > 4530 "Baggage porters, bellhops, and concierges 39-6010" > 4540 "Tour and travel guides 39-7010" > 4600 "Child care workers 39-9011" > 4610 "Personal and home care aides 39-9021" > 4620 "Recreation and fitness workers 39-9030" > 4640 "Residential advisors 39-9041" > 4650 "Personal care and service workers, all other 39-9099" > 4700 "First-line supervisors/managers of retail sales workers 41-1011" > 4710 "First-line supervisors/managers of non-retail sales workers 41-1012" > 4720 "Cashiers 41-2010" > 4740 "Counter and rental clerks 41-2021" > 4750 "Parts salespersons 41-2022" > 4760 "Retail salespersons 41-2031" > 4800 "Advertising sales agents 41-3011" > 4810 "Insurance sales agents 41-3021" > 4820 "Securities, commodities, and financial services sales agents 41-3031" > 4830 "Travel agents 41-3041" > 4840 "Sales representatives, services, all other 41-3099" > 4850 "Sales representatives, wholesale and manufacturing 41-4010" > 4900 "Models, demonstrators, and product promoters 41-9010" > 4920 "Real estate brokers and sales agents 41-9020" > 4930 "Sales engineers 41-9031" > 4940 "Telemarketers 41-9041" > 4950 "Door-to-door sales workers, news and street vendors, and related workers 41-9091" > 4965 "Sales and Related Workers, all other 41-9099" > 5000 "First-line supervisors/managers of office and administrative support workers 43-1011" > 5010 "Switchboard operators, including answering service 43-2011" > 5020 "Telephone operators 43-2021" > 5030 "Communications equipment operators, all other 43-2099" > 5100 "Bill and account collectors 43-3011" > 5110 "Billing and posting clerks and machine operators 43-3021" > 5120 "Bookkeeping, accounting, and auditing clerks 43-3031" > 5130 "Gaming cage workers 43-3041" > 5140 "Payroll and timekeeping clerks 43-3051" > 5150 "Procurement clerks 43-3061" > 5160 "Tellers 43-3071" > 5165 "Financial Clerks, all other 43-3099" > 5200 "Brokerage clerks 43-4011" > 5210 "Correspondence clerks 43-4021" > 5220 "Court, municipal, and license clerks 43-4031" > 5230 "Credit authorizers, checkers, and clerks 43-4041" > 5240 "Customer service representatives 43-4051" > 5250 "Eligibility interviewers, government programs 43-4061" > 5260 "File Clerks 43-4071" > 5300 "Hotel, motel, and resort desk clerks 43-4081" > 5310 "Interviewers, except eligibility and loan 43-4111" > 5320 "Library assistants, clerical 43-4121" > 5330 "Loan interviewers and clerks 43-4131" > 5340 "New accounts clerks 43-4141" > 5350 "Order clerks 43-4151" > 5360 "Human resources assistants, except payroll and timekeeping 43-4161" > 5400 "Receptionists and information clerks 43-4171" > 5410 "Reservation and transportation ticket agents and travel clerks 43-4181" > 5420 "Information and record clerks, all other 43-4199" > 5500 "Cargo and freight agents 43-5011" > 5510 "Couriers and messengers 43-5021" > 5520 "Dispatchers 43-5030" > 5530 "Meter readers, utilities 43-5041" > 5540 "Postal service clerks 43-5051" > 5550 "Postal service mail carriers 43-5052" > 5560 "Postal service mail sorters, processors, and processing machine operators 43-5053" > 5600 "Production, planning, and expediting clerks 43-5061" > 5610 "Shipping, receiving, and traffic clerks 43-5071" > 5620 "Stock clerks and order fillers 43-5081" > 5630 "Weighers, measurers, checkers, and samplers, recordkeeping 43-5111" > 5700 "Secretaries and administrative assistants 43-6010" > 5800 "Computer operators 43-9011" > 5810 "Data entry keyers 43-9021" > 5820 "Word processors and typists 43-9022" > 5830 "Desktop publishers 43-9031" > 5840 "Insurance claims and policy processing clerks 43-9041" > 5850 "Mail clerks and mail machine operators, except postal service 43-9051" > 5860 "Office clerks, general 43-9061" > 5900 "Office machine operators, except computer 43-9071" > 5910 "Proofreaders and copy markers 43-9081" > 5920 "Statistical assistants 43-9111" > 5940 "Office and Administrative Support Workers, all other 43-9199" > 6005 "First-line supervisors of farming, fishing, and forestry workers 45-1011" > 6010 "Agricultural inspectors 45-2011" > 6020 "Animal breeders 45-2021" > 6040 "Graders and sorters, agricultural products 45-2041" > 6050 "Miscellaneous agricultural workers 45-2090" > 6100 "Fishers and related fishing workers 45-3011" > 6110 "Hunters and trappers 45-3021" > 6120 "Forest and conservation workers 45-4011" > 6130 "Logging workers 45-4020" > 6200 "First-line supervisors/managers of construction trades and extraction workers 47-1011" > 6210 "Boilermakers 47-2011" > 6220 "Brickmasons, blockmasons, and stonemasons 47-2020" > 6230 "Carpenters 47-2031" > 6240 "Carpet, floor, and tile installers and finishers 47-2040" > 6250 "Cement masons, concrete finishers, and terrazzo workers 47-2050" > 6260 "Construction laborers 47-2061" > 6300 "Paving, surfacing, and tamping equipment operators 47-2071" > 6310 "Pile-driver operators 47-2072" > 6320 "Operating engineers and other construction equipment operators 47-2073" > 6330 "Drywall installers, ceiling tile installers, and tapers 47-2080" > 6355 "Electricians 47-2111" > 6360 "Glaziers 47-2121" > 6400 "Insulation workers 47-2130" > 6420 "Painters, construction and maintenance 47-2141" > 6430 "Paperhangers 47-2142" > 6440 "Pipelayers, plumbers, pipefitters, and steamfitters 47-2150" > 6460 "Plasterers and stucco masons 47-2161" > 6500 "Reinforcing iron and rebar workers 47-2171" > 6515 "Roofers 47-2181" > 6520 "Sheet metal workers 47-2211" > 6530 "Structural iron and steel workers 47-2221" > 6540 "Solar Photovoltaic Installers 47-2231" > 6600 "Helpers, construction trades 47-3010" > 6660 "Construction and building inspectors 47-4011" > 6700 "Elevator installers and repairers 47-4021" > 6710 "Fence erectors 47-4031" > 6720 "Hazardous materials removal workers 47-4041" > 6730 "Highway maintenance workers 47-4051" > 6740 "Rail-track laying and maintenance equipment operators 47-4061" > 6750 "Septic tank servicers and sewer pipe cleaners 47-4071" > 6765 "Miscellaneous construction and related workers 47-4090" > 6800 "Derrick, rotary drill, and service unit operators, oil, gas, and mining 47-5010" > 6820 "Earth drillers, except oil and gas 47-5021" > 6830 "Explosives workers, ordnance handling experts, and blasters 47-5031" > 6840 "Mining machine operators 47-5040" > 6910 "Roof bolters, mining 47-5061" > 6920 "Roustabouts, oil and gas 47-5071" > 6930 "Helpers--extraction workers 47-5081" > 6940 "Other extraction workers 47-50XX" > 7000 "First-line supervisors/managers of mechanics, installers, and repairers 49-1011" > 7010 "Computer, automated teller, and office machine repairers 49-2011" > 7020 "Radio and telecommunications equipment installers and repairers 49-2020" > 7030 "Avionics technicians 49-2091" > 7040 "Electric motor, power tool, and related repairers 49-2092" > 7050 "Electrical and electronics installers and repairers, transportation equipment 49-2093" > 7100 "Electrical and electronics repairers, industrial and utility 49-209X" > 7110 "Electronic equipment installers and repairers, motor vehicles 49-2096" > 7120 "Electronic home entertainment equipment installers and repairers 49-2097" > 7130 "Security and fire alarm systems installers 49-2098" > 7140 "Aircraft mechanics and service technicians 49-3011" > 7150 "Automotive body and related repairers 49-3021" > 7160 "Automotive glass installers and repairers 49-3022" > 7200 "Automotive service technicians and mechanics 49-3023" > 7210 "Bus and truck mechanics and diesel engine specialists 49-3031" > 7220 "Heavy vehicle and mobile equipment service technicians and mechanics 49-3040" > 7240 "Small engine mechanics 49-3050" > 7260 "Miscellaneous vehicle and mobile equipment mechanics, installers, and repairers 49-309 > 0" > 7300 "Control and valve installers and repairers 49-9010" > 7315 "Heating, air conditioning, and refrigeration mechanics and installers 49-9021" > 7320 "Home appliance repairers 49-9031" > 7330 "Industrial and refractory machinery mechanics 49-904X" > 7340 "Maintenance and repair workers, general 49-9071" > 7350 "Maintenance workers, machinery 49-9043" > 7360 "Millwrights 49-9044" > 7410 "Electrical power-line installers and repairers 49-9051" > 7420 "Telecommunications line installers and repairers 49-9052" > 7430 "Precision instrument and equipment repairers 49-9060" > 7440 "Wind Turbine Service Technicians 49-9081" > 7510 "Coin, vending, and amusement machine servicers and repairers 49-9091" > 7520 "Commercial divers 49-9092" > 7540 "Locksmiths and safe repairers 49-9094" > 7550 "Manufactured building and mobile home installers 49-9095" > 7560 "Riggers 49-9096" > 7600 "Signal and track switch repairers 49-9097" > 7610 "Helpers--installation, maintenance, and repair workers 49-9098" > 7630 "Other installation, maintenance, and repair workers 49-909X" > 7700 "First-line supervisors/managers of production and operating workers 51-1011" > 7710 "Aircraft structure, surfaces, rigging, and systems assemblers 51-2011" > 7720 "Electrical, electronics, and electromechanical assemblers 51-2020" > 7730 "Engine and other machine assemblers 51-2031" > 7740 "Structural metal fabricators and fitters 51-2041" > 7750 "Miscellaneous assemblers and fabricators 51-2090" > 7800 "Bakers 51-3011" > 7810 "Butchers and other meat, poultry, and fish processing workers 51-3020" > 7830 "Food and tobacco roasting, baking, and drying machine operators and tenders 51-3091" > 7840 "Food batchmakers 51-3092" > 7850 "Food cooking machine operators and tenders 51-3093" > 7855 "Food Processing Workers, all Other 51-3099" > 7900 "Computer control programmers and operators 51-4010" > 7920 "Extruding and drawing machine setters, operators, and tenders, metal and plastic 51-40 > 21" > 7930 "Forging machine setters, operators, and tenders, metal and plastic 51-4022" > 7940 "Rolling machine setters, operators, and tenders, metal and plastic 51-4023" > 7950 "Cutting, punching, and press machine setters, operators, and tenders, metal and plasti > c 51-4031" > 7960 "Drilling and boring machine tool setters, operators, and tenders, metal and plastic 51 > -4032" > 8000 "Grinding, lapping, polishing, and buffing machine tool setters, operators, and tenders > , metal and plastic 51-4033" > 8010 "Lathe and turning machine tool setters, operators, and tenders, metal and plastic 51-4 > 034" > 8020 "Milling and planing machine setters, operators, and tenders, metal and plastic 51-4035 > " > 8030 "Machinists 51-4041" > 8040 "Metal furnace and kiln operators and tenders 51-4050" > 8060 "Model makers and patternmakers, metal and plastic 51-4060" > 8100 "Molders and molding machine setters, operators, and tenders, metal and plastic 51-4070 > " > 8120 "Multiple machine tool setters, operators, and tenders, metal and plastic 51-4081" > 8130 "Tool and die makers 51-4111" > 8140 "Welding, soldering, and brazing workers 51-4120" > 8150 "Heat treating equipment setters, operators, and tenders, metal and plastic 51-4191" > 8160 "Lay-out workers, metal and plastic 51-4192" > 8200 "Plating and coating machine setters, operators, and tenders, metal and plastic 51-4193 > " > 8210 "Tool grinders, filers, and sharpeners 51-4194" > 8220 "Metalworkers and plastic workers, all other 51-4199" > 8250 "Prepress technicians and workers 51-5111" > 8255 "Printing Press Operators 51-5112" > 8256 "Print Binding and Finishing Workers 51-5113" > 8300 "Laundry and dry-cleaning workers 51-6011" > 8310 "Pressers, textile, garment, and related materials 51-6021" > 8320 "Sewing machine operators 51-6031" > 8330 "Shoe and leather workers and repairers 51-6041" > 8340 "Shoe machine operators and tenders 51-6042" > 8350 "Tailors, dressmakers, and sewers 51-6050" > 8360 "Textile bleaching and dyeing machine operators and tenders 51-6061" > 8400 "Textile cutting machine setters, operators, and tenders 51-6062" > 8410 "Textile knitting and weaving machine setters, operators, and tenders 51-6063" > 8420 "Textile winding, twisting, and drawing out machine setters, operators, and tenders 51- > 6064" > 8430 "Extruding and forming machine setters, operators, and tenders, synthetic and glass fib > ers 51-6091" > 8440 "Fabric and apparel patternmakers 51-6092" > 8450 "Upholsterers 51-6093" > 8460 "Textile, apparel, and furnishings workers, all other 51-6099" > 8500 "Cabinetmakers and bench carpenters 51-7011" > 8510 "Furniture finishers 51-7021" > 8520 "Model makers and patternmakers, wood 51-7030" > 8530 "Sawing machine setters, operators, and tenders, wood 51-7041" > 8540 "Woodworking machine setters, operators, and tenders, except sawing 51-7042" > 8550 "Woodworkers, all other 51-7099" > 8600 "Power plant operators, distributors, and dispatchers 51-8010" > 8610 "Stationary engineers and boiler operators 51-8021" > 8620 "Water and liquid waste treatment plant and system operators 51-8031" > 8630 "Miscellaneous plant and system operators 51-8090" > 8640 "Chemical processing machine setters, operators, and tenders 51-9010" > 8650 "Crushing, grinding, polishing, mixing, and blending workers 51-9020" > 8710 "Cutting workers 51-9030" > 8720 "Extruding, forming, pressing, and compacting machine setters, operators, and tenders 5 > 1-9041" > 8730 "Furnace, kiln, oven, drier, and kettle operators and tenders 51-9051" > 8740 "Inspectors, testers, sorters, samplers, and weighers 51-9061" > 8750 "Jewelers and precious stone and metal workers 51-9071" > 8760 "Medical, dental, and ophthalmic laboratory technicians 51-9080" > 8800 "Packaging and filling machine operators and tenders 51-9111" > 8810 "Painting workers 51-9120" > 8830 "Photographic process workers and processing machine operators 51-9151" > 8840 "Semiconductor processors 51-9141" > 8850 "Cementing and gluing machine operators and tenders 51-9191" > 8860 "Cleaning, washing, and metal pickling equipment operators and tenders 51-9192" > 8900 "Cooling and freezing equipment operators and tenders 51-9193" > 8910 "Etchers and engravers 51-9194" > 8920 "Molders, shapers, and casters, except metal and plastic 51-9195" > 8930 "Paper goods machine setters, operators, and tenders 51-9196" > 8940 "Tire builders 51-9197" > 8950 "Helpers--production workers 51-9198" > 8965 "Production workers, all other 51-9199" > 9000 "Supervisors, transportation and material moving workers 53-1000" > 9030 "Aircraft pilots and flight engineers 53-2010" > 9040 "Air traffic controllers and airfield operations specialists 53-2020" > 9050 "Flight Attendants 53-2031" > 9110 "Ambulance drivers and attendants, except emergency medical technicians 53-3011" > 9120 "Bus drivers 53-3020" > 9130 "Driver/sales workers and truck drivers 53-3030" > 9140 "Taxi drivers and chauffeurs 53-3041" > 9150 "Motor vehicle operators, all other 53-3099" > 9200 "Locomotive engineers and operators 53-4010" > 9230 "Railroad brake, signal, and switch operators 53-4021" > 9240 "Railroad conductors and yardmasters 53-4031" > 9260 "Subway, streetcar, and other rail transportation workers 53-40XX" > 9300 "Sailors and marine oilers 53-5011" > 9310 "Ship and boat captains and operators 53-5020" > 9330 "Ship engineers 53-5031" > 9340 "Bridge and lock tenders 53-6011" > 9350 "Parking lot attendants 53-6021" > 9360 "Service station attendants 53-6031" > 9410 "Transportation inspectors 53-6051" > 9415 "Transportation Attendants, Except Flight Attendants 53-6061" > 9420 "Other transportation workers 53-60XX" > 9500 "Conveyor operators and tenders 53-7011" > 9510 "Crane and tower operators 53-7021" > 9520 "Dredge, excavating, and loading machine operators 53-7030" > 9560 "Hoist and winch operators 53-7041" > 9600 "Industrial truck and tractor operators 53-7051" > 9610 "Cleaners of vehicles and equipment 53-7061" > 9620 "Laborers and freight, stock, and material movers, hand 53-7062" > 9630 "Machine feeders and offbearers 53-7063" > 9640 "Packers and packagers, hand 53-7064" > 9650 "Pumping station operators 53-7070" > 9720 "Refuse and recyclable material collectors 53-7081" > 9730 "Shuttle car operators 53-7111" > 9740 "Tank car, truck, and ship loaders 53-7121" > 9750 "Material moving workers, all other 53-7199" > 9840 "Armed Forces" > 9970 "Problem referral" > 9990 "Not reported (Includes Refused, Classified, blank and all other noncodable entries)" > 9800 "Military officer special and tactical operations leaders/managers 55-1010" > 9810 "First-line enlisted military supervisors/managers 55-2010" > 9820 "Military enlisted tactical operations and air/weapons specialists and crew members 55- > 3010" > 9830 "Military, rank not specified 99-9999" > ; . * docc00: 2000-; . label values docc00 docc00l ; . label define docc00l > 1 "Management occupations" > 2 "Business and financial operations occupations" > 3 "Computer and mathematical science occupations" > 4 "Architecture and engineering occupations" > 5 "Life, physical, and social science occupations" > 6 "Community and social service occupations" > 7 "Legal occupations" > 8 "Education, training, and library occupations" > 9 "Arts, design, entertainment, sports, and media occupations" > 10 "Healthcare practitioner and technical occupations" > 11 "Healthcare support occupations" > 12 "Protective service occupations" > 13 "Food preparation and serving related occupations" > 14 "Building and grounds cleaning and maintenance occupations" > 15 "Personal care and service occupations" > 16 "Sales and related occupations" > 17 "Office and administrative support occupations" > 18 "Farming, fishing, and forestry occupations" > 19 "Construction and extraction occupations" > 20 "Installation, maintenance, and repair occupations" > 21 "Production occupations" > 22 "Transportation and material moving occupations" > 23 "Armed Forces" > ; . * eligible: 1979:5-; . label values eligible P21L; . label define P21L > 1 "Earnings Eligible For Edit" > 2 "Other" > ; . * reason94: 1994-; . label values reason94 P22L; . label define P22L > 1 "Slack Work/Business Conditions" > 2 "Seasonal Work" > 3 "Job Started Or Ended During Week" > 4 "Vacation/Personal Day" > 5 "Own Illness/Injury/Medical Appointment" > 6 "Holiday (legal Or Religious)" > 7 "Child Care Problems" > 8 "Other Family/Personal Obligations" > 9 "Labor Dispute" > 10 "Weather Affected Job" > 11 "School/Training" > 12 "Civic/Military Duty" > 13 "Other Reason" > ; . * absent94: 1994-; . label values absent94 P23L; . label define P23L > 1 "On Layoff" > 2 "Slack Work/Business Conditions" > 3 "Waiting For A New Job To Begin" > 4 "Vacation/Personal Days" > 5 "Own Illness/Injury/Medical Problems" > 6 "Child Care Problems" > 7 "Other Family/Personal Obligation" > 8 "Maternity/Paternity Leave" > 9 "Labor Dispute" > 10 "Weather Affected Job" > 11 "School/Training" > 12 "Civic/Military Duty" > 13 "Does Not Work In The Business" > 14 "Other (specify)" > ; . *why3594: 1994-; . label values why3594 P3594L; . label define P3594L > 1 "Usu. FT-Slack Work/Business Conditions" > 2 "Usu. FT-Seasonal Work" > 3 "Usu. FT-Job Started/Ended During Week" > 4 "Usu. FT-Vacation/Personal Day" > 5 "Usu. FT-Own Illness/Injury/Medical Appt" > 6 "Usu. FT-Holiday (religious Or Legal)" > 7 "Usu. FT-Child Care Problems" > 8 "Usu. FT-Other Fam/Pers Obligations" > 9 "Usu. FT-Labor Dispute" > 10 "Usu. FT-Weather Affected Job" > 11 "Usu. FT-School/Training" > 12 "Usu. FT-Civic/Military Duty" > 13 "Usu. FT-Other Reason" > 14 "Usu. PT-Slack Work/Business Conditions" > 15 "Usu. PT-Could Only Find PT Work" > 16 "Usu. PT-Seasonal Work" > 17 "Usu. PT-Child Care Problems" > 18 "Usu. PT-Other Fam/Pers Obligations" > 19 "Usu. PT-Health/Medical Limitations" > 20 "Usu. PT-School/Training" > 21 "Usu. PT-Retired/Ss Limit On Earnings" > 22 "Usu. PT-Workweek <35 Hours" > 23 "Usu. PT-Other Reason" > ; . * ftpt94: 1994-; . label values ftpt94 P160L; . label define P160L > 1 "Not In Labor Force" > 2 "FT Hours (35+), Usually FT" > 3 "PT For Economic Reasons, Usually FT" > 4 "PT For Non-Economic Reasons, Usually FT" > 5 "Not At Work, Usually FT" > 6 "PT Hours, Usually PT For Economic Reasons" > 7 "PT hrs, Usually PT For Non-Economic" > 8 "FT Hours, Usually PT For Economic Reas" > 9 "FT hrs, Usually PT For Non-Economic" > 10 "Not at work, Usually Part-Time" > 11 "Unemployed FT" > 12 "Unemployed PT" > ; . * studftpt: 1984-; . label values studftpt P24L; . label define P24L > 1 "Full-time" > 2 "Part-time" > ; . * unionmme: 1983-; . label values unionmme P25L; . label define P25L > 1 "Yes" > 2 "No" > ; . * unioncov: 1983-; . label values unioncov P26L; . label define P26L > 1 "Yes" > 2 "No" > ; . * otc: 1994-; . label values otc yesno; . label define yesno > 1 "Yes" > 2 "No" > ; . * hrhtype: 1984-; . label values hrhtype hrhtype; . label define hrhtype > 0 "Non-interview household" > 1 "Husband/wife primary fam (neither in Armed Forces)" > 2 "Husband/wife primary fam (one/both in Armed Forces)" > 3 "Unmarried civilian male primary fam householder" > 4 "Unmarried civilian female primary fam householder" > 5 "Unmarried primary fam householder in Armed Forces" > 6 "Civilian male primary individual" > 7 "Civilian female primary individual" > 8 "Primary ind HH - reference person in Armed Forces" > 9 "Group quarters with family" > 10 "Group quarters without family" > ; . ** Race 2003-April 2012 has 21 Categories" > ** "Race May 2012 on has 26 Categories" > label values race race26; > label define race26 > 1 "White Only" > 2 "Black Only" > 3 "American Indian, Alaskan Native Only" > 4 "Asian Only" > 5 "Hawaiian/Pacific Islander Only" > 6 "White-Black" > 7 "White-AI" > 8 "White-Asian" > 9 "White-HP" > 10 "Black-AI" > 11 "Black-Asian" > 12 "Black-HP" > 13 "AI-Asian" > 14 "AI-HP" > 15 "Asian-HP" > 16 "W-B-AI" > 17 "W-B-A" > 18 "W-B-HP" > 19 "W-AI-A" > 20 "W-AI-HP" > 21 "W-A-HP" > 22 "B-AI-A" > 23 "W-B-AI-A" > 24 "W-AI-A-HP" > 25 "Other 3 Race Combinations" > 26 "Other 4 and 5 Race Combinations" > ; > > end of do-file (saving in Stata 12 format, which Stata 11 can read) file /homes/data/morg/annual/morg13.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+--------------------------------------------------------- hhid | 0 intmonth | 315,717 6.489673 3.454354 1 12 hurespli | 315,698 1.401745 .775697 0 13 hrhtype | 315,717 2.693067 2.270519 1 10 minsamp | 315,717 5.994495 1.999996 4 8 -------------+--------------------------------------------------------- hrlonglk | 315,717 1.991277 .1317952 0 2 hrsample | 0 hrhhid2 | 0 serial | 0 hhnum | 315,717 1.05032 .2309632 1 5 -------------+--------------------------------------------------------- state | 315,717 54.23731 26.34601 11 95 stfips | 315,717 27.86708 15.91716 1 56 cbsafips | 315,717 25886.43 21028.95 0 79600 county | 315,717 29.32811 68.7472 0 810 centcity | 256,643 1.955654 .7297699 1 3 -------------+--------------------------------------------------------- smsastat | 312,944 1.200998 .4007469 1 2 icntcity | 26,836 1.485989 1.060912 1 7 smsa04 | 315,717 3.60666 2.562793 0 7 relref95 | 315,717 3.138393 3.196249 1 18 age | 315,717 46.79848 18.36637 16 85 -------------+--------------------------------------------------------- spouse | 163,490 1.584641 .7042583 1 14 sex | 315,717 1.521321 .499546 1 2 grade92 | 315,717 40.24142 2.73 31 46 race | 315,717 1.414596 1.305728 1 26 ethnic | 37,955 1.997971 1.402529 1 5 -------------+--------------------------------------------------------- lineno | 315,717 1.750846 1.028698 1 16 famnum | 315,717 .7977841 .4746248 0 5 pfamrel | 315,717 1.369337 1.071047 0 4 marital | 315,717 3.424516 2.65318 1 7 prpertyp | 315,717 2.004095 .0638645 2 3 -------------+--------------------------------------------------------- penatvty | 315,717 87.02844 80.42765 57 555 pemntvty | 315,717 96.49793 89.27075 57 555 pefntvty | 315,717 96.63045 89.41282 57 555 prcitshp | 315,717 1.486347 1.211487 1 5 prcitflg | 315,717 .1787962 2.009418 0 41 -------------+--------------------------------------------------------- peinusyr | 315,717 1.885942 5.121968 0 22 selfproxy | 311,045 1.489633 .5051649 1 3 lfsr94 | 314,424 2.923323 2.37447 1 7 absent94 | 6,854 6.384009 3.581355 4 14 uhourse | 172,163 38.63777 11.27148 0 99 -------------+--------------------------------------------------------- reason94 | 11,727 4.904664 3.061725 1 13 hourslw | 179,261 38.5431 13.14689 1 99 laydur | 1,518 8.375494 9.976702 1 52 dwrsn | 6,276 6.962715 3.430477 1 11 why3594 | 45,019 15.15987 6.750349 1 23 -------------+--------------------------------------------------------- prunedur | 13,223 31.94373 35.50614 0 119 untype | 13,223 3.361113 1.643059 1 6 ftpt94 | 314,424 2.704345 2.577973 1 12 class94 | 206,192 4.101241 1.161815 1 8 agri | 206,192 .0185992 .1351049 0 1 -------------+--------------------------------------------------------- eligible | 315,717 1.474599 .4993552 1 2 otc | 165,878 1.865684 .3409921 1 2 ernpdh2 | 93,722 1.74211 .4374757 1 2 paidhre | 165,878 1.411724 .4921472 1 2 earnhre | 97,559 1603.044 953.2244 15 9999 -------------+--------------------------------------------------------- earnwke | 165,878 863.0544 647.3278 0 2884.61 unionmme | 165,878 1.886814 .3168205 1 2 unioncov | 147,103 1.986064 .117225 1 2 schenr | 201,441 1.844426 .362452 1 2 studftpt | 31,339 1.158588 .3652976 1 2 -------------+--------------------------------------------------------- schlvl | 31,339 1.623696 .4844655 1 2 earnwt | 315,717 9337.952 5040.298 0 49852.13 weight | 315,717 2334.488 1254.349 0 11794.9 chldpres | 315,717 1.33021 2.795302 0 15 ownchild | 315,717 .4889791 .9558421 0 11 -------------+--------------------------------------------------------- I25d | 165,878 .3492627 .4767385 0 1 I25c | 97,582 .3823963 .4859751 0 1 I25a | 315,717 .416053 3.902441 0 43 I25b | 315,717 4.065277 12.40385 0 42 qstnum | 0 -------------+--------------------------------------------------------- occurnum | 0 ged | 91,828 1.097051 .2960288 1 2 gedhigr | 8,912 6.445355 1.294108 1 8 yrcoll | 88,071 2.748998 1.028344 1 5 grprof | 58,877 1.714591 .4516126 1 2 -------------+--------------------------------------------------------- gr6cor | 16,804 1.278089 .4480706 1 2 ms123 | 23,619 2.19967 .5659323 1 3 cmpwgt | 315,717 2334.661 1256.132 0 11849.96 ind02 | 206,192 6288.622 2681.483 170 9890 occ2012 | 206,192 4155.56 2571.372 10 9840 -------------+--------------------------------------------------------- occ002 | 315,717 111.2988 737.8599 -1 9720 vet1 | 27,731 3.904367 1.72289 1 9 vet2 | 5,460 3.529121 1.55667 1 9 vet3 | 1,327 3.085908 1.538399 1 9 vet4 | 230 3.678261 1.733552 1 8 -------------+--------------------------------------------------------- linedad | 43,861 1.702925 .9454467 1 16 linemom | 31,859 1.142283 .3967201 1 3 recnum | 315,717 225450.1 130312 1 450980 year | 315,717 2013 0 2013 2013 ym_file | 315,717 641.4897 3.454354 636 647 -------------+--------------------------------------------------------- ym | 315,717 632.5062 6.927199 621 644 ch02 | 315,717 .065508 .2474205 0 1 ch35 | 315,717 .0729989 .2601351 0 1 ch613 | 315,717 .1500774 .3571479 0 1 ch1417 | 315,717 .0905653 .2869904 0 1 -------------+--------------------------------------------------------- ch05 | 315,717 .115442 .3195551 0 1 ihigrdc | 315,717 13.48199 2.9641 0 18 docc00 | 206,192 12.35246 6.719724 1 23 dind02 | 206,192 31.07415 14.40387 1 52 . aef2 2014 14 03 13 dct_name aef03.dbd raw_name=../raw/morg14 (0 observations deleted) obs 453574 # of persons with age<=15 136518 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 54,567 12.03 12.03 0 | 3,861 0.85 12.88 1 | 4,568 1.01 13.89 2 | 4,745 1.05 14.93 3 | 4,871 1.07 16.01 4 | 5,049 1.11 17.12 5 | 5,300 1.17 18.29 6 | 5,365 1.18 19.47 7 | 5,445 1.20 20.67 8 | 5,288 1.17 21.84 9 | 5,218 1.15 22.99 10 | 5,397 1.19 24.18 11 | 5,206 1.15 25.33 12 | 5,169 1.14 26.47 13 | 5,439 1.20 27.67 14 | 5,567 1.23 28.89 15 | 5,463 1.20 30.10 16 | 5,417 1.19 31.29 17 | 5,355 1.18 32.47 18 | 4,972 1.10 33.57 19 | 4,674 1.03 34.60 20 | 4,542 1.00 35.60 21 | 4,682 1.03 36.63 22 | 4,691 1.03 37.67 23 | 4,918 1.08 38.75 24 | 5,079 1.12 39.87 25 | 5,075 1.12 40.99 26 | 5,033 1.11 42.10 27 | 4,913 1.08 43.18 28 | 5,115 1.13 44.31 29 | 5,038 1.11 45.42 30 | 5,027 1.11 46.53 31 | 5,248 1.16 47.69 32 | 5,289 1.17 48.85 33 | 5,264 1.16 50.01 34 | 5,407 1.19 51.21 35 | 5,112 1.13 52.33 36 | 4,891 1.08 53.41 37 | 4,928 1.09 54.50 38 | 4,844 1.07 55.57 39 | 4,863 1.07 56.64 40 | 4,803 1.06 57.70 41 | 4,883 1.08 58.77 42 | 4,986 1.10 59.87 43 | 5,343 1.18 61.05 44 | 5,472 1.21 62.26 45 | 5,224 1.15 63.41 46 | 5,140 1.13 64.54 47 | 5,165 1.14 65.68 48 | 5,127 1.13 66.81 49 | 5,458 1.20 68.01 50 | 5,987 1.32 69.33 51 | 5,876 1.30 70.63 52 | 5,823 1.28 71.91 53 | 5,880 1.30 73.21 54 | 5,827 1.28 74.49 55 | 5,755 1.27 75.76 56 | 5,882 1.30 77.06 57 | 5,720 1.26 78.32 58 | 5,598 1.23 79.56 59 | 5,470 1.21 80.76 60 | 5,478 1.21 81.97 61 | 5,216 1.15 83.12 62 | 5,047 1.11 84.23 63 | 4,763 1.05 85.28 64 | 4,604 1.02 86.30 65 | 4,680 1.03 87.33 66 | 4,718 1.04 88.37 67 | 4,734 1.04 89.41 68 | 3,801 0.84 90.25 69 | 3,339 0.74 90.99 70 | 3,389 0.75 91.73 71 | 3,335 0.74 92.47 72 | 3,053 0.67 93.14 73 | 2,623 0.58 93.72 74 | 2,656 0.59 94.31 75 | 2,387 0.53 94.83 76 | 2,151 0.47 95.31 77 | 2,078 0.46 95.77 78 | 1,991 0.44 96.20 79 | 1,902 0.42 96.62 80 | 7,767 1.71 98.34 85 | 7,548 1.66 100.00 ------------+----------------------------------- Total | 453,574 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 54,567 39.97 39.97 0 | 3,861 2.83 42.80 1 | 4,568 3.35 46.14 2 | 4,745 3.48 49.62 3 | 4,871 3.57 53.19 4 | 5,049 3.70 56.89 5 | 5,300 3.88 60.77 6 | 5,365 3.93 64.70 7 | 5,445 3.99 68.69 8 | 5,288 3.87 72.56 9 | 5,218 3.82 76.38 10 | 5,397 3.95 80.34 11 | 5,206 3.81 84.15 12 | 5,169 3.79 87.94 13 | 5,439 3.98 91.92 14 | 5,567 4.08 96.00 15 | 5,463 4.00 100.00 ------------+----------------------------------- Total | 136,518 100.00 (136,518 observations deleted) (0 observations deleted) obs 317056 after keeping age>15&age!=. infile successful no observations (32 real changes made, 32 to missing) (272,952 real changes made, 272,952 to missing) (285,211 real changes made, 285,211 to missing) (0 real changes made) (0 real changes made) (159,211 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (157,845 real changes made) Geography (125,837 real changes made) dropping cmsacode msafips smsa93 smsasize = . if smsasize <=0 (238,255 real changes made, 238,255 to missing) inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (2,923 real changes made, 2,923 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (58,253 real changes made, 58,253 to missing) (287,642 real changes made, 287,642 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (153,333 real changes made, 153,333 to missing) if 2014 > 1983 & 2014 < 1989 { (0 real changes made) (0 real changes made) (0 real changes made) (ch02: 73165 changes made) (ch35: 82072 changes made) (ch613: 82072 changes made) (ch1417: 82072 changes made) (15,254 real changes made) (0 real changes made) (224,627 real changes made, 224,627 to missing) (307,951 real changes made, 307,951 to missing) (228,937 real changes made, 228,937 to missing) (257,860 real changes made, 257,860 to missing) (300,892 real changes made, 300,892 to missing) (292,931 real changes made, 292,931 to missing) (317,056 missing values generated) (918 real changes made) (1,926 real changes made) (3,653 real changes made) (5,597 real changes made) (6,357 real changes made) (9,633 real changes made) (11,352 real changes made) (4,665 real changes made) (53 real changes made) (117 real changes made) (62 real changes made) (580 real changes made) (1,027 real changes made) (2,177 real changes made) (3,199 real changes made) (1,890 real changes made) (83,324 real changes made) (10,872 real changes made) (22,059 real changes made) (39,311 real changes made) (9,846 real changes made) (6,031 real changes made) (43,032 real changes made) (4,595 real changes made) (11,569 real changes made) (1,928 real changes made) (22,197 real changes made) (9,086 real changes made) (221,814 real changes made, 221,814 to missing) (306,037 real changes made, 306,037 to missing) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (278,072 real changes made, 278,072 to missing) (0 real changes made) (290,182 real changes made, 290,182 to missing) (311,872 real changes made, 311,872 to missing) (315,806 real changes made, 315,806 to missing) (316,853 real changes made, 316,853 to missing) Employment (4,764 real changes made, 4,764 to missing) (310,896 real changes made, 310,896 to missing) (149,982 real changes made, 149,982 to missing) (111,563 real changes made, 111,563 to missing) (111,563 real changes made, 111,563 to missing) (111,563 real changes made, 111,563 to missing) docc80 ** The renaming is part of the Census reweighting ; docc00 553 generate int docc00=occ2011; 568 572 577 (111,563 missing values generated) 581 recode docc00 2011 (docc00: 205493 changes made) dind (111,563 missing values generated) (dind02: 204659 changes made) Wages (149,982 real changes made, 149,982 to missing) (0 real changes made) (218,773 real changes made, 218,773 to missing) (0 real changes made) (0 real changes made) (149,982 real changes made) (201,346 real changes made) (111,563 real changes made, 111,563 to missing) (306,037 real changes made, 306,037 to missing) (129,842 real changes made) (149,982 real changes made) (4 real changes made, 4 to missing) (129,842 real changes made, 129,842 to missing) (1,322 real changes made, 1,322 to missing) (315,673 real changes made, 315,673 to missing) (218,732 real changes made, 218,732 to missing) (149,982 real changes made, 149,982 to missing) Hours, Unions (304,121 real changes made, 304,121 to missing) (310,344 real changes made, 310,344 to missing) (286,360 real changes made, 286,360 to missing) (116,995 real changes made, 116,995 to missing) (286,360 real changes made, 286,360 to missing) (1,322 real changes made, 1,322 to missing) (136,554 real changes made, 136,554 to missing) (87 real changes made) (13,489 real changes made, 13,489 to missing) (271,348 real changes made, 271,348 to missing) (149,982 real changes made, 149,982 to missing) (168,648 real changes made, 168,648 to missing) variable spouse was int now byte variable hourslw was int now byte variable laydur was int now byte variable ym_file was float now int variable ym was float now int variable ch02 was int now byte variable ch35 was int now byte variable ch613 was int now byte variable ch1417 was int now byte variable ch05 was int now byte variable docc00 was int now byte variable dind02 was float now int (4,755,840 bytes saved) . *by Jean Roth Thu Mar 17 2005 14:38:42 . *Please report errors to jroth@nber.org . . * Note: Variable names in Stata are case-sensitive . #delimit ; delimiter now ; . ; . * minsamp: 1979-; . label values minsamp P2L; . label define P2L > 4 "MIS 4" > 8 "MIS 8" > ; . * hrlonglk: 1994-; . label values hrlonglk P3L; . label define P3L > 0 "MIS 1 Or Replacement HH (no" > 2 "MIS 2-4 Or MIS 6-8 (link To" > ; . * intmonth: 1979-; . label values intmonth P4L; . label define P4L > 1 "January" > 2 "February" > 3 "March" > 4 "April" > 5 "May" > 6 "June" > 7 "July" > 8 "August" > 9 "September" > 10 "October" > 11 "November" > 12 "December" > ; . * stfips: 1989-; . label values stfips stfips; . label define stfips > 1 "AL" > 2 "AK" > 4 "AZ" > 5 "AR" > 6 "CA" > 8 "CO" > 9 "CT" > 10 "DE" > 11 "DC" > 12 "FL" > 13 "GA" > 15 "HI" > 16 "ID" > 17 "IL" > 18 "IN" > 19 "IA" > 20 "KS" > 21 "KY" > 22 "LA" > 23 "ME" > 24 "MD" > 25 "MA" > 26 "MI" > 27 "MN" > 28 "MS" > 29 "MO" > 30 "MT" > 31 "NE" > 32 "NV" > 33 "NH" > 34 "NJ" > 35 "NM" > 36 "NY" > 37 "NC" > 38 "ND" > 39 "OH" > 40 "OK" > 41 "OR" > 42 "PA" > 44 "RI" > 45 "SC" > 46 "SD" > 47 "TN" > 48 "TX" > 49 "UT" > 50 "VT" > 51 "VA" > 53 "WA" > 54 "WV" > 55 "WI" > 56 "WY" > ; . * state: 1979- April 2014 ; . cap label values state P27L; . cap label define P27L > 11 "ME" > 12 "NH" > 13 "VT" > 14 "MA" > 15 "RI" > 16 "CT" > 21 "NY" > 22 "NJ" > 23 "PA" > 31 "OH" > 32 "IN" > 33 "IL" > 34 "MI" > 35 "WI" > 41 "MN" > 42 "IA" > 43 "MO" > 44 "ND" > 45 "SD" > ; . * penatvty: 2007-; . label values penatvty penatvty; . label define penatvty > 57 "United States" > 60 "American Samoa" > 66 "Guam" > 73 "Puerto Rico" > 78 "U.S. Virgin Islands" > 96 "U.S. Outlying Area" > 100 "Albania" > 102 "Austria" > 103 "Belgium" > 104 "Bulgaria" > 105 "Czechoslovakia" > 106 "Denmark" > 108 "Finland" > 109 "France" > 110 "Germany" > 116 "Greece" > 117 "Hungary" > 119 "Ireland/Eire" > 120 "Italy" > 126 "Holland/Netherlands" > 127 "Norway" > 128 "Poland" > 129 "Portugal" > 130 "Azores" > 132 "Romania" > 134 "Spain" > 136 "Sweden" > 137 "Switzerland" > 138 "United Kingdom/Great Britain" > 139 "England" > 140 "Scotland" > 141 "Wales" > 142 "Northern Ireland" > 147 "Yugoslavia" > 148 "Czech Republic" > 149 "Slovakia" > 150 "Bosnia & Herzegovina" > 151 "Croatia" > 152 "Macedonia" > 154 "Serbia" > 156 "Latvia" > 157 "Lithuania" > 158 "Armenia" > 159 "Azerbaijan" > 160 "Belarus" > 161 "Georgia" > 162 "Moldova" > 163 "Russia" > 164 "Ukraine" > 165 "USSR" > 166 "Europe, not specified" > 167 "Kosovo" > 200 "Afghanistan" > 202 "Bangladesh" > 205 "Myanmar (Burma)" > 206 "Cambodia" > 207 "China" > 208 "Cyprus" > 209 "Hong Kong" > 210 "India" > 211 "Indonesia" > 212 "Iran" > 213 "Iraq" > 214 "Israel" > 215 "Japan" > 216 "Jordan" > 217 "Korea" > 220 "South Korea" > 222 "Kuwait" > 223 "Laos" > 224 "Lebanon" > 226 "Malaysia" > 229 "Nepal" > 231 "Pakistan" > 233 "Philippines" > 235 "Saudi Arabia" > 236 "Singapore" > 238 "Sri Lanka" > 239 "Syria" > 240 "Taiwan" > 242 "Thailand" > 243 "Turkey" > 246 "Uzbekistan" > 247 "Vietnam" > 248 "Yemen" > 249 "Asia, not specified" > 300 "Bermuda" > 301 "Canada" > 303 "Mexico" > 310 "Belize" > 311 "Costa Rica" > 312 "El Salvador" > 313 "Guatemala" > 314 "Honduras" > 315 "Nicaragua" > 316 "Panama" > 318 "Central America" > 321 "Antigua and Barbuda" > 323 "Bahamas" > 324 "Barbados" > 327 "Cuba" > 328 "Dominica" > 329 "Dominican Republic" > 330 "Grenada" > 332 "Haiti" > 333 "Jamaica" > 338 "St. Kitts-Nevis" > 339 "St. Lucia" > 340 "St. Vincent and the Grenadines" > 341 "Trinidad and Tobago" > 343 "West Indes, not specified" > 360 "Argentina" > 361 "Bolivia" > 362 "Brazil" > 363 "Chile" > 364 "Colombia" > 365 "Ecuador" > 368 "Guyana" > 369 "Paraguay" > 370 "Peru" > 372 "Uruguay" > 373 "Venezuela" > 374 "South America, not specified" > 399 "Americas, not specified" > 400 "Algeria" > 407 "Cameroon" > 408 "Cape Verde" > 414 "Egypt" > 416 "Ethiopia" > 417 "Eritrea" > 421 "Ghana" > 427 "Kenya" > 429 "Liberia" > 436 "Morocco" > 440 "Nigeria" > 444 "Senegal" > 447 "Sierra Leone" > 448 "Somalia" > 449 "South Africa" > 451 "Sudan" > 453 "Tanzania" > 457 "Uganda" > 461 "Zimbabwe" > 462 "Africa, not specified" > 501 "Australia" > 508 "Fiji" > 515 "New Zealand" > 523 "Tonga" > 527 "Samoa" > 528 "Oceania, not specified" > 555 "Elsewhere" > ; . * pemntvty: 2007-; . label values pemntvty penatvty; . * pefntvty: 2007-; . label values pefntvty penatvty; . * prcitshp: 1994-; . label values prcitshp P16L; . label define P16L > 1 "Native, Born In US" > 2 "Native, Born in PR or US Outlying Area" > 3 "Native, Born Abroad Of US Parent(s)" > 4 "Foreign Born, US Cit By Naturalization" > 5 "Foreign Born, Not a US Citizen" > ; . * prcitflg: 1994-; . label values prcitflg P34L; . label define P34L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * meanings of last few codes of peinusyr change every year!!!; . * peinusyr: 2003-; . label values peinusyr P17L; . label define P17L > -1 "Not In Universe (Born In U.S.)" > 0 "Not Foreign Born" > 1 "Before 1950" > 2 "1950-1959" > 3 "1960-1964" > 4 "1965-1969" > 5 "1970-1974" > 6 "1975-1979" > 7 "1980-1981" > 8 "1982-1983" > 9 "1984-1985" > 10 "1986-1987" > 11 "1988-1989" > 12 "1990-1991" > 13 "1992-1995" > 14 "1994-1995" > 15 "1996-1997" > 16 "1998-1999" > 17 "2000-2001" > 18 "2002-2003" > 19 "2004-2005" > 20 "2006-2007" > 21 "2008-2009" > 22 "2010-2012" > ; . * paidhre: 1979-; . label values paidhre P18L; . label define P18L > 1 "Yes" > 2 "No" > ; . * I25a: 1979-; . label values I25a P28L; . label define P28L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * I25b: 1979-; . label values I25b P29L; . label define P29L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * I25c: 1996-; . label values I25c I25c; . label define I25c > 0 "No Components Allocated" > 1 "1 or more components Allocated" > ; . * I25d: 1996-; . label values I25d I25d; . label define I25d > 0 "No Components Allocated" > 1 "1 or more components Allocated" > ; . * class94: 1994-; . label values class94 P19L; . label define P19L > 1 "Government - Federal" > 2 "Government - State" > 3 "Government - Local" > 4 "Private, For Profit" > 5 "Private, Nonprofit" > 6 "Self-Employed, Incorporated" > 7 "Self-Employed, Unincorporated" > 8 "Without Pay" > ; . * lfsr94: 1994-; . label values lfsr94 P20L; . label define P20L > 1 "Employed-At Work" > 2 "Employed-Absent" > 3 "Unemployed-On Layoff" > 4 "Unemployed-Looking" > 5 "Retired-Not In Labor Force" > 6 "Disabled-Not In Labor Force" > 7 "Other-Not In Labor Force" > ; . * ind02: 2000-; . label values ind02 ind02; . label define ind02 > 170 "Crop production (111)" > 180 "Animal production (112)" > 190 "Forestry except logging (1131, 1132)" > 270 "Logging (1133)" > 280 "Fishing, hunting, and trapping (114)" > 290 "Support activities for agriculture and forestry (115)" > 370 "Oil and gas extraction (211)" > 380 "Coal mining (2121)" > 390 "Metal ore mining (2122)" > 470 "Nonmetallic mineral mining and quarrying (2123)" > 480 "Not specified type of mining (Part of 21)" > 490 "Support activities for mining (213)" > 570 "Electric power generation, transmission and distribution (Pt. 2211)" > 580 "Natural gas distribution (Pt.s2212)" > 590 "Electric and gas, and other combinations (Pts. 2211, 2212)" > 670 "Water, steam, air-conditioning, and irrigation systems (22131, 22133)" > 680 "Sewage treatment facilities (22132)" > 690 "Not specified utilities (Part of 22)" > 770 "** Construction (23)" > 1070 "Animal food, grain and oilseed milling (3111, 3112)" > 1080 "Sugar and confectionery products (3113)" > 1090 "Fruit and vegetable preserving and specialty food manufacturing (3114)" > 1170 "Dairy product manufacturing (3115)" > 1180 "Animal slaughtering and processing (3116)" > 1190 "Retail bakeries (311811)" > 1270 "Bakeries, except retail (3118 exc. 311811)" > 1280 "Seafood and other miscellaneous foods, n.e.c. (3117, 3119)" > 1290 "Not specified food industries (Part of 311)" > 1370 "Beverage manufacturing (3121)" > 1390 "Tobacco manufacturing (3122)" > 1470 "Fiber, yarn, and thread mills (3131)" > 1480 "Fabric mills, except knitting (3132 exc. 31324)" > 1490 "Textile and fabric finishing and coating mills (3133)" > 1570 "Carpet and rug mills (31411)" > 1590 "Textile product mills, except carpets and rugs (314 exc. 31411)" > 1670 "Knitting mills (31324, 3151)" > 1680 "Cut and sew apparel manufacturing (3152)" > 1690 "Apparel accessories and other apparel manufacturing (3159)" > 1770 "Footwear manufacturing (3162)" > 1790 "Leather tanning and products, except footwear manufacturing (3161, 3169)" > 1870 "Pulp, paper, and paperboard mills (3221)" > 1880 "Paperboard containers and boxes (32221)" > 1890 "Miscellaneous paper and pulp products (32222,32223, 32229)" > 1990 "Printing and related support activities (3231)" > 2070 "Petroleum refining (32411)" > 2090 "Miscellaneous petroleum and coal products (32419)" > 2170 "Resin, synthetic rubber and fibers, and filaments manufacturing (3252)" > 2180 "Agricultural chemical manufacturing (3253)" > 2190 "Pharmaceutical and medicine manufacturing (3254)" > 2270 "Paint, coating, and adhesive manufacturing B46 (3255)" > 2280 "Soap, cleaning compound, and cosmetics manufacturing (3256)" > 2290 "Industrial and miscellaneous chemicals (3251, 3259)" > 2370 "Plastics product manufacturing (3261)" > 2380 "Tire manufacturing (32621)" > 2390 "Rubber products, except tires, manufacturing (32622, 32629)" > 2470 "Pottery, ceramics, and related products manufacturing (32711)" > 2480 "Structural clay product manufacturing (32712)" > 2490 "Glass and glass product manufacturing (3272)" > 2570 "Cement, concrete, lime, and gypsum product manufacturing (3273, 3274)" > 2590 "Miscellaneous nonmetallic mineral product manufacturing (3279)" > 2670 "Iron and steel mills and steel product manufacturing (3311, 3312)" > 2680 "Aluminum production and processing (3313)" > 2690 "Nonferrous metal, except aluminum, production and processing (3314)" > 2770 "Foundries (3315)" > 2780 "Metal forgings and stampings (3321)" > 2790 "Cutlery and hand tool manufacturing (3322)" > 2870 "Structural metals, and tank and shipping container manufacturing (3323, 3324)" > 2880 "Machine shops; turned product; screw, nut and bolt manufacturing (3327)" > 2890 "Coating, engraving, heat treating and allied activities (3328)" > 2970 "Ordnance (332992 to 332995)" > 2980 "Miscellaneous fabricated metal products manufacturing (3325, 3326, 3329 exc. 332992, 3 > 32993, 332994, 332995)" > 2990 "Not specified metal industries (Part of 331 and 332)" > 3070 "Agricultural implement manufacturing (33311)" > 3080 "Construction, mining and oil field machinery manufacturing (33312, 33313)" > 3090 "Commercial and service industry machinery manufacturing (3333)" > 3170 "Metalworking machinery manufacturing (3335)" > 3180 "Engines, turbines, and power transmission equipment manufacturing (3336)" > 3190 "Machinery manufacturing, n.e.c. (3332, 3334, 3339)" > 3290 "Not specified machinery manufacturing (Part of 333)" > 3360 "Computer and peripheral equipment manufacturing (3341)" > 3370 "Communications, audio, and video equipment manufacturing (3342, 3343)" > 3380 "Navigational, measuring, electromedical, and control instruments manufacturing (3345)" > 3390 "Electronic component and product manufacturing, n.e.c. (3344, 3346)" > 3470 "Household appliance manufacturing (3352)" > 3490 "Electrical lighting, equipment, and supplies manufacturing, n.e.c. (3351, 3353, 3359)" > 3570 "Motor vehicles and motor vehicle equipment manufacturing (3361, 3362, 3363)" > 3580 "Aircraft and parts manufacturing (336411 to 336413)" > 3590 "Aerospace products and parts manufacturing (336414, 336415, 336419)" > 3670 "Railroad rolling stock manufacturing (3365)" > 3680 "Ship and boat building (3366)" > 3690 "Other transportation equipment manufacturing (3369)" > 3770 "Sawmills and wood preservation (3211)" > 3780 "Veneer, plywood, and engineered wood products (3212)" > 3790 "Prefabricated wood buildings and mobile homes (321991, 321992)" > 3870 "Miscellaneous wood products (3219 exc. 321991, 321992)" > 3890 "Furniture and related product manufacturing (337)" > 3960 "Medical equipment and supplies manufacturing (3391)" > 3970 "Toys, amusement, and sporting goods manufacturing (33992, 33993)" > 3980 "Miscellaneous manufacturing, n.e.c. (3399 exc. 33992, 33993)" > 3990 "Not specified manufacturing industries (Part of 31, 32, 33)" > 4070 "** Motor vehicles, parts and supplies, merchant wholesalers (*4231)" > 4080 "** Furniture and home furnishing, merchant wholesalers (*4232)" > 4090 "** Lumber and other construction materials, merchant wholesalers (*4233)" > 4170 "** Professional and commercial equipment and supplies, merchant wholesalers (*4234)" > 4180 "** Metals and minerals, except petroleum, merchant wholesalers (*4235)" > 4190 "** Electrical goods, merchant wholesalers (*4236)" > 4260 "** Hardware, plumbing and heating equipment, and supplies, merchant wholesalers (*4237 > )" > 4270 "** Machinery, equipment, and supplies, merchant wholesalers (*4238)" > 4280 "** Recyclable material, merchant wholesalers (*42393)" > 4290 "** Miscellaneous durable goods, merchant wholesalers (*4239 exc. 42393)" > 4370 "** Paper and paper products, merchant wholesalers (*4241)" > 4380 "** Drugs, sundries, and chemical and allied products, merchant (wholesalerss*4242, 424 > 6)" > 4390 "** Apparel, fabrics, and notions, merchant wholesalers (*4243)" > 4470 "** Groceries and related products, merchant wholesalers (*4244)" > 4480 "** Farm product raw materials, merchant wholesalers (*4245)" > 4490 "** Petroleum and petroleum products, merchant wholesalers (*4247)" > 4560 "** Alcoholic beverages, merchant wholesalers (*4248)" > 4570 "** Farm supplies, merchant wholesalers (*42491)" > 4580 "** Miscellaneous (nondurable goods, merchant wholesalerss*4249 exc. 42491)" > 4585 "*** Wholesale electronic markets, agents and brokers New industry (*4251)" > 4590 "**Not specified wholesale trade (Part of 42)" > 4670 "Automobile dealers (4411)" > 4680 "Other motor vehicle dealers (4412)" > 4690 "Auto parts, accessories, and tire stores (4413)" > 4770 "Furniture and home furnishings stores (442)" > 4780 "Household appliance stores (443111)" > 4790 "Radio, TV, and computer stores (443112, 44312)" > 4870 "Building material and supplies dealers (4441 exc. 44413)" > 4880 "Hardware stores (44413)" > 4890 "Lawn and garden equipment and supplies stores (4442)" > 4970 "Grocery stores (4451)" > 4980 "Specialty food stores (4452)" > 4990 "Beer, wine, and liquor stores (4453)" > 5070 "Pharmacies and drug stores (44611)" > 5080 "Health and personal care, except drug, stores (446 exc. 44611)" > 5090 "Gasoline stations (447)" > 5170 "Clothing and accessories, except shoe, stores (448 exc. 44821, 4483)" > 5180 "Shoe stores (44821)" > 5190 "Jewelry, luggage, and leather goods stores (4483)" > 5270 "Sporting goods, camera, and hobby and toy stores (44313, 45111, 45112)" > 5280 "Sewing, needlework, and piece goods stores (45113)" > 5290 "Music stores (45114, 45122)" > 5370 "Book stores and news dealers (45121)" > 5380 "****Department stores and discount stores (s45211)" > 5390 "Miscellaneous general merchandise stores (4529)" > 5470 "Retail florists (4531)" > 5480 "Office supplies and stationery stores (45321)" > 5490 "Used merchandise stores (4533)" > 5570 "Gift, novelty, and souvenir shops (45322)" > 5580 "Miscellaneous retail stores (4539)" > 5590 "*** Electronic shopping (New industry *454111)" > 5591 "*** Electronic auctions (New industrys*454112)" > 5592 "** Mail order houses (*454113)" > 5670 "Vending machine operators (4542)" > 5680 "Fuel dealers (45431)" > 5690 "Other direct selling establishments (45439)" > 5790 "Not specified retail trade (Part of 44, 45)" > 6070 "Air transportation (481)" > 6080 "Rail transportation (482)" > 6090 "Water transportation (483)" > 6170 "Truck transportation (484)" > 6180 "Bus service and urban transit (4851, 4852, 4854, 4855, 4859)" > 6190 "Taxi and limousine service (4853)" > 6270 "Pipeline transportation (486)" > 6280 "Scenic and sightseeing transportation (487)" > 6290 "Services incidental to transportation (488)" > 6370 "Postal Service (491)" > 6380 "Couriers and messengers (492)" > 6390 "Warehousing and storage (493)" > 6470 "**Newspaper publishers (51111)" > 6480 "**Publishing, except newspapers and software (5111 exc. 51111)" > 6490 "Software publishing (5112)" > 6570 "Motion pictures and video industries (5121)" > 6590 "Sound recording industries (5122)" > 6670 "Radio and television broadcasting and cable (5151, 5152, 5175)" > 6672 "Internet publishing and broadcasting and web search portals (51913)" > 6675 "*** Internet publishing and broadcasting (New industrys*5161)" > 6680 "Wired telecommunications carriers (*5171)" > 6690 "Other telecommunications services (*517 exc. 5171, 5175)" > 6692 "*** Internet service providers New industry (*5181)" > 6695 "**** Data processing, hosting, and related services (*5182)" > 6770 "Libraries and archives (*51912)" > 6780 "Other information services (*5191 exc. 51912)" > 6870 "Banking and related activities (521, 52211,52219)" > 6880 "Savings institutions, including credit unions (52212, 52213)" > 6890 "Non-depository credit and related activities (5222, 5223)" > 6970 "Securities, commodities, funds, trusts, and other financial investments (523, 525)" > 6990 "Insurance carriers and related activities (524)" > 7070 "Real estate (531)" > 7080 "Automotive equipment rental and leasing (5321)" > 7170 "Video tape and disk rental (53223)" > 7180 "Other consumer goods rental (53221, 53222, 53229, 5323)" > 7190 "Commercial, industrial, and other intangible assets rental and leasing (5324, 533)" > 7270 "Legal services (5411)" > 7280 "Accounting, tax preparation, bookkeeping, and payroll services (5412)" > 7290 "Architectural, engineering, and related services (5413)" > 7370 "Specialized design services (5414)" > 7380 "Computer systems design and related services (5415)" > 7390 "Management, scientific, and technical consulting services (5416)" > 7460 "Scientific research and development services (5417)" > 7470 "Advertising and related services (5418)" > 7480 "Veterinary services (54194)" > 7490 "Other professional, scientific, and technical services (5419 exc. 54194)" > 7570 "Management of companies and enterprises (551)" > 7580 "Employment services (5613)" > 7590 "Business support services (5614)" > 7670 "Travel arrangements and reservation services (5615)" > 7680 "Investigation and security services (5616)" > 7690 "** Services to buildings and dwellings (5617 exc. 56173)" > 7770 "Landscaping services (56173)" > 7780 "Other administrative and other support services (5611, 5612, 5619)" > 7790 "Waste management and remediation services (562)" > 7860 "Elementary and secondary schools (6111)" > 7870 "Colleges and universities, including junior colleges (6112, 6113)" > 7880 "Business, technical, and trade schools and training (6114, 6115)" > 7890 "Other schools, instruction, and educational services (6116, 6117)" > 7970 "Offices of physicians (6211)" > 7980 "Offices of dentists (6212)" > 7990 "Offices of chiropractors (62131)" > 8070 "Offices of optometrists (62132)" > 8080 "Offices of other health practitioners (6213 exc. 62131, 62132)" > 8090 "Outpatient care centers (6214)" > 8170 "Home health care services (6216)" > 8180 "Other health care services (6215, 6219)" > 8190 "Hospitals (622)" > 8270 "Nursing care facilities (6231)" > 8290 "Residential care facilities, without nursing (6232, 6233, 6239)" > 8370 "Individual and family services (6241)" > 8380 "Community food and housing, and emergency services (6242)" > 8390 "Vocational rehabilitation services (6243)" > 8470 "Child day care services (6244)" > 8560 "Independent artists, performing arts, spectator sports, and related industries (711)" > 8570 "Museums, art galleries, historical sites, and similar institutions (712)" > 8580 "Bowling centers (71395)" > 8590 "Other amusement, gambling, and recreation industries (713 exc. 71395)" > 8660 "Traveler accommodation (7211)" > 8670 "Recreational vehicle parks and camps, and rooming and boarding houses (7212, 7213)" > 8680 "Restaurants and other food services (722 exc. 7224)" > 8690 "Drinking places, alcoholic beverages (7224)" > 8770 "Automotive repair and maintenance (8111 exc. 811192)" > 8780 "Car washes (811192)" > 8790 "Electronic and precision equipment repair and maintenance (8112)" > 8870 "Commercial and industrial machinery and equipment repair and maintenance (8113)" > 8880 "Personal and household goods repair and maintenance (8114 exc. 81143)" > 8890 "Footwear and leather goods repair (81143)" > 8970 "Barber shops (812111)" > 8980 "Beauty salons (812112)" > 8990 "Nail salons and other personal care services (812113, 81219)" > 9070 "Drycleaning and laundry services (8123)" > 9080 "Funeral homes, cemeteries, and crematories (8122)" > 9090 "Other personal services (8129)" > 9160 "Religious organizations (8131)" > 9170 "Civic, social, advocacy organizations, and grantmaking and giving services (8132, 8133 > , 8134)" > 9180 "Labor unions (81393)" > 9190 "Business, professional, political, and similar organizations (8139 exc. 81393)" > 9290 "Private households (814)" > 9370 "Executive offices and legislative bodies (92111, 92112, 92114, pt. 92115)" > 9380 "Public finance activities (92113)" > 9390 "Other general government and support (92119)" > 9470 "Justice, public order, and safety activities (922, pt. 92115)" > 9480 "Administration of human resource programs (923)" > 9490 "Administration of environmental quality and housing programs (924, 925)" > 9570 "Administration of economic programs and space research (926, 927)" > 9590 "National security and international affairs (928)" > 9890 "Armed Forces" > 9970 "Problem referral" > 9990 "Uncodable ((Includes Refused or reported Classified))" > 9670 "U. S. Army" > 9680 "U. S. Air Force" > 9690 "U. S. Navy" > 9770 "U. S. Marines" > 9780 "U. S. Coast Guard" > 9790 "U. S. Armed Forces, Branch Not Specified" > 9870 "Military Reserves or National Guard" > ; . *dind02: 2000-; . label values dind02 dind02; . label define dind02 > 1 "Agriculture" > 2 "Forestry, logging, fishing, hunting, and trapping" > 3 "Mining" > 4 "Construction" > 5 "Nonmetallic mineral products" > 6 "Primary metals and fabricated metal products" > 7 "Machinery manufacturing" > 8 "Computer and electronic products" > 9 "Electrical equipment, appliance manufacturing" > 10 "Transportation equipment manufacturing" > 11 "Wood products" > 12 "Furniture and fixtures manufacturing" > 13 "Miscellaneous and not specified manufacturing" > 14 "Food manufacturing" > 15 "Beverage and tobacco products" > 16 "Textile, apparel, and leather manufacturing" > 17 "Paper and printing" > 18 "Petroleum and coal products" > 19 "Chemical manufacturing" > 20 "Plastics and rubber products" > 21 "Wholesale trade" > 22 "Retail trade" > 23 "Transportation and warehousing" > 24 "Utilities" > 25 "Publishing industries (except internet)" > 26 "Motion picture and sound recording industries" > 27 "Broadcasting (except internet)" > 28 "Internet publishing and broadcasting" > 29 "Telecommunications" > 30 "Internet service providers and data processing services" > 31 "Other information services" > 32 "Finance" > 33 "Insurance" > 34 "Real Estate" > 35 "Rental and leasing services" > 36 "Professional and Technical services" > 37 "Management of companies and enterprises" > 38 "Administrative and support services" > 39 "Waste management and remediation services" > 40 "Educational services" > 41 "Hospitals" > 42 "Health care services , except hospitals" > 43 "Social assistance" > 44 "Arts, entertainment, and recreation" > 45 "Accomodation" > 46 "Food services and drinking places" > 47 "Repair and maintenance" > 48 "Personal and laundry services" > 49 "Membership associations and organizations" > 50 "Private households" > 51 "Public Administration" > 52 "Armed forces" > ; . * occ2011: 2011-; . *label values occ2011 occ2011l ; . *label define occ2011l > 10 "Chief executives 11-1011" > 20 "General and operations managers 11-1021" > 30 "Legislators 11-1031" > 40 "Advertising and promotions managers 11-2011" > 50 "Marketing and sales managers 11-2020" > 60 "Public relations managers 11-2031" > 100 "Administrative services managers 11-3011" > 110 "Computer and information systems managers 11-3021" > 120 "Financial managers 11-3031" > 135 "Compensation and benefits managers 11-3111" > 136 "Human Resources Managers 11-3121" > 137 "Training and Development Managers 11-3131" > 140 "Industrial production managers 11-3051" > 150 "Purchasing managers 11-3061" > 160 "Transportation, storage, and distribution managers 11-3071" > 205 "Farmers, Ranchers, and other Agricultural Managers 11-9013" > 220 "Construction managers 11-9021" > 230 "Education administrators 11-9030" > 300 "Engineering managers 11-9041" > 310 "Food service managers 11-9051" > 325 "Funeral Service Managers 11-9061" > 330 "Gaming managers 11-9071" > 340 "Lodging managers 11-9081" > 350 "Medical and health services managers 11-9111" > 360 "Natural sciences managers 11-9121" > 400 "Postmasters and mail superintendents 11-9131" > 410 "Property, real estate, and community association managers 11-9141" > 420 "Social and community service managers 11-9151" > 425 "Emergency Management Directors 11-9161" > 430 "Managers, all other 11-9199" > 500 "Agents and business managers of artists, performers, and athletes 13-1011" > 510 "Purchasing agents and buyers, farm products 13-1021" > 520 "Wholesale and retail buyers, except farm products 13-1022" > 530 "Purchasing agents, except wholesale, retail, and farm products 13-1023" > 540 "Claims adjusters, appraisers, examiners, and investigators 13-1030" > 565 "Compliance Officers 13-1041" > 600 "Cost estimators 13-1051" > 630 "Human resources workers 13-1070" > 640 "Compensation, benefits, and job analysis specialists 13-1141" > 650 "Training and development specialists 13-1151" > 700 "Logisticians 13-1081" > 710 "Management analysts 13-1111" > 725 "Meeting, convention, and event planners 13-1121" > 726 "Fundraisers 13-1131" > 735 "Market research analysts and marketing specialists 13-1161" > 740 "Business operations specialists, all other 13-1199" > 800 "Accountants and auditors 13-2011" > 810 "Appraisers and assessors of real estate 13-2021" > 820 "Budget analysts 13-2031" > 830 "Credit analysts 13-2041" > 840 "Financial analysts 13-2051" > 850 "Personal financial advisors 13-2052" > 860 "Insurance underwriters 13-2053" > 900 "Financial examiners 13-2061" > 910 "Loan counselors and officers 13-2070" > 930 "Tax examiners, collectors, and revenue agents 13-2081" > 940 "Tax preparers 13-2082" > 950 "Financial specialists, all other 13-2099" > 1000 "Computer scientists and systems analysts 15-10XX" > 1005 "Computer and information research scientists 15-1111" > 1006 "Computer systems analysts 15-1121" > 1007 "Information security analysts 15-1122" > 1010 "Computer programmers 15-1131" > 1020 "Software developers, applications and systems software 15-113X" > 1030 "Web developers 15-1134" > 1050 "Computer support specialists 15-1150" > 1060 "Database administrators 15-1141" > 1105 "Network and computer systems administrators 15-1142" > 1106 "Computer network architects 15-1143" > 1107 "Computer occupations, all other 15-1199" > 1200 "Actuaries 15-2011" > 1210 "Mathematicians 15-2021" > 1220 "Operations research analysts 15-2031" > 1230 "Statisticians 15-2041" > 1240 "Miscellaneous mathematical science occupations 15-2090" > 1300 "Architects, except naval 17-1010" > 1310 "Surveyors, cartographers, and photogrammetrists 17-1020" > 1320 "Aerospace engineers 17-2011" > 1330 "Agricultural engineers 17-2021" > 1340 "Biomedical engineers 17-2031" > 1350 "Chemical engineers 17-2041" > 1360 "Civil engineers 17-2051" > 1400 "Computer hardware engineers 17-2061" > 1410 "Electrical and electronic engineers 17-2070" > 1420 "Environmental engineers 17-2081" > 1430 "Industrial engineers, including health and safety 17-2110" > 1440 "Marine engineers and naval architects 17-2121" > 1450 "Materials engineers 17-2131" > 1460 "Mechanical engineers 17-2141" > 1500 "Mining and geological engineers, including mining safety engineers 17-2151" > 1510 "Nuclear engineers 17-2161" > 1520 "Petroleum engineers 17-2171" > 1530 "Engineers, all other 17-2199" > 1540 "Drafters 17-3010" > 1550 "Engineering technicians, except drafters 17-3020" > 1560 "Surveying and mapping technicians 17-3031" > 1600 "Agricultural and food scientists 19-1010" > 1610 "Biological scientists 19-1020" > 1640 "Conservation scientists and foresters 19-1030" > 1650 "Medical scientists 19-1040" > 1660 "Life Scientists, all other 16-1099" > 1700 "Astronomers and physicists 19-2010" > 1710 "Atmospheric and space scientists 19-2021" > 1720 "Chemists and materials scientists 19-2030" > 1740 "Environmental scientists and geoscientists 19-2040" > 1760 "Physical scientists, all other 19-2099" > 1800 "Economists 19-3011" > 1815 "Survey Researchers 19-3022" > 1820 "Psychologists 19-3030" > 1830 "Sociologists 19-3041" > 1840 "Urban and regional planners 19-3051" > 1860 "Miscellaneous social scientists and related workers 19-3090" > 1900 "Agricultural and food science technicians 19-4011" > 1910 "Biological technicians 19-4021" > 1920 "Chemical technicians 19-4031" > 1930 "Geological and petroleum technicians 19-4041" > 1940 "Nuclear technicians 19-4051" > 1950 "Social science research assistants 19-4061" > 1965 "Miscellaneous life, physical, and social science technicians 19-4090" > 2000 "Counselors 21-1010" > 2010 "Social workers 21-1020" > 2015 "Probation Officers and Correctional Treatment Specialists 21-1092" > 2016 "Social and Human Service Assistants 21-1093" > 2025 "Miscellaneous community and social service specialists, 21-109X" > 2040 "Clergy 21-2011" > 2050 "Directors, religious activities and education 21-2021" > 2060 "Religious workers, all other 21-2099" > 2100 "Lawyers, Judges, magistrates, and other judicial workers 23-1011" > 2105 "Judicial Law Clerks 23-1012" > 2110 "Judges, Magistrates, and Other Judicial Workers 23-1020" > 2145 "Paralegals and Legal Assistants 23-2011" > 2160 "Miscellaneous Legal Support Workers 23-2090" > 2200 "Postsecondary teachers 25-1000" > 2300 "Preschool and kindergarten teachers 25-2010" > 2310 "Elementary and middle school teachers 25-2020" > 2320 "Secondary school teachers 25-2030" > 2330 "Special education teachers 25-2050" > 2340 "Other teachers and instructors 25-3000" > 2400 "Archivists, curators, and museum technicians 25-4010" > 2430 "Librarians 25-4021" > 2440 "Library technicians 25-4031" > 2540 "Teacher assistants 25-9041" > 2550 "Other education, training, and library workers 25-90XX" > 2600 "Artists and related workers 27-1010" > 2630 "Designers 27-1020" > 2700 "Actors 27-2011" > 2710 "Producers and directors 27-2012" > 2720 "Athletes, coaches, umpires, and related workers 27-2020" > 2740 "Dancers and choreographers 27-2030" > 2750 "Musicians, singers, and related workers 27-2040" > 2760 "Entertainers and performers, sports and related workers, all other 27-2099" > 2800 "Announcers 27-3010" > 2810 "News analysts, reporters and correspondents 27-3020" > 2825 "Public Relations Specialists 27-3031" > 2830 "Editors 27-3041" > 2840 "Technical writers 27-3042" > 2850 "Writers and authors 27-3043" > 2860 "Miscellaneous media and communication workers 27-3090" > 2900 "Broadcast and sound engineering technicians and radio operators 27-4010" > 2910 "Photographers 27-4021" > 2920 "Television, video, and motion picture camera operators and editors 27-4030" > 2960 "Media and communication equipment workers, all other 27-4099" > 3000 "Chiropractors 29-1011" > 3010 "Dentists 29-1020" > 3030 "Dietitians and nutritionists 29-1031" > 3040 "Optometrists 29-1041" > 3050 "Pharmacists 29-1051" > 3060 "Physicians and surgeons 29-1060" > 3110 "Physician assistants 29-1071" > 3120 "Podiatrists 29-1081" > 3140 "Audiologists 29-1181" > 3150 "Occupational therapists 29-1122" > 3160 "Physical therapists 29-1123" > 3200 "Radiation therapists 29-1124" > 3210 "Recreational therapists 29-1125" > 3220 "Respiratory therapists 29-1126" > 3230 "Speech-language pathologists 29-1127" > 3235 "Exercise Physiologists 29-1128" > 3245 "Therapists, all other 29-1129" > 3250 "Veterinarians 29-1131" > 3255 "Registered Nurses 29-1141" > 3256 "Nurse Anesthetists 29-1151" > 3257 "Nurse Midwives 29-1161" > 3258 "Nurse Practitioners 29-1171" > 3260 "Health diagnosing and treating practitioners, all other 29-1199" > 3300 "Clinical laboratory technologists and technicians 29-2010" > 3310 "Dental hygienists 29-2021" > 3320 "Diagnostic related technologists and technicians 29-2030" > 3400 "Emergency medical technicians and paramedics 29-2041" > 3420 "Health Practitioner Support Technologists and Technicians 29-2050" > 3500 "Licensed practical and licensed vocational nurses 29-2061" > 3510 "Medical records and health information technicians 29-2071" > 3520 "Opticians, dispensing 29-2081" > 3535 "Miscellaneous Health Technologists and Technicians 29-2090" > 3540 "Other healthcare practitioners and technical occupations 29-9000" > 3600 "Nursing, psychiatric, and home health aides 31-1010" > 3610 "Occupational therapist assistants and aides 31-2010" > 3620 "Physical therapist assistants and aides 31-2020" > 3630 "Massage therapists 31-9011" > 3640 "Dental assistants 31-9091" > 3645 "Medical Assistants 31-9092" > 3646 "Medical Transcriptionists 31-9094" > 3647 "Pharmacy Aides 31-9095" > 3648 "Veterinary Assistants and Laboratory Animal Caretakers 31-9096" > 3649 "Phlebotomists 31-9097" > 3655 "Miscellaneous Healthcare Support Occupations, Including 31-909X" > 3700 "First-line supervisors/managers of correctional officers 33-1011" > 3710 "First-line supervisors/managers of police and detectives 33-1012" > 3720 "First-line supervisors/managers of fire fighting and prevention workers 33-1021" > 3730 "Supervisors, protective service workers, all other 33-1099" > 3740 "Fire fighters 33-2011" > 3750 "Fire inspectors 33-2020" > 3800 "Bailiffs, correctional officers, and jailers 33-3010" > 3820 "Detectives and criminal investigators 33-3021" > 3830 "Fish and game wardens 33-3031" > 3840 "Parking enforcement workers 33-3041" > 3850 "Police and sheriff's patrol officers 33-3051" > 3860 "Transit and railroad police 33-3052" > 3900 "Animal control workers 33-9011" > 3910 "Private detectives and investigators 33-9021" > 3930 "Security Guards and Gaming Surveillance Officers 33-9030" > 3940 "Crossing guards 33-9091" > 3945 "Transportation Security Screeners 33-9093" > 3955 "Lifeguards and Other Recreational, and all Other Protective Service Workers 33-909X" > 4000 "Chefs and head cooks 35-1011" > 4010 "First-line supervisors/managers of food preparation and serving workers 35-1012" > 4020 "Cooks 35-2010" > 4030 "Food preparation workers 35-2021" > 4040 "Bartenders 35-3011" > 4050 "Combined food preparation and serving workers, including fast food 35-3021" > 4060 "Counter attendants, cafeteria, food concession, and coffee shop 35-3022" > 4110 "Waiters and waitresses 35-3031" > 4120 "Food servers, nonrestaurant 35-3041" > 4130 "Dining room and cafeteria attendants and bartender helpers 35-9011" > 4140 "Dishwashers 35-9021" > 4150 "Hosts and hostesses, restaurant, lounge, and coffee shop 35-9031" > 4160 "Food preparation and serving related workers, all other 35-9099" > 4200 "First-line supervisors/managers of housekeeping and janitorial workers 37-1011" > 4210 "First-line supervisors/managers of landscaping, lawn service, and groundskeeping worke > rs 37-1012" > 4220 "Janitors and building cleaners 31-201X" > 4230 "Maids and housekeeping cleaners 37-2012" > 4240 "Pest control workers 37-2021" > 4250 "Grounds maintenance workers 37-3010" > 4300 "First-line supervisors/managers of gaming workers 39-1010" > 4320 "First-line supervisors/managers of personal service workers 39-1021" > 4340 "Animal trainers 39-2011" > 4350 "Nonfarm animal caretakers 39-2021" > 4400 "Gaming services workers 39-3010" > 4410 "Motion picture projectionists 39-3021" > 4420 "Ushers, lobby attendants, and ticket takers 39-3031" > 4430 "Miscellaneous entertainment attendants and related workers 39-3090" > 4460 "Funeral service workers 39-40XX" > 4465 "Morticians, Undertakers, and Funeral Directors 39-4031" > 4500 "Barbers 39-5011" > 4510 "Hairdressers, hairstylists, and cosmetologists 39-5012" > 4520 "Miscellaneous personal appearance workers 39-5090" > 4530 "Baggage porters, bellhops, and concierges 39-6010" > 4540 "Tour and travel guides 39-7010" > 4600 "Child care workers 39-9011" > 4610 "Personal and home care aides 39-9021" > 4620 "Recreation and fitness workers 39-9030" > 4640 "Residential advisors 39-9041" > 4650 "Personal care and service workers, all other 39-9099" > 4700 "First-line supervisors/managers of retail sales workers 41-1011" > 4710 "First-line supervisors/managers of non-retail sales workers 41-1012" > 4720 "Cashiers 41-2010" > 4740 "Counter and rental clerks 41-2021" > 4750 "Parts salespersons 41-2022" > 4760 "Retail salespersons 41-2031" > 4800 "Advertising sales agents 41-3011" > 4810 "Insurance sales agents 41-3021" > 4820 "Securities, commodities, and financial services sales agents 41-3031" > 4830 "Travel agents 41-3041" > 4840 "Sales representatives, services, all other 41-3099" > 4850 "Sales representatives, wholesale and manufacturing 41-4010" > 4900 "Models, demonstrators, and product promoters 41-9010" > 4920 "Real estate brokers and sales agents 41-9020" > 4930 "Sales engineers 41-9031" > 4940 "Telemarketers 41-9041" > 4950 "Door-to-door sales workers, news and street vendors, and related workers 41-9091" > 4965 "Sales and Related Workers, all other 41-9099" > 5000 "First-line supervisors/managers of office and administrative support workers 43-1011" > 5010 "Switchboard operators, including answering service 43-2011" > 5020 "Telephone operators 43-2021" > 5030 "Communications equipment operators, all other 43-2099" > 5100 "Bill and account collectors 43-3011" > 5110 "Billing and posting clerks and machine operators 43-3021" > 5120 "Bookkeeping, accounting, and auditing clerks 43-3031" > 5130 "Gaming cage workers 43-3041" > 5140 "Payroll and timekeeping clerks 43-3051" > 5150 "Procurement clerks 43-3061" > 5160 "Tellers 43-3071" > 5165 "Financial Clerks, all other 43-3099" > 5200 "Brokerage clerks 43-4011" > 5210 "Correspondence clerks 43-4021" > 5220 "Court, municipal, and license clerks 43-4031" > 5230 "Credit authorizers, checkers, and clerks 43-4041" > 5240 "Customer service representatives 43-4051" > 5250 "Eligibility interviewers, government programs 43-4061" > 5260 "File Clerks 43-4071" > 5300 "Hotel, motel, and resort desk clerks 43-4081" > 5310 "Interviewers, except eligibility and loan 43-4111" > 5320 "Library assistants, clerical 43-4121" > 5330 "Loan interviewers and clerks 43-4131" > 5340 "New accounts clerks 43-4141" > 5350 "Order clerks 43-4151" > 5360 "Human resources assistants, except payroll and timekeeping 43-4161" > 5400 "Receptionists and information clerks 43-4171" > 5410 "Reservation and transportation ticket agents and travel clerks 43-4181" > 5420 "Information and record clerks, all other 43-4199" > 5500 "Cargo and freight agents 43-5011" > 5510 "Couriers and messengers 43-5021" > 5520 "Dispatchers 43-5030" > 5530 "Meter readers, utilities 43-5041" > 5540 "Postal service clerks 43-5051" > 5550 "Postal service mail carriers 43-5052" > 5560 "Postal service mail sorters, processors, and processing machine operators 43-5053" > 5600 "Production, planning, and expediting clerks 43-5061" > 5610 "Shipping, receiving, and traffic clerks 43-5071" > 5620 "Stock clerks and order fillers 43-5081" > 5630 "Weighers, measurers, checkers, and samplers, recordkeeping 43-5111" > 5700 "Secretaries and administrative assistants 43-6010" > 5800 "Computer operators 43-9011" > 5810 "Data entry keyers 43-9021" > 5820 "Word processors and typists 43-9022" > 5830 "Desktop publishers 43-9031" > 5840 "Insurance claims and policy processing clerks 43-9041" > 5850 "Mail clerks and mail machine operators, except postal service 43-9051" > 5860 "Office clerks, general 43-9061" > 5900 "Office machine operators, except computer 43-9071" > 5910 "Proofreaders and copy markers 43-9081" > 5920 "Statistical assistants 43-9111" > 5940 "Office and Administrative Support Workers, all other 43-9199" > 6005 "First-line supervisors of farming, fishing, and forestry workers 45-1011" > 6010 "Agricultural inspectors 45-2011" > 6020 "Animal breeders 45-2021" > 6040 "Graders and sorters, agricultural products 45-2041" > 6050 "Miscellaneous agricultural workers 45-2090" > 6100 "Fishers and related fishing workers 45-3011" > 6110 "Hunters and trappers 45-3021" > 6120 "Forest and conservation workers 45-4011" > 6130 "Logging workers 45-4020" > 6200 "First-line supervisors/managers of construction trades and extraction workers 47-1011" > 6210 "Boilermakers 47-2011" > 6220 "Brickmasons, blockmasons, and stonemasons 47-2020" > 6230 "Carpenters 47-2031" > 6240 "Carpet, floor, and tile installers and finishers 47-2040" > 6250 "Cement masons, concrete finishers, and terrazzo workers 47-2050" > 6260 "Construction laborers 47-2061" > 6300 "Paving, surfacing, and tamping equipment operators 47-2071" > 6310 "Pile-driver operators 47-2072" > 6320 "Operating engineers and other construction equipment operators 47-2073" > 6330 "Drywall installers, ceiling tile installers, and tapers 47-2080" > 6355 "Electricians 47-2111" > 6360 "Glaziers 47-2121" > 6400 "Insulation workers 47-2130" > 6420 "Painters, construction and maintenance 47-2141" > 6430 "Paperhangers 47-2142" > 6440 "Pipelayers, plumbers, pipefitters, and steamfitters 47-2150" > 6460 "Plasterers and stucco masons 47-2161" > 6500 "Reinforcing iron and rebar workers 47-2171" > 6515 "Roofers 47-2181" > 6520 "Sheet metal workers 47-2211" > 6530 "Structural iron and steel workers 47-2221" > 6540 "Solar Photovoltaic Installers 47-2231" > 6600 "Helpers, construction trades 47-3010" > 6660 "Construction and building inspectors 47-4011" > 6700 "Elevator installers and repairers 47-4021" > 6710 "Fence erectors 47-4031" > 6720 "Hazardous materials removal workers 47-4041" > 6730 "Highway maintenance workers 47-4051" > 6740 "Rail-track laying and maintenance equipment operators 47-4061" > 6750 "Septic tank servicers and sewer pipe cleaners 47-4071" > 6765 "Miscellaneous construction and related workers 47-4090" > 6800 "Derrick, rotary drill, and service unit operators, oil, gas, and mining 47-5010" > 6820 "Earth drillers, except oil and gas 47-5021" > 6830 "Explosives workers, ordnance handling experts, and blasters 47-5031" > 6840 "Mining machine operators 47-5040" > 6910 "Roof bolters, mining 47-5061" > 6920 "Roustabouts, oil and gas 47-5071" > 6930 "Helpers--extraction workers 47-5081" > 6940 "Other extraction workers 47-50XX" > 7000 "First-line supervisors/managers of mechanics, installers, and repairers 49-1011" > 7010 "Computer, automated teller, and office machine repairers 49-2011" > 7020 "Radio and telecommunications equipment installers and repairers 49-2020" > 7030 "Avionics technicians 49-2091" > 7040 "Electric motor, power tool, and related repairers 49-2092" > 7050 "Electrical and electronics installers and repairers, transportation equipment 49-2093" > 7100 "Electrical and electronics repairers, industrial and utility 49-209X" > 7110 "Electronic equipment installers and repairers, motor vehicles 49-2096" > 7120 "Electronic home entertainment equipment installers and repairers 49-2097" > 7130 "Security and fire alarm systems installers 49-2098" > 7140 "Aircraft mechanics and service technicians 49-3011" > 7150 "Automotive body and related repairers 49-3021" > 7160 "Automotive glass installers and repairers 49-3022" > 7200 "Automotive service technicians and mechanics 49-3023" > 7210 "Bus and truck mechanics and diesel engine specialists 49-3031" > 7220 "Heavy vehicle and mobile equipment service technicians and mechanics 49-3040" > 7240 "Small engine mechanics 49-3050" > 7260 "Miscellaneous vehicle and mobile equipment mechanics, installers, and repairers 49-309 > 0" > 7300 "Control and valve installers and repairers 49-9010" > 7315 "Heating, air conditioning, and refrigeration mechanics and installers 49-9021" > 7320 "Home appliance repairers 49-9031" > 7330 "Industrial and refractory machinery mechanics 49-904X" > 7340 "Maintenance and repair workers, general 49-9071" > 7350 "Maintenance workers, machinery 49-9043" > 7360 "Millwrights 49-9044" > 7410 "Electrical power-line installers and repairers 49-9051" > 7420 "Telecommunications line installers and repairers 49-9052" > 7430 "Precision instrument and equipment repairers 49-9060" > 7440 "Wind Turbine Service Technicians 49-9081" > 7510 "Coin, vending, and amusement machine servicers and repairers 49-9091" > 7520 "Commercial divers 49-9092" > 7540 "Locksmiths and safe repairers 49-9094" > 7550 "Manufactured building and mobile home installers 49-9095" > 7560 "Riggers 49-9096" > 7600 "Signal and track switch repairers 49-9097" > 7610 "Helpers--installation, maintenance, and repair workers 49-9098" > 7630 "Other installation, maintenance, and repair workers 49-909X" > 7700 "First-line supervisors/managers of production and operating workers 51-1011" > 7710 "Aircraft structure, surfaces, rigging, and systems assemblers 51-2011" > 7720 "Electrical, electronics, and electromechanical assemblers 51-2020" > 7730 "Engine and other machine assemblers 51-2031" > 7740 "Structural metal fabricators and fitters 51-2041" > 7750 "Miscellaneous assemblers and fabricators 51-2090" > 7800 "Bakers 51-3011" > 7810 "Butchers and other meat, poultry, and fish processing workers 51-3020" > 7830 "Food and tobacco roasting, baking, and drying machine operators and tenders 51-3091" > 7840 "Food batchmakers 51-3092" > 7850 "Food cooking machine operators and tenders 51-3093" > 7855 "Food Processing Workers, all Other 51-3099" > 7900 "Computer control programmers and operators 51-4010" > 7920 "Extruding and drawing machine setters, operators, and tenders, metal and plastic 51-40 > 21" > 7930 "Forging machine setters, operators, and tenders, metal and plastic 51-4022" > 7940 "Rolling machine setters, operators, and tenders, metal and plastic 51-4023" > 7950 "Cutting, punching, and press machine setters, operators, and tenders, metal and plasti > c 51-4031" > 7960 "Drilling and boring machine tool setters, operators, and tenders, metal and plastic 51 > -4032" > 8000 "Grinding, lapping, polishing, and buffing machine tool setters, operators, and tenders > , metal and plastic 51-4033" > 8010 "Lathe and turning machine tool setters, operators, and tenders, metal and plastic 51-4 > 034" > 8020 "Milling and planing machine setters, operators, and tenders, metal and plastic 51-4035 > " > 8030 "Machinists 51-4041" > 8040 "Metal furnace and kiln operators and tenders 51-4050" > 8060 "Model makers and patternmakers, metal and plastic 51-4060" > 8100 "Molders and molding machine setters, operators, and tenders, metal and plastic 51-4070 > " > 8120 "Multiple machine tool setters, operators, and tenders, metal and plastic 51-4081" > 8130 "Tool and die makers 51-4111" > 8140 "Welding, soldering, and brazing workers 51-4120" > 8150 "Heat treating equipment setters, operators, and tenders, metal and plastic 51-4191" > 8160 "Lay-out workers, metal and plastic 51-4192" > 8200 "Plating and coating machine setters, operators, and tenders, metal and plastic 51-4193 > " > 8210 "Tool grinders, filers, and sharpeners 51-4194" > 8220 "Metalworkers and plastic workers, all other 51-4199" > 8250 "Prepress technicians and workers 51-5111" > 8255 "Printing Press Operators 51-5112" > 8256 "Print Binding and Finishing Workers 51-5113" > 8300 "Laundry and dry-cleaning workers 51-6011" > 8310 "Pressers, textile, garment, and related materials 51-6021" > 8320 "Sewing machine operators 51-6031" > 8330 "Shoe and leather workers and repairers 51-6041" > 8340 "Shoe machine operators and tenders 51-6042" > 8350 "Tailors, dressmakers, and sewers 51-6050" > 8360 "Textile bleaching and dyeing machine operators and tenders 51-6061" > 8400 "Textile cutting machine setters, operators, and tenders 51-6062" > 8410 "Textile knitting and weaving machine setters, operators, and tenders 51-6063" > 8420 "Textile winding, twisting, and drawing out machine setters, operators, and tenders 51- > 6064" > 8430 "Extruding and forming machine setters, operators, and tenders, synthetic and glass fib > ers 51-6091" > 8440 "Fabric and apparel patternmakers 51-6092" > 8450 "Upholsterers 51-6093" > 8460 "Textile, apparel, and furnishings workers, all other 51-6099" > 8500 "Cabinetmakers and bench carpenters 51-7011" > 8510 "Furniture finishers 51-7021" > 8520 "Model makers and patternmakers, wood 51-7030" > 8530 "Sawing machine setters, operators, and tenders, wood 51-7041" > 8540 "Woodworking machine setters, operators, and tenders, except sawing 51-7042" > 8550 "Woodworkers, all other 51-7099" > 8600 "Power plant operators, distributors, and dispatchers 51-8010" > 8610 "Stationary engineers and boiler operators 51-8021" > 8620 "Water and liquid waste treatment plant and system operators 51-8031" > 8630 "Miscellaneous plant and system operators 51-8090" > 8640 "Chemical processing machine setters, operators, and tenders 51-9010" > 8650 "Crushing, grinding, polishing, mixing, and blending workers 51-9020" > 8710 "Cutting workers 51-9030" > 8720 "Extruding, forming, pressing, and compacting machine setters, operators, and tenders 5 > 1-9041" > 8730 "Furnace, kiln, oven, drier, and kettle operators and tenders 51-9051" > 8740 "Inspectors, testers, sorters, samplers, and weighers 51-9061" > 8750 "Jewelers and precious stone and metal workers 51-9071" > 8760 "Medical, dental, and ophthalmic laboratory technicians 51-9080" > 8800 "Packaging and filling machine operators and tenders 51-9111" > 8810 "Painting workers 51-9120" > 8830 "Photographic process workers and processing machine operators 51-9151" > 8840 "Semiconductor processors 51-9141" > 8850 "Cementing and gluing machine operators and tenders 51-9191" > 8860 "Cleaning, washing, and metal pickling equipment operators and tenders 51-9192" > 8900 "Cooling and freezing equipment operators and tenders 51-9193" > 8910 "Etchers and engravers 51-9194" > 8920 "Molders, shapers, and casters, except metal and plastic 51-9195" > 8930 "Paper goods machine setters, operators, and tenders 51-9196" > 8940 "Tire builders 51-9197" > 8950 "Helpers--production workers 51-9198" > 8965 "Production workers, all other 51-9199" > 9000 "Supervisors, transportation and material moving workers 53-1000" > 9030 "Aircraft pilots and flight engineers 53-2010" > 9040 "Air traffic controllers and airfield operations specialists 53-2020" > 9050 "Flight Attendants 53-2031" > 9110 "Ambulance drivers and attendants, except emergency medical technicians 53-3011" > 9120 "Bus drivers 53-3020" > 9130 "Driver/sales workers and truck drivers 53-3030" > 9140 "Taxi drivers and chauffeurs 53-3041" > 9150 "Motor vehicle operators, all other 53-3099" > 9200 "Locomotive engineers and operators 53-4010" > 9230 "Railroad brake, signal, and switch operators 53-4021" > 9240 "Railroad conductors and yardmasters 53-4031" > 9260 "Subway, streetcar, and other rail transportation workers 53-40XX" > 9300 "Sailors and marine oilers 53-5011" > 9310 "Ship and boat captains and operators 53-5020" > 9330 "Ship engineers 53-5031" > 9340 "Bridge and lock tenders 53-6011" > 9350 "Parking lot attendants 53-6021" > 9360 "Service station attendants 53-6031" > 9410 "Transportation inspectors 53-6051" > 9415 "Transportation Attendants, Except Flight Attendants 53-6061" > 9420 "Other transportation workers 53-60XX" > 9500 "Conveyor operators and tenders 53-7011" > 9510 "Crane and tower operators 53-7021" > 9520 "Dredge, excavating, and loading machine operators 53-7030" > 9560 "Hoist and winch operators 53-7041" > 9600 "Industrial truck and tractor operators 53-7051" > 9610 "Cleaners of vehicles and equipment 53-7061" > 9620 "Laborers and freight, stock, and material movers, hand 53-7062" > 9630 "Machine feeders and offbearers 53-7063" > 9640 "Packers and packagers, hand 53-7064" > 9650 "Pumping station operators 53-7070" > 9720 "Refuse and recyclable material collectors 53-7081" > 9730 "Shuttle car operators 53-7111" > 9740 "Tank car, truck, and ship loaders 53-7121" > 9750 "Material moving workers, all other 53-7199" > 9840 "Armed Forces" > 9970 "Problem referral" > 9990 "Not reported (Includes Refused, Classified, blank and all other noncodable entries)" > 9800 "Military officer special and tactical operations leaders/managers 55-1010" > 9810 "First-line enlisted military supervisors/managers 55-2010" > 9820 "Military enlisted tactical operations and air/weapons specialists and crew members 55- > 3010" > 9830 "Military, rank not specified 99-9999" > ; . * docc00: 2000-; . label values docc00 docc00l ; . label define docc00l > 1 "Management occupations" > 2 "Business and financial operations occupations" > 3 "Computer and mathematical science occupations" > 4 "Architecture and engineering occupations" > 5 "Life, physical, and social science occupations" > 6 "Community and social service occupations" > 7 "Legal occupations" > 8 "Education, training, and library occupations" > 9 "Arts, design, entertainment, sports, and media occupations" > 10 "Healthcare practitioner and technical occupations" > 11 "Healthcare support occupations" > 12 "Protective service occupations" > 13 "Food preparation and serving related occupations" > 14 "Building and grounds cleaning and maintenance occupations" > 15 "Personal care and service occupations" > 16 "Sales and related occupations" > 17 "Office and administrative support occupations" > 18 "Farming, fishing, and forestry occupations" > 19 "Construction and extraction occupations" > 20 "Installation, maintenance, and repair occupations" > 21 "Production occupations" > 22 "Transportation and material moving occupations" > 23 "Armed Forces" > ; . * eligible: 1979:5-; . label values eligible P21L; . label define P21L > 1 "Earnings Eligible For Edit" > 2 "Other" > ; . * reason94: 1994-; . label values reason94 P22L; . label define P22L > 1 "Slack Work/Business Conditions" > 2 "Seasonal Work" > 3 "Job Started Or Ended During Week" > 4 "Vacation/Personal Day" > 5 "Own Illness/Injury/Medical Appointment" > 6 "Holiday (legal Or Religious)" > 7 "Child Care Problems" > 8 "Other Family/Personal Obligations" > 9 "Labor Dispute" > 10 "Weather Affected Job" > 11 "School/Training" > 12 "Civic/Military Duty" > 13 "Other Reason" > ; . * absent94: 1994-; . label values absent94 P23L; . label define P23L > 1 "On Layoff" > 2 "Slack Work/Business Conditions" > 3 "Waiting For A New Job To Begin" > 4 "Vacation/Personal Days" > 5 "Own Illness/Injury/Medical Problems" > 6 "Child Care Problems" > 7 "Other Family/Personal Obligation" > 8 "Maternity/Paternity Leave" > 9 "Labor Dispute" > 10 "Weather Affected Job" > 11 "School/Training" > 12 "Civic/Military Duty" > 13 "Does Not Work In The Business" > 14 "Other (specify)" > ; . *why3594: 1994-; . label values why3594 P3594L; . label define P3594L > 1 "Usu. FT-Slack Work/Business Conditions" > 2 "Usu. FT-Seasonal Work" > 3 "Usu. FT-Job Started/Ended During Week" > 4 "Usu. FT-Vacation/Personal Day" > 5 "Usu. FT-Own Illness/Injury/Medical Appt" > 6 "Usu. FT-Holiday (religious Or Legal)" > 7 "Usu. FT-Child Care Problems" > 8 "Usu. FT-Other Fam/Pers Obligations" > 9 "Usu. FT-Labor Dispute" > 10 "Usu. FT-Weather Affected Job" > 11 "Usu. FT-School/Training" > 12 "Usu. FT-Civic/Military Duty" > 13 "Usu. FT-Other Reason" > 14 "Usu. PT-Slack Work/Business Conditions" > 15 "Usu. PT-Could Only Find PT Work" > 16 "Usu. PT-Seasonal Work" > 17 "Usu. PT-Child Care Problems" > 18 "Usu. PT-Other Fam/Pers Obligations" > 19 "Usu. PT-Health/Medical Limitations" > 20 "Usu. PT-School/Training" > 21 "Usu. PT-Retired/Ss Limit On Earnings" > 22 "Usu. PT-Workweek <35 Hours" > 23 "Usu. PT-Other Reason" > ; . * ftpt94: 1994-; . label values ftpt94 P160L; . label define P160L > 1 "Not In Labor Force" > 2 "FT Hours (35+), Usually FT" > 3 "PT For Economic Reasons, Usually FT" > 4 "PT For Non-Economic Reasons, Usually FT" > 5 "Not At Work, Usually FT" > 6 "PT Hours, Usually PT For Economic Reasons" > 7 "PT hrs, Usually PT For Non-Economic" > 8 "FT Hours, Usually PT For Economic Reas" > 9 "FT hrs, Usually PT For Non-Economic" > 10 "Not at work, Usually Part-Time" > 11 "Unemployed FT" > 12 "Unemployed PT" > ; . * studftpt: 1984-; . label values studftpt P24L; . label define P24L > 1 "Full-time" > 2 "Part-time" > ; . * unionmme: 1983-; . label values unionmme P25L; . label define P25L > 1 "Yes" > 2 "No" > ; . * unioncov: 1983-; . label values unioncov P26L; . label define P26L > 1 "Yes" > 2 "No" > ; . * otc: 1994-; . label values otc yesno; . label define yesno > 1 "Yes" > 2 "No" > ; . * hrhtype: 1984-; . label values hrhtype hrhtype; . label define hrhtype > 0 "Non-interview household" > 1 "Husband/wife primary fam (neither in Armed Forces)" > 2 "Husband/wife primary fam (one/both in Armed Forces)" > 3 "Unmarried civilian male primary fam householder" > 4 "Unmarried civilian female primary fam householder" > 5 "Unmarried primary fam householder in Armed Forces" > 6 "Civilian male primary individual" > 7 "Civilian female primary individual" > 8 "Primary ind HH - reference person in Armed Forces" > 9 "Group quarters with family" > 10 "Group quarters without family" > ; . ** Race 2003-April 2012 has 21 Categories" > ** "Race May 2012 on has 26 Categories" > label values race race26; > label define race26 > 1 "White Only" > 2 "Black Only" > 3 "American Indian, Alaskan Native Only" > 4 "Asian Only" > 5 "Hawaiian/Pacific Islander Only" > 6 "White-Black" > 7 "White-AI" > 8 "White-Asian" > 9 "White-HP" > 10 "Black-AI" > 11 "Black-Asian" > 12 "Black-HP" > 13 "AI-Asian" > 14 "AI-HP" > 15 "Asian-HP" > 16 "W-B-AI" > 17 "W-B-A" > 18 "W-B-HP" > 19 "W-AI-A" > 20 "W-AI-HP" > 21 "W-A-HP" > 22 "B-AI-A" > 23 "W-B-AI-A" > 24 "W-AI-A-HP" > 25 "Other 3 Race Combinations" > 26 "Other 4 and 5 Race Combinations" > ; > > end of do-file (saving in Stata 12 format, which Stata 11 can read) file /homes/data/morg/annual/morg14.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+--------------------------------------------------------- hhid | 0 intmonth | 317,056 6.529733 3.458306 1 12 hurespli | 317,024 1.384075 .7484047 0 12 hrhtype | 317,056 2.703507 2.272043 1 10 minsamp | 317,056 5.991383 1.999985 4 8 -------------+--------------------------------------------------------- hrlonglk | 317,056 1.991213 .1322763 0 2 hrsample | 0 hrhhid2 | 0 serial | 0 hhnum | 317,056 1.052568 .2390683 1 5 -------------+--------------------------------------------------------- state | 78,801 54.37898 26.3805 11 95 stfips | 317,056 27.95977 16.00215 1 56 cbsafips | 317,056 25064.74 20148.38 0 79600 county | 317,056 28.3667 67.21188 0 810 centcity | 258,803 1.950387 .7323869 1 3 -------------+--------------------------------------------------------- smsastat | 314,133 1.201532 .4011454 1 2 icntcity | 29,414 1.446386 1.035312 1 7 smsa04 | 317,056 3.612444 2.579649 0 7 relref95 | 317,056 3.146813 3.204586 1 18 age | 317,056 46.9664 18.44859 16 85 -------------+--------------------------------------------------------- spouse | 163,723 1.586142 .7034124 1 13 sex | 317,056 1.520457 .4995821 1 2 grade92 | 317,056 40.25861 2.729386 31 46 race | 317,056 1.420311 1.320473 1 26 ethnic | 38,984 2.536374 2.383969 1 8 -------------+--------------------------------------------------------- lineno | 317,056 1.749722 1.024197 1 16 famnum | 317,056 .7970043 .4759037 0 5 pfamrel | 317,056 1.367799 1.072842 0 4 marital | 317,056 3.434961 2.656235 1 7 prpertyp | 317,056 2.00417 .0644379 2 3 -------------+--------------------------------------------------------- penatvty | 317,056 87.27447 80.741 57 555 pemntvty | 317,056 96.99976 89.65627 57 555 pefntvty | 317,056 97.12513 89.79876 57 555 prcitshp | 317,056 1.488242 1.212822 1 5 prcitflg | 317,056 .1915939 2.104692 0 41 -------------+--------------------------------------------------------- peinusyr | 317,056 1.945659 5.267882 0 23 selfproxy | 312,292 1.490269 .5057015 1 3 lfsr94 | 315,734 2.928193 2.381503 1 7 absent94 | 6,712 6.304678 3.532423 4 14 uhourse | 173,725 38.75721 11.22632 0 99 -------------+--------------------------------------------------------- reason94 | 12,935 5.199536 2.947534 1 13 hourslw | 180,502 38.58427 13.11594 1 99 laydur | 1,383 8.005785 9.820972 1 52 dwrsn | 6,160 7.177273 3.373161 1 11 why3594 | 45,708 15.03087 6.799926 1 23 -------------+--------------------------------------------------------- prunedur | 11,019 29.25638 34.32266 0 119 untype | 11,019 3.432526 1.669306 1 6 ftpt94 | 315,734 2.630125 2.474323 1 12 class94 | 205,493 4.100694 1.15013 1 8 agri | 205,493 .0201807 .1406185 0 1 -------------+--------------------------------------------------------- eligible | 317,056 1.473046 .4992737 1 2 otc | 167,074 1.865371 .3413279 1 2 ernpdh2 | 95,242 1.736104 .440746 1 2 paidhre | 167,074 1.411494 .4921059 1 2 earnhre | 98,279 1627.096 967.0401 34 9999 -------------+--------------------------------------------------------- earnwke | 167,074 872.3606 649.233 0 2884.61 unionmme | 167,074 1.888277 .3150262 1 2 unioncov | 148,408 1.98583 .1181934 1 2 schenr | 200,061 1.846567 .3604055 1 2 studftpt | 30,696 1.155297 .3621936 1 2 -------------+--------------------------------------------------------- schlvl | 30,696 1.619103 .4856151 1 2 earnwt | 317,056 9384.334 5125.302 0 95889.56 weight | 317,056 2346.084 1274.621 0 24595.83 chldpres | 317,056 1.310595 2.779703 0 15 ownchild | 317,056 .4817414 .9497944 0 11 -------------+--------------------------------------------------------- I25d | 167,074 .3623245 .4806733 0 1 I25c | 98,324 .3975937 .4894031 0 1 I25a | 317,056 .4608303 4.121684 0 43 I25b | 317,056 4.182211 12.56121 0 42 qstnum | 0 -------------+--------------------------------------------------------- occurnum | 0 ged | 92,429 1.098508 .298002 1 2 gedhigr | 9,105 6.425371 1.334513 1 8 yrcoll | 88,119 2.751529 1.033258 1 5 grprof | 59,196 1.726941 .4455347 1 2 -------------+--------------------------------------------------------- gr6cor | 16,164 1.284274 .4510818 1 2 ms123 | 24,125 2.200539 .5658361 1 3 cmpwgt | 317,056 2346.522 1276.836 0 24102.68 ind02 | 205,493 6269.497 2695.202 170 9890 occ2012 | 205,493 4156.507 2571.598 10 9840 -------------+--------------------------------------------------------- occ002 | 317,056 108.2735 729.4847 -1 9750 vet1 | 26,874 3.818226 1.694893 1 9 vet2 | 5,184 3.445409 1.504033 1 9 vet3 | 1,250 2.9856 1.508381 1 8 vet4 | 203 3.704433 1.777564 1 8 -------------+--------------------------------------------------------- linedad | 44,104 1.691479 .9155552 1 12 linemom | 31,845 1.14558 .4027404 1 3 recnum | 317,056 226889.2 131051.6 1 453573 year | 317,056 2014 0 2014 2014 ym_file | 317,056 653.5297 3.458306 648 659 -------------+--------------------------------------------------------- ym | 317,056 644.5556 6.944335 633 656 ch02 | 317,056 .0644429 .2455406 0 1 ch35 | 317,056 .0706784 .2562872 0 1 ch613 | 317,056 .1475418 .3546457 0 1 ch1417 | 317,056 .0904414 .2868136 0 1 -------------+--------------------------------------------------------- ch05 | 317,056 .1125542 .3160476 0 1 ihigrdc | 317,056 13.49144 2.965322 0 18 docc00 | 205,493 12.34945 6.723326 1 23 dind02 | 205,493 46.69765 245.6327 1 3895 . aef2 2015 15 03 13 dct_name aef03.dbd raw_name=../raw/morg15 (0 observations deleted) obs 453225 # of persons with age<=15 138533 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 57,434 12.67 12.67 0 | 3,852 0.85 13.52 1 | 4,564 1.01 14.53 2 | 4,820 1.06 15.59 3 | 4,968 1.10 16.69 4 | 4,883 1.08 17.77 5 | 5,116 1.13 18.90 6 | 5,081 1.12 20.02 7 | 5,360 1.18 21.20 8 | 5,327 1.18 22.37 9 | 5,341 1.18 23.55 10 | 5,213 1.15 24.70 11 | 5,249 1.16 25.86 12 | 5,156 1.14 27.00 13 | 5,304 1.17 28.17 14 | 5,394 1.19 29.36 15 | 5,471 1.21 30.57 16 | 5,399 1.19 31.76 17 | 5,279 1.16 32.92 18 | 4,946 1.09 34.01 19 | 4,392 0.97 34.98 20 | 4,549 1.00 35.99 21 | 4,530 1.00 36.99 22 | 4,732 1.04 38.03 23 | 4,816 1.06 39.09 24 | 5,001 1.10 40.20 25 | 5,106 1.13 41.32 26 | 5,032 1.11 42.43 27 | 4,822 1.06 43.50 28 | 5,012 1.11 44.60 29 | 4,965 1.10 45.70 30 | 5,236 1.16 46.85 31 | 5,031 1.11 47.96 32 | 5,184 1.14 49.11 33 | 5,169 1.14 50.25 34 | 5,194 1.15 51.39 35 | 5,409 1.19 52.59 36 | 5,047 1.11 53.70 37 | 4,887 1.08 54.78 38 | 4,806 1.06 55.84 39 | 4,728 1.04 56.88 40 | 4,978 1.10 57.98 41 | 4,769 1.05 59.03 42 | 4,784 1.06 60.09 43 | 4,959 1.09 61.18 44 | 5,275 1.16 62.35 45 | 5,358 1.18 63.53 46 | 5,134 1.13 64.66 47 | 4,976 1.10 65.76 48 | 5,160 1.14 66.90 49 | 4,957 1.09 67.99 50 | 5,645 1.25 69.24 51 | 5,741 1.27 70.50 52 | 5,608 1.24 71.74 53 | 5,616 1.24 72.98 54 | 5,714 1.26 74.24 55 | 5,636 1.24 75.48 56 | 5,536 1.22 76.71 57 | 5,560 1.23 77.93 58 | 5,565 1.23 79.16 59 | 5,553 1.23 80.39 60 | 5,361 1.18 81.57 61 | 5,286 1.17 82.74 62 | 5,010 1.11 83.84 63 | 5,020 1.11 84.95 64 | 4,852 1.07 86.02 65 | 4,684 1.03 87.05 66 | 4,566 1.01 88.06 67 | 4,396 0.97 89.03 68 | 4,649 1.03 90.06 69 | 3,575 0.79 90.84 70 | 3,335 0.74 91.58 71 | 3,232 0.71 92.29 72 | 3,192 0.70 93.00 73 | 2,901 0.64 93.64 74 | 2,576 0.57 94.21 75 | 2,579 0.57 94.77 76 | 2,274 0.50 95.28 77 | 2,133 0.47 95.75 78 | 2,032 0.45 96.20 79 | 1,798 0.40 96.59 80 | 7,720 1.70 98.30 85 | 7,725 1.70 100.00 ------------+----------------------------------- Total | 453,225 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 57,434 41.46 41.46 0 | 3,852 2.78 44.24 1 | 4,564 3.29 47.53 2 | 4,820 3.48 51.01 3 | 4,968 3.59 54.60 4 | 4,883 3.52 58.12 5 | 5,116 3.69 61.82 6 | 5,081 3.67 65.48 7 | 5,360 3.87 69.35 8 | 5,327 3.85 73.20 9 | 5,341 3.86 77.05 10 | 5,213 3.76 80.82 11 | 5,249 3.79 84.61 12 | 5,156 3.72 88.33 13 | 5,304 3.83 92.16 14 | 5,394 3.89 96.05 15 | 5,471 3.95 100.00 ------------+----------------------------------- Total | 138,533 100.00 (138,533 observations deleted) (0 observations deleted) obs 314692 after keeping age>15&age!=. infile successful no observations (30 real changes made, 30 to missing) (270,982 real changes made, 270,982 to missing) (283,277 real changes made, 283,277 to missing) (0 real changes made) (0 real changes made) (156,999 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (157,693 real changes made) Geography (124,244 real changes made) dropping cmsacode msafips smsa93 smsasize = . if smsasize <=0 (235,299 real changes made, 235,299 to missing) inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (3,209 real changes made, 3,209 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (56,101 real changes made, 56,101 to missing) (278,766 real changes made, 278,766 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (153,348 real changes made, 153,348 to missing) if 2015 > 1983 & 2015 < 1989 { (0 real changes made) (0 real changes made) (0 real changes made) (ch02: 72031 changes made) (ch35: 81030 changes made) (ch613: 81030 changes made) (ch1417: 81030 changes made) (14,842 real changes made) (0 real changes made) (223,330 real changes made, 223,330 to missing) (305,545 real changes made, 305,545 to missing) (228,140 real changes made, 228,140 to missing) (314,692 real changes made, 314,692 to missing) (314,692 real changes made, 314,692 to missing) (314,692 real changes made, 314,692 to missing) (314,692 missing values generated) (957 real changes made) (1,943 real changes made) (3,630 real changes made) (5,322 real changes made) (6,407 real changes made) (9,520 real changes made) (11,265 real changes made) (4,905 real changes made) (52 real changes made) (132 real changes made) (76 real changes made) (598 real changes made) (987 real changes made) (2,214 real changes made) (3,095 real changes made) (1,993 real changes made) (82,215 real changes made) (9,824 real changes made) (21,315 real changes made) (39,826 real changes made) (9,798 real changes made) (5,789 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (9,196 real changes made) (220,244 real changes made, 220,244 to missing) (305,269 real changes made, 305,269 to missing) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (275,608 real changes made, 275,608 to missing) (0 real changes made) (288,542 real changes made, 288,542 to missing) (309,564 real changes made, 309,564 to missing) (313,471 real changes made, 313,471 to missing) (314,493 real changes made, 314,493 to missing) Employment (5,471 real changes made, 5,471 to missing) (308,753 real changes made, 308,753 to missing) (149,410 real changes made, 149,410 to missing) (112,651 real changes made, 112,651 to missing) (112,651 real changes made, 112,651 to missing) (112,651 real changes made, 112,651 to missing) docc80 ** The renaming is part of the Census reweighting ; docc00 553 generate int docc00=occ2011; 568 572 577 (112,651 missing values generated) 581 recode docc00 2011 (docc00: 202041 changes made) dind (112,651 missing values generated) (dind02: 201196 changes made) Wages (149,410 real changes made, 149,410 to missing) (0 real changes made) (217,610 real changes made, 217,610 to missing) (0 real changes made) (0 real changes made) (149,410 real changes made) (197,793 real changes made) (112,651 real changes made, 112,651 to missing) (305,269 real changes made, 305,269 to missing) (129,777 real changes made) (149,410 real changes made) (2 real changes made, 2 to missing) (129,777 real changes made, 129,777 to missing) (1,309 real changes made, 1,309 to missing) (313,417 real changes made, 313,417 to missing) (217,562 real changes made, 217,562 to missing) (149,410 real changes made, 149,410 to missing) Hours, Unions (300,414 real changes made, 300,414 to missing) (308,126 real changes made, 308,126 to missing) (284,456 real changes made, 284,456 to missing) (118,037 real changes made, 118,037 to missing) (284,456 real changes made, 284,456 to missing) (1,309 real changes made, 1,309 to missing) (136,343 real changes made, 136,343 to missing) (90 real changes made) (12,575 real changes made, 12,575 to missing) (268,879 real changes made, 268,879 to missing) (149,410 real changes made, 149,410 to missing) (167,352 real changes made, 167,352 to missing) variable spouse was int now byte variable hourslw was int now byte variable laydur was int now byte variable ym_file was float now int variable ym was float now int variable ch02 was int now byte variable ch35 was int now byte variable ch613 was int now byte variable ch1417 was int now byte variable ch05 was int now byte variable docc00 was int now byte variable dind02 was float now int (4,720,380 bytes saved) . *by Jean Roth Thu Mar 17 2005 14:38:42 . *Please report errors to jroth@nber.org . . * Note: Variable names in Stata are case-sensitive . #delimit ; delimiter now ; . ; . * minsamp: 1979-; . label values minsamp P2L; . label define P2L > 4 "MIS 4" > 8 "MIS 8" > ; . * hrlonglk: 1994-; . label values hrlonglk P3L; . label define P3L > 0 "MIS 1 Or Replacement HH (no" > 2 "MIS 2-4 Or MIS 6-8 (link To" > ; . * intmonth: 1979-; . label values intmonth P4L; . label define P4L > 1 "January" > 2 "February" > 3 "March" > 4 "April" > 5 "May" > 6 "June" > 7 "July" > 8 "August" > 9 "September" > 10 "October" > 11 "November" > 12 "December" > ; . * stfips: 1989-; . label values stfips stfips; . label define stfips > 1 "AL" > 2 "AK" > 4 "AZ" > 5 "AR" > 6 "CA" > 8 "CO" > 9 "CT" > 10 "DE" > 11 "DC" > 12 "FL" > 13 "GA" > 15 "HI" > 16 "ID" > 17 "IL" > 18 "IN" > 19 "IA" > 20 "KS" > 21 "KY" > 22 "LA" > 23 "ME" > 24 "MD" > 25 "MA" > 26 "MI" > 27 "MN" > 28 "MS" > 29 "MO" > 30 "MT" > 31 "NE" > 32 "NV" > 33 "NH" > 34 "NJ" > 35 "NM" > 36 "NY" > 37 "NC" > 38 "ND" > 39 "OH" > 40 "OK" > 41 "OR" > 42 "PA" > 44 "RI" > 45 "SC" > 46 "SD" > 47 "TN" > 48 "TX" > 49 "UT" > 50 "VT" > 51 "VA" > 53 "WA" > 54 "WV" > 55 "WI" > 56 "WY" > ; . * state: 1979- April 2014 ; . cap label values state P27L; . cap label define P27L > 11 "ME" > 12 "NH" > 13 "VT" > 14 "MA" > 15 "RI" > 16 "CT" > 21 "NY" > 22 "NJ" > 23 "PA" > 31 "OH" > 32 "IN" > 33 "IL" > 34 "MI" > 35 "WI" > 41 "MN" > 42 "IA" > 43 "MO" > 44 "ND" > 45 "SD" > ; . * penatvty: 2007-; . label values penatvty penatvty; . label define penatvty > 57 "United States" > 60 "American Samoa" > 66 "Guam" > 73 "Puerto Rico" > 78 "U.S. Virgin Islands" > 96 "U.S. Outlying Area" > 100 "Albania" > 102 "Austria" > 103 "Belgium" > 104 "Bulgaria" > 105 "Czechoslovakia" > 106 "Denmark" > 108 "Finland" > 109 "France" > 110 "Germany" > 116 "Greece" > 117 "Hungary" > 119 "Ireland/Eire" > 120 "Italy" > 126 "Holland/Netherlands" > 127 "Norway" > 128 "Poland" > 129 "Portugal" > 130 "Azores" > 132 "Romania" > 134 "Spain" > 136 "Sweden" > 137 "Switzerland" > 138 "United Kingdom/Great Britain" > 139 "England" > 140 "Scotland" > 141 "Wales" > 142 "Northern Ireland" > 147 "Yugoslavia" > 148 "Czech Republic" > 149 "Slovakia" > 150 "Bosnia & Herzegovina" > 151 "Croatia" > 152 "Macedonia" > 154 "Serbia" > 156 "Latvia" > 157 "Lithuania" > 158 "Armenia" > 159 "Azerbaijan" > 160 "Belarus" > 161 "Georgia" > 162 "Moldova" > 163 "Russia" > 164 "Ukraine" > 165 "USSR" > 166 "Europe, not specified" > 167 "Kosovo" > 200 "Afghanistan" > 202 "Bangladesh" > 205 "Myanmar (Burma)" > 206 "Cambodia" > 207 "China" > 208 "Cyprus" > 209 "Hong Kong" > 210 "India" > 211 "Indonesia" > 212 "Iran" > 213 "Iraq" > 214 "Israel" > 215 "Japan" > 216 "Jordan" > 217 "Korea" > 220 "South Korea" > 222 "Kuwait" > 223 "Laos" > 224 "Lebanon" > 226 "Malaysia" > 229 "Nepal" > 231 "Pakistan" > 233 "Philippines" > 235 "Saudi Arabia" > 236 "Singapore" > 238 "Sri Lanka" > 239 "Syria" > 240 "Taiwan" > 242 "Thailand" > 243 "Turkey" > 246 "Uzbekistan" > 247 "Vietnam" > 248 "Yemen" > 249 "Asia, not specified" > 300 "Bermuda" > 301 "Canada" > 303 "Mexico" > 310 "Belize" > 311 "Costa Rica" > 312 "El Salvador" > 313 "Guatemala" > 314 "Honduras" > 315 "Nicaragua" > 316 "Panama" > 318 "Central America" > 321 "Antigua and Barbuda" > 323 "Bahamas" > 324 "Barbados" > 327 "Cuba" > 328 "Dominica" > 329 "Dominican Republic" > 330 "Grenada" > 332 "Haiti" > 333 "Jamaica" > 338 "St. Kitts-Nevis" > 339 "St. Lucia" > 340 "St. Vincent and the Grenadines" > 341 "Trinidad and Tobago" > 343 "West Indes, not specified" > 360 "Argentina" > 361 "Bolivia" > 362 "Brazil" > 363 "Chile" > 364 "Colombia" > 365 "Ecuador" > 368 "Guyana" > 369 "Paraguay" > 370 "Peru" > 372 "Uruguay" > 373 "Venezuela" > 374 "South America, not specified" > 399 "Americas, not specified" > 400 "Algeria" > 407 "Cameroon" > 408 "Cape Verde" > 414 "Egypt" > 416 "Ethiopia" > 417 "Eritrea" > 421 "Ghana" > 427 "Kenya" > 429 "Liberia" > 436 "Morocco" > 440 "Nigeria" > 444 "Senegal" > 447 "Sierra Leone" > 448 "Somalia" > 449 "South Africa" > 451 "Sudan" > 453 "Tanzania" > 457 "Uganda" > 461 "Zimbabwe" > 462 "Africa, not specified" > 501 "Australia" > 508 "Fiji" > 515 "New Zealand" > 523 "Tonga" > 527 "Samoa" > 528 "Oceania, not specified" > 555 "Elsewhere" > ; . * pemntvty: 2007-; . label values pemntvty penatvty; . * pefntvty: 2007-; . label values pefntvty penatvty; . * prcitshp: 1994-; . label values prcitshp P16L; . label define P16L > 1 "Native, Born In US" > 2 "Native, Born in PR or US Outlying Area" > 3 "Native, Born Abroad Of US Parent(s)" > 4 "Foreign Born, US Cit By Naturalization" > 5 "Foreign Born, Not a US Citizen" > ; . * prcitflg: 1994-; . label values prcitflg P34L; . label define P34L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * meanings of last few codes of peinusyr change every year!!!; . * peinusyr: 2003-; . label values peinusyr P17L; . label define P17L > -1 "Not In Universe (Born In U.S.)" > 0 "Not Foreign Born" > 1 "Before 1950" > 2 "1950-1959" > 3 "1960-1964" > 4 "1965-1969" > 5 "1970-1974" > 6 "1975-1979" > 7 "1980-1981" > 8 "1982-1983" > 9 "1984-1985" > 10 "1986-1987" > 11 "1988-1989" > 12 "1990-1991" > 13 "1992-1995" > 14 "1994-1995" > 15 "1996-1997" > 16 "1998-1999" > 17 "2000-2001" > 18 "2002-2003" > 19 "2004-2005" > 20 "2006-2007" > 21 "2008-2009" > 22 "2010-2012" > ; . * paidhre: 1979-; . label values paidhre P18L; . label define P18L > 1 "Yes" > 2 "No" > ; . * I25a: 1979-; . label values I25a P28L; . label define P28L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * I25b: 1979-; . label values I25b P29L; . label define P29L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * I25c: 1996-; . label values I25c I25c; . label define I25c > 0 "No Components Allocated" > 1 "1 or more components Allocated" > ; . * I25d: 1996-; . label values I25d I25d; . label define I25d > 0 "No Components Allocated" > 1 "1 or more components Allocated" > ; . * class94: 1994-; . label values class94 P19L; . label define P19L > 1 "Government - Federal" > 2 "Government - State" > 3 "Government - Local" > 4 "Private, For Profit" > 5 "Private, Nonprofit" > 6 "Self-Employed, Incorporated" > 7 "Self-Employed, Unincorporated" > 8 "Without Pay" > ; . * lfsr94: 1994-; . label values lfsr94 P20L; . label define P20L > 1 "Employed-At Work" > 2 "Employed-Absent" > 3 "Unemployed-On Layoff" > 4 "Unemployed-Looking" > 5 "Retired-Not In Labor Force" > 6 "Disabled-Not In Labor Force" > 7 "Other-Not In Labor Force" > ; . * ind02: 2000-; . label values ind02 ind02; . label define ind02 > 170 "Crop production (111)" > 180 "Animal production (112)" > 190 "Forestry except logging (1131, 1132)" > 270 "Logging (1133)" > 280 "Fishing, hunting, and trapping (114)" > 290 "Support activities for agriculture and forestry (115)" > 370 "Oil and gas extraction (211)" > 380 "Coal mining (2121)" > 390 "Metal ore mining (2122)" > 470 "Nonmetallic mineral mining and quarrying (2123)" > 480 "Not specified type of mining (Part of 21)" > 490 "Support activities for mining (213)" > 570 "Electric power generation, transmission and distribution (Pt. 2211)" > 580 "Natural gas distribution (Pt.s2212)" > 590 "Electric and gas, and other combinations (Pts. 2211, 2212)" > 670 "Water, steam, air-conditioning, and irrigation systems (22131, 22133)" > 680 "Sewage treatment facilities (22132)" > 690 "Not specified utilities (Part of 22)" > 770 "** Construction (23)" > 1070 "Animal food, grain and oilseed milling (3111, 3112)" > 1080 "Sugar and confectionery products (3113)" > 1090 "Fruit and vegetable preserving and specialty food manufacturing (3114)" > 1170 "Dairy product manufacturing (3115)" > 1180 "Animal slaughtering and processing (3116)" > 1190 "Retail bakeries (311811)" > 1270 "Bakeries, except retail (3118 exc. 311811)" > 1280 "Seafood and other miscellaneous foods, n.e.c. (3117, 3119)" > 1290 "Not specified food industries (Part of 311)" > 1370 "Beverage manufacturing (3121)" > 1390 "Tobacco manufacturing (3122)" > 1470 "Fiber, yarn, and thread mills (3131)" > 1480 "Fabric mills, except knitting (3132 exc. 31324)" > 1490 "Textile and fabric finishing and coating mills (3133)" > 1570 "Carpet and rug mills (31411)" > 1590 "Textile product mills, except carpets and rugs (314 exc. 31411)" > 1670 "Knitting mills (31324, 3151)" > 1680 "Cut and sew apparel manufacturing (3152)" > 1690 "Apparel accessories and other apparel manufacturing (3159)" > 1770 "Footwear manufacturing (3162)" > 1790 "Leather tanning and products, except footwear manufacturing (3161, 3169)" > 1870 "Pulp, paper, and paperboard mills (3221)" > 1880 "Paperboard containers and boxes (32221)" > 1890 "Miscellaneous paper and pulp products (32222,32223, 32229)" > 1990 "Printing and related support activities (3231)" > 2070 "Petroleum refining (32411)" > 2090 "Miscellaneous petroleum and coal products (32419)" > 2170 "Resin, synthetic rubber and fibers, and filaments manufacturing (3252)" > 2180 "Agricultural chemical manufacturing (3253)" > 2190 "Pharmaceutical and medicine manufacturing (3254)" > 2270 "Paint, coating, and adhesive manufacturing B46 (3255)" > 2280 "Soap, cleaning compound, and cosmetics manufacturing (3256)" > 2290 "Industrial and miscellaneous chemicals (3251, 3259)" > 2370 "Plastics product manufacturing (3261)" > 2380 "Tire manufacturing (32621)" > 2390 "Rubber products, except tires, manufacturing (32622, 32629)" > 2470 "Pottery, ceramics, and related products manufacturing (32711)" > 2480 "Structural clay product manufacturing (32712)" > 2490 "Glass and glass product manufacturing (3272)" > 2570 "Cement, concrete, lime, and gypsum product manufacturing (3273, 3274)" > 2590 "Miscellaneous nonmetallic mineral product manufacturing (3279)" > 2670 "Iron and steel mills and steel product manufacturing (3311, 3312)" > 2680 "Aluminum production and processing (3313)" > 2690 "Nonferrous metal, except aluminum, production and processing (3314)" > 2770 "Foundries (3315)" > 2780 "Metal forgings and stampings (3321)" > 2790 "Cutlery and hand tool manufacturing (3322)" > 2870 "Structural metals, and tank and shipping container manufacturing (3323, 3324)" > 2880 "Machine shops; turned product; screw, nut and bolt manufacturing (3327)" > 2890 "Coating, engraving, heat treating and allied activities (3328)" > 2970 "Ordnance (332992 to 332995)" > 2980 "Miscellaneous fabricated metal products manufacturing (3325, 3326, 3329 exc. 332992, 3 > 32993, 332994, 332995)" > 2990 "Not specified metal industries (Part of 331 and 332)" > 3070 "Agricultural implement manufacturing (33311)" > 3080 "Construction, mining and oil field machinery manufacturing (33312, 33313)" > 3090 "Commercial and service industry machinery manufacturing (3333)" > 3170 "Metalworking machinery manufacturing (3335)" > 3180 "Engines, turbines, and power transmission equipment manufacturing (3336)" > 3190 "Machinery manufacturing, n.e.c. (3332, 3334, 3339)" > 3290 "Not specified machinery manufacturing (Part of 333)" > 3360 "Computer and peripheral equipment manufacturing (3341)" > 3370 "Communications, audio, and video equipment manufacturing (3342, 3343)" > 3380 "Navigational, measuring, electromedical, and control instruments manufacturing (3345)" > 3390 "Electronic component and product manufacturing, n.e.c. (3344, 3346)" > 3470 "Household appliance manufacturing (3352)" > 3490 "Electrical lighting, equipment, and supplies manufacturing, n.e.c. (3351, 3353, 3359)" > 3570 "Motor vehicles and motor vehicle equipment manufacturing (3361, 3362, 3363)" > 3580 "Aircraft and parts manufacturing (336411 to 336413)" > 3590 "Aerospace products and parts manufacturing (336414, 336415, 336419)" > 3670 "Railroad rolling stock manufacturing (3365)" > 3680 "Ship and boat building (3366)" > 3690 "Other transportation equipment manufacturing (3369)" > 3770 "Sawmills and wood preservation (3211)" > 3780 "Veneer, plywood, and engineered wood products (3212)" > 3790 "Prefabricated wood buildings and mobile homes (321991, 321992)" > 3870 "Miscellaneous wood products (3219 exc. 321991, 321992)" > 3890 "Furniture and related product manufacturing (337)" > 3960 "Medical equipment and supplies manufacturing (3391)" > 3970 "Toys, amusement, and sporting goods manufacturing (33992, 33993)" > 3980 "Miscellaneous manufacturing, n.e.c. (3399 exc. 33992, 33993)" > 3990 "Not specified manufacturing industries (Part of 31, 32, 33)" > 4070 "** Motor vehicles, parts and supplies, merchant wholesalers (*4231)" > 4080 "** Furniture and home furnishing, merchant wholesalers (*4232)" > 4090 "** Lumber and other construction materials, merchant wholesalers (*4233)" > 4170 "** Professional and commercial equipment and supplies, merchant wholesalers (*4234)" > 4180 "** Metals and minerals, except petroleum, merchant wholesalers (*4235)" > 4190 "** Electrical goods, merchant wholesalers (*4236)" > 4260 "** Hardware, plumbing and heating equipment, and supplies, merchant wholesalers (*4237 > )" > 4270 "** Machinery, equipment, and supplies, merchant wholesalers (*4238)" > 4280 "** Recyclable material, merchant wholesalers (*42393)" > 4290 "** Miscellaneous durable goods, merchant wholesalers (*4239 exc. 42393)" > 4370 "** Paper and paper products, merchant wholesalers (*4241)" > 4380 "** Drugs, sundries, and chemical and allied products, merchant (wholesalerss*4242, 424 > 6)" > 4390 "** Apparel, fabrics, and notions, merchant wholesalers (*4243)" > 4470 "** Groceries and related products, merchant wholesalers (*4244)" > 4480 "** Farm product raw materials, merchant wholesalers (*4245)" > 4490 "** Petroleum and petroleum products, merchant wholesalers (*4247)" > 4560 "** Alcoholic beverages, merchant wholesalers (*4248)" > 4570 "** Farm supplies, merchant wholesalers (*42491)" > 4580 "** Miscellaneous (nondurable goods, merchant wholesalerss*4249 exc. 42491)" > 4585 "*** Wholesale electronic markets, agents and brokers New industry (*4251)" > 4590 "**Not specified wholesale trade (Part of 42)" > 4670 "Automobile dealers (4411)" > 4680 "Other motor vehicle dealers (4412)" > 4690 "Auto parts, accessories, and tire stores (4413)" > 4770 "Furniture and home furnishings stores (442)" > 4780 "Household appliance stores (443111)" > 4790 "Radio, TV, and computer stores (443112, 44312)" > 4870 "Building material and supplies dealers (4441 exc. 44413)" > 4880 "Hardware stores (44413)" > 4890 "Lawn and garden equipment and supplies stores (4442)" > 4970 "Grocery stores (4451)" > 4980 "Specialty food stores (4452)" > 4990 "Beer, wine, and liquor stores (4453)" > 5070 "Pharmacies and drug stores (44611)" > 5080 "Health and personal care, except drug, stores (446 exc. 44611)" > 5090 "Gasoline stations (447)" > 5170 "Clothing and accessories, except shoe, stores (448 exc. 44821, 4483)" > 5180 "Shoe stores (44821)" > 5190 "Jewelry, luggage, and leather goods stores (4483)" > 5270 "Sporting goods, camera, and hobby and toy stores (44313, 45111, 45112)" > 5280 "Sewing, needlework, and piece goods stores (45113)" > 5290 "Music stores (45114, 45122)" > 5370 "Book stores and news dealers (45121)" > 5380 "****Department stores and discount stores (s45211)" > 5390 "Miscellaneous general merchandise stores (4529)" > 5470 "Retail florists (4531)" > 5480 "Office supplies and stationery stores (45321)" > 5490 "Used merchandise stores (4533)" > 5570 "Gift, novelty, and souvenir shops (45322)" > 5580 "Miscellaneous retail stores (4539)" > 5590 "*** Electronic shopping (New industry *454111)" > 5591 "*** Electronic auctions (New industrys*454112)" > 5592 "** Mail order houses (*454113)" > 5670 "Vending machine operators (4542)" > 5680 "Fuel dealers (45431)" > 5690 "Other direct selling establishments (45439)" > 5790 "Not specified retail trade (Part of 44, 45)" > 6070 "Air transportation (481)" > 6080 "Rail transportation (482)" > 6090 "Water transportation (483)" > 6170 "Truck transportation (484)" > 6180 "Bus service and urban transit (4851, 4852, 4854, 4855, 4859)" > 6190 "Taxi and limousine service (4853)" > 6270 "Pipeline transportation (486)" > 6280 "Scenic and sightseeing transportation (487)" > 6290 "Services incidental to transportation (488)" > 6370 "Postal Service (491)" > 6380 "Couriers and messengers (492)" > 6390 "Warehousing and storage (493)" > 6470 "**Newspaper publishers (51111)" > 6480 "**Publishing, except newspapers and software (5111 exc. 51111)" > 6490 "Software publishing (5112)" > 6570 "Motion pictures and video industries (5121)" > 6590 "Sound recording industries (5122)" > 6670 "Radio and television broadcasting and cable (5151, 5152, 5175)" > 6672 "Internet publishing and broadcasting and web search portals (51913)" > 6675 "*** Internet publishing and broadcasting (New industrys*5161)" > 6680 "Wired telecommunications carriers (*5171)" > 6690 "Other telecommunications services (*517 exc. 5171, 5175)" > 6692 "*** Internet service providers New industry (*5181)" > 6695 "**** Data processing, hosting, and related services (*5182)" > 6770 "Libraries and archives (*51912)" > 6780 "Other information services (*5191 exc. 51912)" > 6870 "Banking and related activities (521, 52211,52219)" > 6880 "Savings institutions, including credit unions (52212, 52213)" > 6890 "Non-depository credit and related activities (5222, 5223)" > 6970 "Securities, commodities, funds, trusts, and other financial investments (523, 525)" > 6990 "Insurance carriers and related activities (524)" > 7070 "Real estate (531)" > 7080 "Automotive equipment rental and leasing (5321)" > 7170 "Video tape and disk rental (53223)" > 7180 "Other consumer goods rental (53221, 53222, 53229, 5323)" > 7190 "Commercial, industrial, and other intangible assets rental and leasing (5324, 533)" > 7270 "Legal services (5411)" > 7280 "Accounting, tax preparation, bookkeeping, and payroll services (5412)" > 7290 "Architectural, engineering, and related services (5413)" > 7370 "Specialized design services (5414)" > 7380 "Computer systems design and related services (5415)" > 7390 "Management, scientific, and technical consulting services (5416)" > 7460 "Scientific research and development services (5417)" > 7470 "Advertising and related services (5418)" > 7480 "Veterinary services (54194)" > 7490 "Other professional, scientific, and technical services (5419 exc. 54194)" > 7570 "Management of companies and enterprises (551)" > 7580 "Employment services (5613)" > 7590 "Business support services (5614)" > 7670 "Travel arrangements and reservation services (5615)" > 7680 "Investigation and security services (5616)" > 7690 "** Services to buildings and dwellings (5617 exc. 56173)" > 7770 "Landscaping services (56173)" > 7780 "Other administrative and other support services (5611, 5612, 5619)" > 7790 "Waste management and remediation services (562)" > 7860 "Elementary and secondary schools (6111)" > 7870 "Colleges and universities, including junior colleges (6112, 6113)" > 7880 "Business, technical, and trade schools and training (6114, 6115)" > 7890 "Other schools, instruction, and educational services (6116, 6117)" > 7970 "Offices of physicians (6211)" > 7980 "Offices of dentists (6212)" > 7990 "Offices of chiropractors (62131)" > 8070 "Offices of optometrists (62132)" > 8080 "Offices of other health practitioners (6213 exc. 62131, 62132)" > 8090 "Outpatient care centers (6214)" > 8170 "Home health care services (6216)" > 8180 "Other health care services (6215, 6219)" > 8190 "Hospitals (622)" > 8270 "Nursing care facilities (6231)" > 8290 "Residential care facilities, without nursing (6232, 6233, 6239)" > 8370 "Individual and family services (6241)" > 8380 "Community food and housing, and emergency services (6242)" > 8390 "Vocational rehabilitation services (6243)" > 8470 "Child day care services (6244)" > 8560 "Independent artists, performing arts, spectator sports, and related industries (711)" > 8570 "Museums, art galleries, historical sites, and similar institutions (712)" > 8580 "Bowling centers (71395)" > 8590 "Other amusement, gambling, and recreation industries (713 exc. 71395)" > 8660 "Traveler accommodation (7211)" > 8670 "Recreational vehicle parks and camps, and rooming and boarding houses (7212, 7213)" > 8680 "Restaurants and other food services (722 exc. 7224)" > 8690 "Drinking places, alcoholic beverages (7224)" > 8770 "Automotive repair and maintenance (8111 exc. 811192)" > 8780 "Car washes (811192)" > 8790 "Electronic and precision equipment repair and maintenance (8112)" > 8870 "Commercial and industrial machinery and equipment repair and maintenance (8113)" > 8880 "Personal and household goods repair and maintenance (8114 exc. 81143)" > 8890 "Footwear and leather goods repair (81143)" > 8970 "Barber shops (812111)" > 8980 "Beauty salons (812112)" > 8990 "Nail salons and other personal care services (812113, 81219)" > 9070 "Drycleaning and laundry services (8123)" > 9080 "Funeral homes, cemeteries, and crematories (8122)" > 9090 "Other personal services (8129)" > 9160 "Religious organizations (8131)" > 9170 "Civic, social, advocacy organizations, and grantmaking and giving services (8132, 8133 > , 8134)" > 9180 "Labor unions (81393)" > 9190 "Business, professional, political, and similar organizations (8139 exc. 81393)" > 9290 "Private households (814)" > 9370 "Executive offices and legislative bodies (92111, 92112, 92114, pt. 92115)" > 9380 "Public finance activities (92113)" > 9390 "Other general government and support (92119)" > 9470 "Justice, public order, and safety activities (922, pt. 92115)" > 9480 "Administration of human resource programs (923)" > 9490 "Administration of environmental quality and housing programs (924, 925)" > 9570 "Administration of economic programs and space research (926, 927)" > 9590 "National security and international affairs (928)" > 9890 "Armed Forces" > 9970 "Problem referral" > 9990 "Uncodable ((Includes Refused or reported Classified))" > 9670 "U. S. Army" > 9680 "U. S. Air Force" > 9690 "U. S. Navy" > 9770 "U. S. Marines" > 9780 "U. S. Coast Guard" > 9790 "U. S. Armed Forces, Branch Not Specified" > 9870 "Military Reserves or National Guard" > ; . *dind02: 2000-; . label values dind02 dind02; . label define dind02 > 1 "Agriculture" > 2 "Forestry, logging, fishing, hunting, and trapping" > 3 "Mining" > 4 "Construction" > 5 "Nonmetallic mineral products" > 6 "Primary metals and fabricated metal products" > 7 "Machinery manufacturing" > 8 "Computer and electronic products" > 9 "Electrical equipment, appliance manufacturing" > 10 "Transportation equipment manufacturing" > 11 "Wood products" > 12 "Furniture and fixtures manufacturing" > 13 "Miscellaneous and not specified manufacturing" > 14 "Food manufacturing" > 15 "Beverage and tobacco products" > 16 "Textile, apparel, and leather manufacturing" > 17 "Paper and printing" > 18 "Petroleum and coal products" > 19 "Chemical manufacturing" > 20 "Plastics and rubber products" > 21 "Wholesale trade" > 22 "Retail trade" > 23 "Transportation and warehousing" > 24 "Utilities" > 25 "Publishing industries (except internet)" > 26 "Motion picture and sound recording industries" > 27 "Broadcasting (except internet)" > 28 "Internet publishing and broadcasting" > 29 "Telecommunications" > 30 "Internet service providers and data processing services" > 31 "Other information services" > 32 "Finance" > 33 "Insurance" > 34 "Real Estate" > 35 "Rental and leasing services" > 36 "Professional and Technical services" > 37 "Management of companies and enterprises" > 38 "Administrative and support services" > 39 "Waste management and remediation services" > 40 "Educational services" > 41 "Hospitals" > 42 "Health care services , except hospitals" > 43 "Social assistance" > 44 "Arts, entertainment, and recreation" > 45 "Accomodation" > 46 "Food services and drinking places" > 47 "Repair and maintenance" > 48 "Personal and laundry services" > 49 "Membership associations and organizations" > 50 "Private households" > 51 "Public Administration" > 52 "Armed forces" > ; . * occ2011: 2011-; . *label values occ2011 occ2011l ; . *label define occ2011l > 10 "Chief executives 11-1011" > 20 "General and operations managers 11-1021" > 30 "Legislators 11-1031" > 40 "Advertising and promotions managers 11-2011" > 50 "Marketing and sales managers 11-2020" > 60 "Public relations managers 11-2031" > 100 "Administrative services managers 11-3011" > 110 "Computer and information systems managers 11-3021" > 120 "Financial managers 11-3031" > 135 "Compensation and benefits managers 11-3111" > 136 "Human Resources Managers 11-3121" > 137 "Training and Development Managers 11-3131" > 140 "Industrial production managers 11-3051" > 150 "Purchasing managers 11-3061" > 160 "Transportation, storage, and distribution managers 11-3071" > 205 "Farmers, Ranchers, and other Agricultural Managers 11-9013" > 220 "Construction managers 11-9021" > 230 "Education administrators 11-9030" > 300 "Engineering managers 11-9041" > 310 "Food service managers 11-9051" > 325 "Funeral Service Managers 11-9061" > 330 "Gaming managers 11-9071" > 340 "Lodging managers 11-9081" > 350 "Medical and health services managers 11-9111" > 360 "Natural sciences managers 11-9121" > 400 "Postmasters and mail superintendents 11-9131" > 410 "Property, real estate, and community association managers 11-9141" > 420 "Social and community service managers 11-9151" > 425 "Emergency Management Directors 11-9161" > 430 "Managers, all other 11-9199" > 500 "Agents and business managers of artists, performers, and athletes 13-1011" > 510 "Purchasing agents and buyers, farm products 13-1021" > 520 "Wholesale and retail buyers, except farm products 13-1022" > 530 "Purchasing agents, except wholesale, retail, and farm products 13-1023" > 540 "Claims adjusters, appraisers, examiners, and investigators 13-1030" > 565 "Compliance Officers 13-1041" > 600 "Cost estimators 13-1051" > 630 "Human resources workers 13-1070" > 640 "Compensation, benefits, and job analysis specialists 13-1141" > 650 "Training and development specialists 13-1151" > 700 "Logisticians 13-1081" > 710 "Management analysts 13-1111" > 725 "Meeting, convention, and event planners 13-1121" > 726 "Fundraisers 13-1131" > 735 "Market research analysts and marketing specialists 13-1161" > 740 "Business operations specialists, all other 13-1199" > 800 "Accountants and auditors 13-2011" > 810 "Appraisers and assessors of real estate 13-2021" > 820 "Budget analysts 13-2031" > 830 "Credit analysts 13-2041" > 840 "Financial analysts 13-2051" > 850 "Personal financial advisors 13-2052" > 860 "Insurance underwriters 13-2053" > 900 "Financial examiners 13-2061" > 910 "Loan counselors and officers 13-2070" > 930 "Tax examiners, collectors, and revenue agents 13-2081" > 940 "Tax preparers 13-2082" > 950 "Financial specialists, all other 13-2099" > 1000 "Computer scientists and systems analysts 15-10XX" > 1005 "Computer and information research scientists 15-1111" > 1006 "Computer systems analysts 15-1121" > 1007 "Information security analysts 15-1122" > 1010 "Computer programmers 15-1131" > 1020 "Software developers, applications and systems software 15-113X" > 1030 "Web developers 15-1134" > 1050 "Computer support specialists 15-1150" > 1060 "Database administrators 15-1141" > 1105 "Network and computer systems administrators 15-1142" > 1106 "Computer network architects 15-1143" > 1107 "Computer occupations, all other 15-1199" > 1200 "Actuaries 15-2011" > 1210 "Mathematicians 15-2021" > 1220 "Operations research analysts 15-2031" > 1230 "Statisticians 15-2041" > 1240 "Miscellaneous mathematical science occupations 15-2090" > 1300 "Architects, except naval 17-1010" > 1310 "Surveyors, cartographers, and photogrammetrists 17-1020" > 1320 "Aerospace engineers 17-2011" > 1330 "Agricultural engineers 17-2021" > 1340 "Biomedical engineers 17-2031" > 1350 "Chemical engineers 17-2041" > 1360 "Civil engineers 17-2051" > 1400 "Computer hardware engineers 17-2061" > 1410 "Electrical and electronic engineers 17-2070" > 1420 "Environmental engineers 17-2081" > 1430 "Industrial engineers, including health and safety 17-2110" > 1440 "Marine engineers and naval architects 17-2121" > 1450 "Materials engineers 17-2131" > 1460 "Mechanical engineers 17-2141" > 1500 "Mining and geological engineers, including mining safety engineers 17-2151" > 1510 "Nuclear engineers 17-2161" > 1520 "Petroleum engineers 17-2171" > 1530 "Engineers, all other 17-2199" > 1540 "Drafters 17-3010" > 1550 "Engineering technicians, except drafters 17-3020" > 1560 "Surveying and mapping technicians 17-3031" > 1600 "Agricultural and food scientists 19-1010" > 1610 "Biological scientists 19-1020" > 1640 "Conservation scientists and foresters 19-1030" > 1650 "Medical scientists 19-1040" > 1660 "Life Scientists, all other 16-1099" > 1700 "Astronomers and physicists 19-2010" > 1710 "Atmospheric and space scientists 19-2021" > 1720 "Chemists and materials scientists 19-2030" > 1740 "Environmental scientists and geoscientists 19-2040" > 1760 "Physical scientists, all other 19-2099" > 1800 "Economists 19-3011" > 1815 "Survey Researchers 19-3022" > 1820 "Psychologists 19-3030" > 1830 "Sociologists 19-3041" > 1840 "Urban and regional planners 19-3051" > 1860 "Miscellaneous social scientists and related workers 19-3090" > 1900 "Agricultural and food science technicians 19-4011" > 1910 "Biological technicians 19-4021" > 1920 "Chemical technicians 19-4031" > 1930 "Geological and petroleum technicians 19-4041" > 1940 "Nuclear technicians 19-4051" > 1950 "Social science research assistants 19-4061" > 1965 "Miscellaneous life, physical, and social science technicians 19-4090" > 2000 "Counselors 21-1010" > 2010 "Social workers 21-1020" > 2015 "Probation Officers and Correctional Treatment Specialists 21-1092" > 2016 "Social and Human Service Assistants 21-1093" > 2025 "Miscellaneous community and social service specialists, 21-109X" > 2040 "Clergy 21-2011" > 2050 "Directors, religious activities and education 21-2021" > 2060 "Religious workers, all other 21-2099" > 2100 "Lawyers, Judges, magistrates, and other judicial workers 23-1011" > 2105 "Judicial Law Clerks 23-1012" > 2110 "Judges, Magistrates, and Other Judicial Workers 23-1020" > 2145 "Paralegals and Legal Assistants 23-2011" > 2160 "Miscellaneous Legal Support Workers 23-2090" > 2200 "Postsecondary teachers 25-1000" > 2300 "Preschool and kindergarten teachers 25-2010" > 2310 "Elementary and middle school teachers 25-2020" > 2320 "Secondary school teachers 25-2030" > 2330 "Special education teachers 25-2050" > 2340 "Other teachers and instructors 25-3000" > 2400 "Archivists, curators, and museum technicians 25-4010" > 2430 "Librarians 25-4021" > 2440 "Library technicians 25-4031" > 2540 "Teacher assistants 25-9041" > 2550 "Other education, training, and library workers 25-90XX" > 2600 "Artists and related workers 27-1010" > 2630 "Designers 27-1020" > 2700 "Actors 27-2011" > 2710 "Producers and directors 27-2012" > 2720 "Athletes, coaches, umpires, and related workers 27-2020" > 2740 "Dancers and choreographers 27-2030" > 2750 "Musicians, singers, and related workers 27-2040" > 2760 "Entertainers and performers, sports and related workers, all other 27-2099" > 2800 "Announcers 27-3010" > 2810 "News analysts, reporters and correspondents 27-3020" > 2825 "Public Relations Specialists 27-3031" > 2830 "Editors 27-3041" > 2840 "Technical writers 27-3042" > 2850 "Writers and authors 27-3043" > 2860 "Miscellaneous media and communication workers 27-3090" > 2900 "Broadcast and sound engineering technicians and radio operators 27-4010" > 2910 "Photographers 27-4021" > 2920 "Television, video, and motion picture camera operators and editors 27-4030" > 2960 "Media and communication equipment workers, all other 27-4099" > 3000 "Chiropractors 29-1011" > 3010 "Dentists 29-1020" > 3030 "Dietitians and nutritionists 29-1031" > 3040 "Optometrists 29-1041" > 3050 "Pharmacists 29-1051" > 3060 "Physicians and surgeons 29-1060" > 3110 "Physician assistants 29-1071" > 3120 "Podiatrists 29-1081" > 3140 "Audiologists 29-1181" > 3150 "Occupational therapists 29-1122" > 3160 "Physical therapists 29-1123" > 3200 "Radiation therapists 29-1124" > 3210 "Recreational therapists 29-1125" > 3220 "Respiratory therapists 29-1126" > 3230 "Speech-language pathologists 29-1127" > 3235 "Exercise Physiologists 29-1128" > 3245 "Therapists, all other 29-1129" > 3250 "Veterinarians 29-1131" > 3255 "Registered Nurses 29-1141" > 3256 "Nurse Anesthetists 29-1151" > 3257 "Nurse Midwives 29-1161" > 3258 "Nurse Practitioners 29-1171" > 3260 "Health diagnosing and treating practitioners, all other 29-1199" > 3300 "Clinical laboratory technologists and technicians 29-2010" > 3310 "Dental hygienists 29-2021" > 3320 "Diagnostic related technologists and technicians 29-2030" > 3400 "Emergency medical technicians and paramedics 29-2041" > 3420 "Health Practitioner Support Technologists and Technicians 29-2050" > 3500 "Licensed practical and licensed vocational nurses 29-2061" > 3510 "Medical records and health information technicians 29-2071" > 3520 "Opticians, dispensing 29-2081" > 3535 "Miscellaneous Health Technologists and Technicians 29-2090" > 3540 "Other healthcare practitioners and technical occupations 29-9000" > 3600 "Nursing, psychiatric, and home health aides 31-1010" > 3610 "Occupational therapist assistants and aides 31-2010" > 3620 "Physical therapist assistants and aides 31-2020" > 3630 "Massage therapists 31-9011" > 3640 "Dental assistants 31-9091" > 3645 "Medical Assistants 31-9092" > 3646 "Medical Transcriptionists 31-9094" > 3647 "Pharmacy Aides 31-9095" > 3648 "Veterinary Assistants and Laboratory Animal Caretakers 31-9096" > 3649 "Phlebotomists 31-9097" > 3655 "Miscellaneous Healthcare Support Occupations, Including 31-909X" > 3700 "First-line supervisors/managers of correctional officers 33-1011" > 3710 "First-line supervisors/managers of police and detectives 33-1012" > 3720 "First-line supervisors/managers of fire fighting and prevention workers 33-1021" > 3730 "Supervisors, protective service workers, all other 33-1099" > 3740 "Fire fighters 33-2011" > 3750 "Fire inspectors 33-2020" > 3800 "Bailiffs, correctional officers, and jailers 33-3010" > 3820 "Detectives and criminal investigators 33-3021" > 3830 "Fish and game wardens 33-3031" > 3840 "Parking enforcement workers 33-3041" > 3850 "Police and sheriff's patrol officers 33-3051" > 3860 "Transit and railroad police 33-3052" > 3900 "Animal control workers 33-9011" > 3910 "Private detectives and investigators 33-9021" > 3930 "Security Guards and Gaming Surveillance Officers 33-9030" > 3940 "Crossing guards 33-9091" > 3945 "Transportation Security Screeners 33-9093" > 3955 "Lifeguards and Other Recreational, and all Other Protective Service Workers 33-909X" > 4000 "Chefs and head cooks 35-1011" > 4010 "First-line supervisors/managers of food preparation and serving workers 35-1012" > 4020 "Cooks 35-2010" > 4030 "Food preparation workers 35-2021" > 4040 "Bartenders 35-3011" > 4050 "Combined food preparation and serving workers, including fast food 35-3021" > 4060 "Counter attendants, cafeteria, food concession, and coffee shop 35-3022" > 4110 "Waiters and waitresses 35-3031" > 4120 "Food servers, nonrestaurant 35-3041" > 4130 "Dining room and cafeteria attendants and bartender helpers 35-9011" > 4140 "Dishwashers 35-9021" > 4150 "Hosts and hostesses, restaurant, lounge, and coffee shop 35-9031" > 4160 "Food preparation and serving related workers, all other 35-9099" > 4200 "First-line supervisors/managers of housekeeping and janitorial workers 37-1011" > 4210 "First-line supervisors/managers of landscaping, lawn service, and groundskeeping worke > rs 37-1012" > 4220 "Janitors and building cleaners 31-201X" > 4230 "Maids and housekeeping cleaners 37-2012" > 4240 "Pest control workers 37-2021" > 4250 "Grounds maintenance workers 37-3010" > 4300 "First-line supervisors/managers of gaming workers 39-1010" > 4320 "First-line supervisors/managers of personal service workers 39-1021" > 4340 "Animal trainers 39-2011" > 4350 "Nonfarm animal caretakers 39-2021" > 4400 "Gaming services workers 39-3010" > 4410 "Motion picture projectionists 39-3021" > 4420 "Ushers, lobby attendants, and ticket takers 39-3031" > 4430 "Miscellaneous entertainment attendants and related workers 39-3090" > 4460 "Funeral service workers 39-40XX" > 4465 "Morticians, Undertakers, and Funeral Directors 39-4031" > 4500 "Barbers 39-5011" > 4510 "Hairdressers, hairstylists, and cosmetologists 39-5012" > 4520 "Miscellaneous personal appearance workers 39-5090" > 4530 "Baggage porters, bellhops, and concierges 39-6010" > 4540 "Tour and travel guides 39-7010" > 4600 "Child care workers 39-9011" > 4610 "Personal and home care aides 39-9021" > 4620 "Recreation and fitness workers 39-9030" > 4640 "Residential advisors 39-9041" > 4650 "Personal care and service workers, all other 39-9099" > 4700 "First-line supervisors/managers of retail sales workers 41-1011" > 4710 "First-line supervisors/managers of non-retail sales workers 41-1012" > 4720 "Cashiers 41-2010" > 4740 "Counter and rental clerks 41-2021" > 4750 "Parts salespersons 41-2022" > 4760 "Retail salespersons 41-2031" > 4800 "Advertising sales agents 41-3011" > 4810 "Insurance sales agents 41-3021" > 4820 "Securities, commodities, and financial services sales agents 41-3031" > 4830 "Travel agents 41-3041" > 4840 "Sales representatives, services, all other 41-3099" > 4850 "Sales representatives, wholesale and manufacturing 41-4010" > 4900 "Models, demonstrators, and product promoters 41-9010" > 4920 "Real estate brokers and sales agents 41-9020" > 4930 "Sales engineers 41-9031" > 4940 "Telemarketers 41-9041" > 4950 "Door-to-door sales workers, news and street vendors, and related workers 41-9091" > 4965 "Sales and Related Workers, all other 41-9099" > 5000 "First-line supervisors/managers of office and administrative support workers 43-1011" > 5010 "Switchboard operators, including answering service 43-2011" > 5020 "Telephone operators 43-2021" > 5030 "Communications equipment operators, all other 43-2099" > 5100 "Bill and account collectors 43-3011" > 5110 "Billing and posting clerks and machine operators 43-3021" > 5120 "Bookkeeping, accounting, and auditing clerks 43-3031" > 5130 "Gaming cage workers 43-3041" > 5140 "Payroll and timekeeping clerks 43-3051" > 5150 "Procurement clerks 43-3061" > 5160 "Tellers 43-3071" > 5165 "Financial Clerks, all other 43-3099" > 5200 "Brokerage clerks 43-4011" > 5210 "Correspondence clerks 43-4021" > 5220 "Court, municipal, and license clerks 43-4031" > 5230 "Credit authorizers, checkers, and clerks 43-4041" > 5240 "Customer service representatives 43-4051" > 5250 "Eligibility interviewers, government programs 43-4061" > 5260 "File Clerks 43-4071" > 5300 "Hotel, motel, and resort desk clerks 43-4081" > 5310 "Interviewers, except eligibility and loan 43-4111" > 5320 "Library assistants, clerical 43-4121" > 5330 "Loan interviewers and clerks 43-4131" > 5340 "New accounts clerks 43-4141" > 5350 "Order clerks 43-4151" > 5360 "Human resources assistants, except payroll and timekeeping 43-4161" > 5400 "Receptionists and information clerks 43-4171" > 5410 "Reservation and transportation ticket agents and travel clerks 43-4181" > 5420 "Information and record clerks, all other 43-4199" > 5500 "Cargo and freight agents 43-5011" > 5510 "Couriers and messengers 43-5021" > 5520 "Dispatchers 43-5030" > 5530 "Meter readers, utilities 43-5041" > 5540 "Postal service clerks 43-5051" > 5550 "Postal service mail carriers 43-5052" > 5560 "Postal service mail sorters, processors, and processing machine operators 43-5053" > 5600 "Production, planning, and expediting clerks 43-5061" > 5610 "Shipping, receiving, and traffic clerks 43-5071" > 5620 "Stock clerks and order fillers 43-5081" > 5630 "Weighers, measurers, checkers, and samplers, recordkeeping 43-5111" > 5700 "Secretaries and administrative assistants 43-6010" > 5800 "Computer operators 43-9011" > 5810 "Data entry keyers 43-9021" > 5820 "Word processors and typists 43-9022" > 5830 "Desktop publishers 43-9031" > 5840 "Insurance claims and policy processing clerks 43-9041" > 5850 "Mail clerks and mail machine operators, except postal service 43-9051" > 5860 "Office clerks, general 43-9061" > 5900 "Office machine operators, except computer 43-9071" > 5910 "Proofreaders and copy markers 43-9081" > 5920 "Statistical assistants 43-9111" > 5940 "Office and Administrative Support Workers, all other 43-9199" > 6005 "First-line supervisors of farming, fishing, and forestry workers 45-1011" > 6010 "Agricultural inspectors 45-2011" > 6020 "Animal breeders 45-2021" > 6040 "Graders and sorters, agricultural products 45-2041" > 6050 "Miscellaneous agricultural workers 45-2090" > 6100 "Fishers and related fishing workers 45-3011" > 6110 "Hunters and trappers 45-3021" > 6120 "Forest and conservation workers 45-4011" > 6130 "Logging workers 45-4020" > 6200 "First-line supervisors/managers of construction trades and extraction workers 47-1011" > 6210 "Boilermakers 47-2011" > 6220 "Brickmasons, blockmasons, and stonemasons 47-2020" > 6230 "Carpenters 47-2031" > 6240 "Carpet, floor, and tile installers and finishers 47-2040" > 6250 "Cement masons, concrete finishers, and terrazzo workers 47-2050" > 6260 "Construction laborers 47-2061" > 6300 "Paving, surfacing, and tamping equipment operators 47-2071" > 6310 "Pile-driver operators 47-2072" > 6320 "Operating engineers and other construction equipment operators 47-2073" > 6330 "Drywall installers, ceiling tile installers, and tapers 47-2080" > 6355 "Electricians 47-2111" > 6360 "Glaziers 47-2121" > 6400 "Insulation workers 47-2130" > 6420 "Painters, construction and maintenance 47-2141" > 6430 "Paperhangers 47-2142" > 6440 "Pipelayers, plumbers, pipefitters, and steamfitters 47-2150" > 6460 "Plasterers and stucco masons 47-2161" > 6500 "Reinforcing iron and rebar workers 47-2171" > 6515 "Roofers 47-2181" > 6520 "Sheet metal workers 47-2211" > 6530 "Structural iron and steel workers 47-2221" > 6540 "Solar Photovoltaic Installers 47-2231" > 6600 "Helpers, construction trades 47-3010" > 6660 "Construction and building inspectors 47-4011" > 6700 "Elevator installers and repairers 47-4021" > 6710 "Fence erectors 47-4031" > 6720 "Hazardous materials removal workers 47-4041" > 6730 "Highway maintenance workers 47-4051" > 6740 "Rail-track laying and maintenance equipment operators 47-4061" > 6750 "Septic tank servicers and sewer pipe cleaners 47-4071" > 6765 "Miscellaneous construction and related workers 47-4090" > 6800 "Derrick, rotary drill, and service unit operators, oil, gas, and mining 47-5010" > 6820 "Earth drillers, except oil and gas 47-5021" > 6830 "Explosives workers, ordnance handling experts, and blasters 47-5031" > 6840 "Mining machine operators 47-5040" > 6910 "Roof bolters, mining 47-5061" > 6920 "Roustabouts, oil and gas 47-5071" > 6930 "Helpers--extraction workers 47-5081" > 6940 "Other extraction workers 47-50XX" > 7000 "First-line supervisors/managers of mechanics, installers, and repairers 49-1011" > 7010 "Computer, automated teller, and office machine repairers 49-2011" > 7020 "Radio and telecommunications equipment installers and repairers 49-2020" > 7030 "Avionics technicians 49-2091" > 7040 "Electric motor, power tool, and related repairers 49-2092" > 7050 "Electrical and electronics installers and repairers, transportation equipment 49-2093" > 7100 "Electrical and electronics repairers, industrial and utility 49-209X" > 7110 "Electronic equipment installers and repairers, motor vehicles 49-2096" > 7120 "Electronic home entertainment equipment installers and repairers 49-2097" > 7130 "Security and fire alarm systems installers 49-2098" > 7140 "Aircraft mechanics and service technicians 49-3011" > 7150 "Automotive body and related repairers 49-3021" > 7160 "Automotive glass installers and repairers 49-3022" > 7200 "Automotive service technicians and mechanics 49-3023" > 7210 "Bus and truck mechanics and diesel engine specialists 49-3031" > 7220 "Heavy vehicle and mobile equipment service technicians and mechanics 49-3040" > 7240 "Small engine mechanics 49-3050" > 7260 "Miscellaneous vehicle and mobile equipment mechanics, installers, and repairers 49-309 > 0" > 7300 "Control and valve installers and repairers 49-9010" > 7315 "Heating, air conditioning, and refrigeration mechanics and installers 49-9021" > 7320 "Home appliance repairers 49-9031" > 7330 "Industrial and refractory machinery mechanics 49-904X" > 7340 "Maintenance and repair workers, general 49-9071" > 7350 "Maintenance workers, machinery 49-9043" > 7360 "Millwrights 49-9044" > 7410 "Electrical power-line installers and repairers 49-9051" > 7420 "Telecommunications line installers and repairers 49-9052" > 7430 "Precision instrument and equipment repairers 49-9060" > 7440 "Wind Turbine Service Technicians 49-9081" > 7510 "Coin, vending, and amusement machine servicers and repairers 49-9091" > 7520 "Commercial divers 49-9092" > 7540 "Locksmiths and safe repairers 49-9094" > 7550 "Manufactured building and mobile home installers 49-9095" > 7560 "Riggers 49-9096" > 7600 "Signal and track switch repairers 49-9097" > 7610 "Helpers--installation, maintenance, and repair workers 49-9098" > 7630 "Other installation, maintenance, and repair workers 49-909X" > 7700 "First-line supervisors/managers of production and operating workers 51-1011" > 7710 "Aircraft structure, surfaces, rigging, and systems assemblers 51-2011" > 7720 "Electrical, electronics, and electromechanical assemblers 51-2020" > 7730 "Engine and other machine assemblers 51-2031" > 7740 "Structural metal fabricators and fitters 51-2041" > 7750 "Miscellaneous assemblers and fabricators 51-2090" > 7800 "Bakers 51-3011" > 7810 "Butchers and other meat, poultry, and fish processing workers 51-3020" > 7830 "Food and tobacco roasting, baking, and drying machine operators and tenders 51-3091" > 7840 "Food batchmakers 51-3092" > 7850 "Food cooking machine operators and tenders 51-3093" > 7855 "Food Processing Workers, all Other 51-3099" > 7900 "Computer control programmers and operators 51-4010" > 7920 "Extruding and drawing machine setters, operators, and tenders, metal and plastic 51-40 > 21" > 7930 "Forging machine setters, operators, and tenders, metal and plastic 51-4022" > 7940 "Rolling machine setters, operators, and tenders, metal and plastic 51-4023" > 7950 "Cutting, punching, and press machine setters, operators, and tenders, metal and plasti > c 51-4031" > 7960 "Drilling and boring machine tool setters, operators, and tenders, metal and plastic 51 > -4032" > 8000 "Grinding, lapping, polishing, and buffing machine tool setters, operators, and tenders > , metal and plastic 51-4033" > 8010 "Lathe and turning machine tool setters, operators, and tenders, metal and plastic 51-4 > 034" > 8020 "Milling and planing machine setters, operators, and tenders, metal and plastic 51-4035 > " > 8030 "Machinists 51-4041" > 8040 "Metal furnace and kiln operators and tenders 51-4050" > 8060 "Model makers and patternmakers, metal and plastic 51-4060" > 8100 "Molders and molding machine setters, operators, and tenders, metal and plastic 51-4070 > " > 8120 "Multiple machine tool setters, operators, and tenders, metal and plastic 51-4081" > 8130 "Tool and die makers 51-4111" > 8140 "Welding, soldering, and brazing workers 51-4120" > 8150 "Heat treating equipment setters, operators, and tenders, metal and plastic 51-4191" > 8160 "Lay-out workers, metal and plastic 51-4192" > 8200 "Plating and coating machine setters, operators, and tenders, metal and plastic 51-4193 > " > 8210 "Tool grinders, filers, and sharpeners 51-4194" > 8220 "Metalworkers and plastic workers, all other 51-4199" > 8250 "Prepress technicians and workers 51-5111" > 8255 "Printing Press Operators 51-5112" > 8256 "Print Binding and Finishing Workers 51-5113" > 8300 "Laundry and dry-cleaning workers 51-6011" > 8310 "Pressers, textile, garment, and related materials 51-6021" > 8320 "Sewing machine operators 51-6031" > 8330 "Shoe and leather workers and repairers 51-6041" > 8340 "Shoe machine operators and tenders 51-6042" > 8350 "Tailors, dressmakers, and sewers 51-6050" > 8360 "Textile bleaching and dyeing machine operators and tenders 51-6061" > 8400 "Textile cutting machine setters, operators, and tenders 51-6062" > 8410 "Textile knitting and weaving machine setters, operators, and tenders 51-6063" > 8420 "Textile winding, twisting, and drawing out machine setters, operators, and tenders 51- > 6064" > 8430 "Extruding and forming machine setters, operators, and tenders, synthetic and glass fib > ers 51-6091" > 8440 "Fabric and apparel patternmakers 51-6092" > 8450 "Upholsterers 51-6093" > 8460 "Textile, apparel, and furnishings workers, all other 51-6099" > 8500 "Cabinetmakers and bench carpenters 51-7011" > 8510 "Furniture finishers 51-7021" > 8520 "Model makers and patternmakers, wood 51-7030" > 8530 "Sawing machine setters, operators, and tenders, wood 51-7041" > 8540 "Woodworking machine setters, operators, and tenders, except sawing 51-7042" > 8550 "Woodworkers, all other 51-7099" > 8600 "Power plant operators, distributors, and dispatchers 51-8010" > 8610 "Stationary engineers and boiler operators 51-8021" > 8620 "Water and liquid waste treatment plant and system operators 51-8031" > 8630 "Miscellaneous plant and system operators 51-8090" > 8640 "Chemical processing machine setters, operators, and tenders 51-9010" > 8650 "Crushing, grinding, polishing, mixing, and blending workers 51-9020" > 8710 "Cutting workers 51-9030" > 8720 "Extruding, forming, pressing, and compacting machine setters, operators, and tenders 5 > 1-9041" > 8730 "Furnace, kiln, oven, drier, and kettle operators and tenders 51-9051" > 8740 "Inspectors, testers, sorters, samplers, and weighers 51-9061" > 8750 "Jewelers and precious stone and metal workers 51-9071" > 8760 "Medical, dental, and ophthalmic laboratory technicians 51-9080" > 8800 "Packaging and filling machine operators and tenders 51-9111" > 8810 "Painting workers 51-9120" > 8830 "Photographic process workers and processing machine operators 51-9151" > 8840 "Semiconductor processors 51-9141" > 8850 "Cementing and gluing machine operators and tenders 51-9191" > 8860 "Cleaning, washing, and metal pickling equipment operators and tenders 51-9192" > 8900 "Cooling and freezing equipment operators and tenders 51-9193" > 8910 "Etchers and engravers 51-9194" > 8920 "Molders, shapers, and casters, except metal and plastic 51-9195" > 8930 "Paper goods machine setters, operators, and tenders 51-9196" > 8940 "Tire builders 51-9197" > 8950 "Helpers--production workers 51-9198" > 8965 "Production workers, all other 51-9199" > 9000 "Supervisors, transportation and material moving workers 53-1000" > 9030 "Aircraft pilots and flight engineers 53-2010" > 9040 "Air traffic controllers and airfield operations specialists 53-2020" > 9050 "Flight Attendants 53-2031" > 9110 "Ambulance drivers and attendants, except emergency medical technicians 53-3011" > 9120 "Bus drivers 53-3020" > 9130 "Driver/sales workers and truck drivers 53-3030" > 9140 "Taxi drivers and chauffeurs 53-3041" > 9150 "Motor vehicle operators, all other 53-3099" > 9200 "Locomotive engineers and operators 53-4010" > 9230 "Railroad brake, signal, and switch operators 53-4021" > 9240 "Railroad conductors and yardmasters 53-4031" > 9260 "Subway, streetcar, and other rail transportation workers 53-40XX" > 9300 "Sailors and marine oilers 53-5011" > 9310 "Ship and boat captains and operators 53-5020" > 9330 "Ship engineers 53-5031" > 9340 "Bridge and lock tenders 53-6011" > 9350 "Parking lot attendants 53-6021" > 9360 "Service station attendants 53-6031" > 9410 "Transportation inspectors 53-6051" > 9415 "Transportation Attendants, Except Flight Attendants 53-6061" > 9420 "Other transportation workers 53-60XX" > 9500 "Conveyor operators and tenders 53-7011" > 9510 "Crane and tower operators 53-7021" > 9520 "Dredge, excavating, and loading machine operators 53-7030" > 9560 "Hoist and winch operators 53-7041" > 9600 "Industrial truck and tractor operators 53-7051" > 9610 "Cleaners of vehicles and equipment 53-7061" > 9620 "Laborers and freight, stock, and material movers, hand 53-7062" > 9630 "Machine feeders and offbearers 53-7063" > 9640 "Packers and packagers, hand 53-7064" > 9650 "Pumping station operators 53-7070" > 9720 "Refuse and recyclable material collectors 53-7081" > 9730 "Shuttle car operators 53-7111" > 9740 "Tank car, truck, and ship loaders 53-7121" > 9750 "Material moving workers, all other 53-7199" > 9840 "Armed Forces" > 9970 "Problem referral" > 9990 "Not reported (Includes Refused, Classified, blank and all other noncodable entries)" > 9800 "Military officer special and tactical operations leaders/managers 55-1010" > 9810 "First-line enlisted military supervisors/managers 55-2010" > 9820 "Military enlisted tactical operations and air/weapons specialists and crew members 55- > 3010" > 9830 "Military, rank not specified 99-9999" > ; . * docc00: 2000-; . label values docc00 docc00l ; . label define docc00l > 1 "Management occupations" > 2 "Business and financial operations occupations" > 3 "Computer and mathematical science occupations" > 4 "Architecture and engineering occupations" > 5 "Life, physical, and social science occupations" > 6 "Community and social service occupations" > 7 "Legal occupations" > 8 "Education, training, and library occupations" > 9 "Arts, design, entertainment, sports, and media occupations" > 10 "Healthcare practitioner and technical occupations" > 11 "Healthcare support occupations" > 12 "Protective service occupations" > 13 "Food preparation and serving related occupations" > 14 "Building and grounds cleaning and maintenance occupations" > 15 "Personal care and service occupations" > 16 "Sales and related occupations" > 17 "Office and administrative support occupations" > 18 "Farming, fishing, and forestry occupations" > 19 "Construction and extraction occupations" > 20 "Installation, maintenance, and repair occupations" > 21 "Production occupations" > 22 "Transportation and material moving occupations" > 23 "Armed Forces" > ; . * eligible: 1979:5-; . label values eligible P21L; . label define P21L > 1 "Earnings Eligible For Edit" > 2 "Other" > ; . * reason94: 1994-; . label values reason94 P22L; . label define P22L > 1 "Slack Work/Business Conditions" > 2 "Seasonal Work" > 3 "Job Started Or Ended During Week" > 4 "Vacation/Personal Day" > 5 "Own Illness/Injury/Medical Appointment" > 6 "Holiday (legal Or Religious)" > 7 "Child Care Problems" > 8 "Other Family/Personal Obligations" > 9 "Labor Dispute" > 10 "Weather Affected Job" > 11 "School/Training" > 12 "Civic/Military Duty" > 13 "Other Reason" > ; . * absent94: 1994-; . label values absent94 P23L; . label define P23L > 1 "On Layoff" > 2 "Slack Work/Business Conditions" > 3 "Waiting For A New Job To Begin" > 4 "Vacation/Personal Days" > 5 "Own Illness/Injury/Medical Problems" > 6 "Child Care Problems" > 7 "Other Family/Personal Obligation" > 8 "Maternity/Paternity Leave" > 9 "Labor Dispute" > 10 "Weather Affected Job" > 11 "School/Training" > 12 "Civic/Military Duty" > 13 "Does Not Work In The Business" > 14 "Other (specify)" > ; . *why3594: 1994-; . label values why3594 P3594L; . label define P3594L > 1 "Usu. FT-Slack Work/Business Conditions" > 2 "Usu. FT-Seasonal Work" > 3 "Usu. FT-Job Started/Ended During Week" > 4 "Usu. FT-Vacation/Personal Day" > 5 "Usu. FT-Own Illness/Injury/Medical Appt" > 6 "Usu. FT-Holiday (religious Or Legal)" > 7 "Usu. FT-Child Care Problems" > 8 "Usu. FT-Other Fam/Pers Obligations" > 9 "Usu. FT-Labor Dispute" > 10 "Usu. FT-Weather Affected Job" > 11 "Usu. FT-School/Training" > 12 "Usu. FT-Civic/Military Duty" > 13 "Usu. FT-Other Reason" > 14 "Usu. PT-Slack Work/Business Conditions" > 15 "Usu. PT-Could Only Find PT Work" > 16 "Usu. PT-Seasonal Work" > 17 "Usu. PT-Child Care Problems" > 18 "Usu. PT-Other Fam/Pers Obligations" > 19 "Usu. PT-Health/Medical Limitations" > 20 "Usu. PT-School/Training" > 21 "Usu. PT-Retired/Ss Limit On Earnings" > 22 "Usu. PT-Workweek <35 Hours" > 23 "Usu. PT-Other Reason" > ; . * ftpt94: 1994-; . label values ftpt94 P160L; . label define P160L > 1 "Not In Labor Force" > 2 "FT Hours (35+), Usually FT" > 3 "PT For Economic Reasons, Usually FT" > 4 "PT For Non-Economic Reasons, Usually FT" > 5 "Not At Work, Usually FT" > 6 "PT Hours, Usually PT For Economic Reasons" > 7 "PT hrs, Usually PT For Non-Economic" > 8 "FT Hours, Usually PT For Economic Reas" > 9 "FT hrs, Usually PT For Non-Economic" > 10 "Not at work, Usually Part-Time" > 11 "Unemployed FT" > 12 "Unemployed PT" > ; . * studftpt: 1984-; . label values studftpt P24L; . label define P24L > 1 "Full-time" > 2 "Part-time" > ; . * unionmme: 1983-; . label values unionmme P25L; . label define P25L > 1 "Yes" > 2 "No" > ; . * unioncov: 1983-; . label values unioncov P26L; . label define P26L > 1 "Yes" > 2 "No" > ; . * otc: 1994-; . label values otc yesno; . label define yesno > 1 "Yes" > 2 "No" > ; . * hrhtype: 1984-; . label values hrhtype hrhtype; . label define hrhtype > 0 "Non-interview household" > 1 "Husband/wife primary fam (neither in Armed Forces)" > 2 "Husband/wife primary fam (one/both in Armed Forces)" > 3 "Unmarried civilian male primary fam householder" > 4 "Unmarried civilian female primary fam householder" > 5 "Unmarried primary fam householder in Armed Forces" > 6 "Civilian male primary individual" > 7 "Civilian female primary individual" > 8 "Primary ind HH - reference person in Armed Forces" > 9 "Group quarters with family" > 10 "Group quarters without family" > ; . ** Race 2003-April 2012 has 21 Categories" > ** "Race May 2012 on has 26 Categories" > label values race race26; > label define race26 > 1 "White Only" > 2 "Black Only" > 3 "American Indian, Alaskan Native Only" > 4 "Asian Only" > 5 "Hawaiian/Pacific Islander Only" > 6 "White-Black" > 7 "White-AI" > 8 "White-Asian" > 9 "White-HP" > 10 "Black-AI" > 11 "Black-Asian" > 12 "Black-HP" > 13 "AI-Asian" > 14 "AI-HP" > 15 "Asian-HP" > 16 "W-B-AI" > 17 "W-B-A" > 18 "W-B-HP" > 19 "W-AI-A" > 20 "W-AI-HP" > 21 "W-A-HP" > 22 "B-AI-A" > 23 "W-B-AI-A" > 24 "W-AI-A-HP" > 25 "Other 3 Race Combinations" > 26 "Other 4 and 5 Race Combinations" > ; > > end of do-file (saving in Stata 12 format, which Stata 11 can read) file /homes/data/morg/annual/morg15.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+--------------------------------------------------------- hhid | 0 intmonth | 314,692 6.476593 3.463773 1 12 hurespli | 314,662 1.399009 .7680199 0 16 hrhtype | 314,692 2.725948 2.284315 1 10 minsamp | 314,692 6.004411 1.999998 4 8 -------------+--------------------------------------------------------- hrlonglk | 314,692 1.990219 .139522 0 2 hrsample | 0 hrhhid2 | 0 serial | 0 hhnum | 314,692 1.054116 .2443186 1 6 -------------+--------------------------------------------------------- stfips | 314,692 27.99609 16.12793 1 56 cbsafips | 314,692 23465.14 17957.49 0 79600 county | 314,692 26.7914 64.82676 0 810 centcity | 258,591 1.942933 .7283885 1 3 smsastat | 311,483 1.197892 .3984109 1 2 -------------+--------------------------------------------------------- icntcity | 35,926 1.384513 .9540937 1 7 smsa04 | 314,692 3.637967 2.600583 0 7 relref95 | 314,692 3.150055 3.208697 1 18 age | 314,692 47.14269 18.5431 16 85 spouse | 161,344 1.584875 .6994139 1 13 -------------+--------------------------------------------------------- sex | 314,692 1.521071 .4995566 1 2 grade92 | 314,692 40.27146 2.737713 31 46 race | 314,692 1.424078 1.293923 1 26 ethnic | 39,084 2.514712 2.378316 1 8 lineno | 314,692 1.74681 1.02604 1 16 -------------+--------------------------------------------------------- famnum | 314,692 .7938874 .4774521 0 5 pfamrel | 314,692 1.364045 1.076618 0 4 marital | 314,692 3.448143 2.653938 1 7 prpertyp | 314,692 2.00416 .064361 2 3 penatvty | 314,692 87.27998 80.68762 57 555 -------------+--------------------------------------------------------- pemntvty | 314,692 97.16445 89.971 57 555 pefntvty | 314,692 97.3179 90.18498 57 555 prcitshp | 314,692 1.488722 1.214276 1 5 prcitflg | 314,692 .1930078 2.116578 0 41 peinusyr | 314,692 1.99721 5.393895 0 23 -------------+--------------------------------------------------------- selfproxy | 309,221 1.487593 .5052523 1 3 lfsr94 | 313,383 2.949298 2.390977 1 7 absent94 | 6,566 6.295461 3.518222 4 14 uhourse | 172,340 38.781 11.07331 0 99 reason94 | 14,278 5.186651 2.593244 1 13 -------------+--------------------------------------------------------- hourslw | 178,349 38.52818 12.87169 1 99 laydur | 1,275 7.24 8.276452 1 52 dwrsn | 5,939 7.248527 3.278403 1 11 why3594 | 45,813 14.73996 6.969504 1 23 prunedur | 9,423 25.63642 31.99899 0 119 -------------+--------------------------------------------------------- untype | 9,423 3.434999 1.659702 1 6 ftpt94 | 313,383 2.572702 2.39674 1 12 class94 | 202,041 4.090986 1.158547 1 8 agri | 202,041 .0210254 .1434694 0 1 eligible | 314,692 1.474782 .4993644 1 2 -------------+--------------------------------------------------------- otc | 165,282 1.859567 .3474365 1 2 ernpdh2 | 94,448 1.735304 .4411735 1 2 paidhre | 165,282 1.412338 .4922568 1 2 earnhre | 97,080 1648.827 970.1867 50 9999 earnwke | 165,282 890.4409 662.7169 0 2884.61 -------------+--------------------------------------------------------- unionmme | 165,282 1.891446 .3110796 1 2 unioncov | 147,340 1.985537 .1193904 1 2 schenr | 196,655 1.846249 .3607113 1 2 studftpt | 30,236 1.146448 .3535606 1 2 schlvl | 30,236 1.613739 .4868998 1 2 -------------+--------------------------------------------------------- earnwt | 314,692 9563.664 5187.47 0 87309.23 weight | 314,692 2390.916 1289.28 0 20914.79 chldpres | 314,692 1.302906 2.777005 0 15 ownchild | 314,692 .4800599 .9512924 0 12 I25d | 165,282 .3824312 .4859825 0 1 -------------+--------------------------------------------------------- I25c | 97,130 .4184598 .4933089 0 1 I25a | 314,692 .4970924 4.273098 0 43 I25b | 314,692 4.512806 12.99001 0 42 qstnum | 0 occurnum | 0 -------------+--------------------------------------------------------- ged | 91,362 1.100118 .3001592 1 2 gedhigr | 9,147 6.424401 1.359117 1 8 yrcoll | 86,552 2.773697 1.014803 1 5 grprof | 0 gr6cor | 0 -------------+--------------------------------------------------------- ms123 | 0 cmpwgt | 314,692 2391.253 1291.368 0 20957.92 ind02 | 202,041 6278.15 2698.138 170 9890 occ2012 | 202,041 4145.87 2577.85 10 9840 occ002 | 314,692 107.5647 728.4811 -1 9720 -------------+--------------------------------------------------------- vet1 | 26,150 3.713193 1.667571 1 9 vet2 | 5,128 3.423752 1.528112 1 9 vet3 | 1,221 3.133497 1.558488 1 8 vet4 | 199 3.778894 1.732446 1 8 linedad | 43,710 1.694852 .9280056 1 13 -------------+--------------------------------------------------------- linemom | 31,415 1.149419 .4062535 1 3 recnum | 314,692 226503.7 130978.5 1 453225 year | 314,692 2015 0 2015 2015 ym_file | 314,692 665.4766 3.463773 660 671 ym | 314,692 656.4634 6.91124 645 668 -------------+--------------------------------------------------------- ch02 | 314,692 .0650191 .24656 0 1 ch35 | 314,692 .0698906 .2549629 0 1 ch613 | 314,692 .1467022 .3538093 0 1 ch1417 | 314,692 .089764 .2858438 0 1 ch05 | 314,692 .1121827 .3155916 0 1 -------------+--------------------------------------------------------- ihigrdc | 231,059 12.28622 2.470662 0 18 docc00 | 202,041 12.31203 6.739938 1 23 dind02 | 202,041 47.25685 249.3431 1 3895 . aef2 2016 16 03 13 dct_name aef03.dbd raw_name=../raw/morg16 (0 observations deleted) obs 453393 # of persons with age<=15 138520 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 58,352 12.87 12.87 0 | 3,778 0.83 13.70 1 | 4,548 1.00 14.71 2 | 4,710 1.04 15.75 3 | 4,777 1.05 16.80 4 | 4,852 1.07 17.87 5 | 4,908 1.08 18.95 6 | 5,101 1.13 20.08 7 | 5,157 1.14 21.21 8 | 5,401 1.19 22.41 9 | 5,295 1.17 23.57 10 | 5,372 1.18 24.76 11 | 5,141 1.13 25.89 12 | 5,307 1.17 27.06 13 | 5,206 1.15 28.21 14 | 5,270 1.16 29.37 15 | 5,345 1.18 30.55 16 | 5,415 1.19 31.75 17 | 5,252 1.16 32.90 18 | 4,838 1.07 33.97 19 | 4,402 0.97 34.94 20 | 4,436 0.98 35.92 21 | 4,560 1.01 36.93 22 | 4,581 1.01 37.94 23 | 4,708 1.04 38.98 24 | 4,803 1.06 40.03 25 | 5,127 1.13 41.17 26 | 5,115 1.13 42.29 27 | 4,887 1.08 43.37 28 | 4,842 1.07 44.44 29 | 4,948 1.09 45.53 30 | 5,202 1.15 46.68 31 | 5,277 1.16 47.84 32 | 5,014 1.11 48.95 33 | 5,201 1.15 50.10 34 | 5,147 1.14 51.23 35 | 5,321 1.17 52.40 36 | 5,437 1.20 53.60 37 | 5,037 1.11 54.71 38 | 4,895 1.08 55.79 39 | 4,750 1.05 56.84 40 | 4,833 1.07 57.91 41 | 4,863 1.07 58.98 42 | 4,666 1.03 60.01 43 | 4,743 1.05 61.06 44 | 4,887 1.08 62.13 45 | 5,254 1.16 63.29 46 | 5,256 1.16 64.45 47 | 4,963 1.09 65.55 48 | 4,960 1.09 66.64 49 | 4,898 1.08 67.72 50 | 5,161 1.14 68.86 51 | 5,503 1.21 70.07 52 | 5,599 1.23 71.31 53 | 5,654 1.25 72.55 54 | 5,456 1.20 73.76 55 | 5,603 1.24 74.99 56 | 5,730 1.26 76.26 57 | 5,637 1.24 77.50 58 | 5,509 1.22 78.72 59 | 5,438 1.20 79.91 60 | 5,602 1.24 81.15 61 | 5,367 1.18 82.33 62 | 5,144 1.13 83.47 63 | 4,907 1.08 84.55 64 | 5,050 1.11 85.66 65 | 4,816 1.06 86.73 66 | 4,521 1.00 87.72 67 | 4,420 0.97 88.70 68 | 4,362 0.96 89.66 69 | 4,410 0.97 90.63 70 | 3,527 0.78 91.41 71 | 3,283 0.72 92.14 72 | 3,057 0.67 92.81 73 | 3,132 0.69 93.50 74 | 2,784 0.61 94.11 75 | 2,627 0.58 94.69 76 | 2,413 0.53 95.23 77 | 2,204 0.49 95.71 78 | 2,092 0.46 96.17 79 | 1,976 0.44 96.61 80 | 7,857 1.73 98.34 85 | 7,514 1.66 100.00 ------------+----------------------------------- Total | 453,393 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 58,352 42.13 42.13 0 | 3,778 2.73 44.85 1 | 4,548 3.28 48.14 2 | 4,710 3.40 51.54 3 | 4,777 3.45 54.98 4 | 4,852 3.50 58.49 5 | 4,908 3.54 62.03 6 | 5,101 3.68 65.71 7 | 5,157 3.72 69.44 8 | 5,401 3.90 73.34 9 | 5,295 3.82 77.16 10 | 5,372 3.88 81.04 11 | 5,141 3.71 84.75 12 | 5,307 3.83 88.58 13 | 5,206 3.76 92.34 14 | 5,270 3.80 96.14 15 | 5,345 3.86 100.00 ------------+----------------------------------- Total | 138,520 100.00 (138,520 observations deleted) (0 observations deleted) obs 314873 after keeping age>15&age!=. infile successful no observations (35 real changes made, 35 to missing) (271,574 real changes made, 271,574 to missing) (283,486 real changes made, 283,486 to missing) (0 real changes made) (0 real changes made) (158,257 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (156,616 real changes made) Geography (124,332 real changes made) dropping cmsacode msafips smsa93 smsasize = . if smsasize <=0 (236,743 real changes made, 236,743 to missing) inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (3,190 real changes made, 3,190 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (54,856 real changes made, 54,856 to missing) (274,559 real changes made, 274,559 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (152,912 real changes made, 152,912 to missing) if 2016 > 1983 & 2016 < 1989 { (0 real changes made) (0 real changes made) (0 real changes made) (ch02: 71123 changes made) (ch35: 79604 changes made) (ch613: 79604 changes made) (ch1417: 79604 changes made) (14,422 real changes made) (0 real changes made) (224,044 real changes made, 224,044 to missing) (305,979 real changes made, 305,979 to missing) (228,292 real changes made, 228,292 to missing) (314,873 real changes made, 314,873 to missing) (314,873 real changes made, 314,873 to missing) (314,873 real changes made, 314,873 to missing) (314,873 missing values generated) (982 real changes made) (1,816 real changes made) (3,550 real changes made) (5,155 real changes made) (6,159 real changes made) (9,381 real changes made) (10,779 real changes made) (4,815 real changes made) (51 real changes made) (158 real changes made) (75 real changes made) (586 real changes made) (949 real changes made) (2,145 real changes made) (2,860 real changes made) (2,070 real changes made) (81,935 real changes made) (9,114 real changes made) (21,359 real changes made) (40,470 real changes made) (9,800 real changes made) (5,838 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (9,304 real changes made) (220,686 real changes made, 220,686 to missing) (306,070 real changes made, 306,070 to missing) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (274,729 real changes made, 274,729 to missing) (0 real changes made) (289,231 real changes made, 289,231 to missing) (309,714 real changes made, 309,714 to missing) (313,621 real changes made, 313,621 to missing) (314,687 real changes made, 314,687 to missing) Employment (5,359 real changes made, 5,359 to missing) (309,293 real changes made, 309,293 to missing) (149,065 real changes made, 149,065 to missing) (112,714 real changes made, 112,714 to missing) (112,714 real changes made, 112,714 to missing) (112,714 real changes made, 112,714 to missing) docc80 ** The renaming is part of the Census reweighting ; docc00 553 generate int docc00=occ2011; 568 572 577 (112,714 missing values generated) 581 recode docc00 2011 (docc00: 202159 changes made) dind (112,714 missing values generated) (dind02: 201285 changes made) Wages (149,065 real changes made, 149,065 to missing) (0 real changes made) (217,349 real changes made, 217,349 to missing) (0 real changes made) (0 real changes made) (149,065 real changes made) (197,911 real changes made) (112,714 real changes made, 112,714 to missing) (306,070 real changes made, 306,070 to missing) (129,243 real changes made) (149,065 real changes made) (2 real changes made, 2 to missing) (129,243 real changes made, 129,243 to missing) (1,282 real changes made, 1,282 to missing) (313,658 real changes made, 313,658 to missing) (217,270 real changes made, 217,270 to missing) (149,065 real changes made, 149,065 to missing) Hours, Unions (302,820 real changes made, 302,820 to missing) (308,227 real changes made, 308,227 to missing) (285,364 real changes made, 285,364 to missing) (120,249 real changes made, 120,249 to missing) (285,364 real changes made, 285,364 to missing) (1,282 real changes made, 1,282 to missing) (135,889 real changes made, 135,889 to missing) (97 real changes made) (12,252 real changes made, 12,252 to missing) (271,088 real changes made, 271,088 to missing) (149,065 real changes made, 149,065 to missing) (166,294 real changes made, 166,294 to missing) variable spouse was int now byte variable hourslw was int now byte variable laydur was int now byte variable ym_file was float now int variable ym was float now int variable ch02 was int now byte variable ch35 was int now byte variable ch613 was int now byte variable ch1417 was int now byte variable ch05 was int now byte variable docc00 was int now byte variable dind02 was float now int (4,723,095 bytes saved) . *by Jean Roth Thu Mar 17 2005 14:38:42 . *Please report errors to jroth@nber.org . . * Note: Variable names in Stata are case-sensitive . #delimit ; delimiter now ; . ; . * minsamp: 1979-; . label values minsamp P2L; . label define P2L > 4 "MIS 4" > 8 "MIS 8" > ; . * hrlonglk: 1994-; . label values hrlonglk P3L; . label define P3L > 0 "MIS 1 Or Replacement HH (no" > 2 "MIS 2-4 Or MIS 6-8 (link To" > ; . * intmonth: 1979-; . label values intmonth P4L; . label define P4L > 1 "January" > 2 "February" > 3 "March" > 4 "April" > 5 "May" > 6 "June" > 7 "July" > 8 "August" > 9 "September" > 10 "October" > 11 "November" > 12 "December" > ; . * stfips: 1989-; . label values stfips stfips; . label define stfips > 1 "AL" > 2 "AK" > 4 "AZ" > 5 "AR" > 6 "CA" > 8 "CO" > 9 "CT" > 10 "DE" > 11 "DC" > 12 "FL" > 13 "GA" > 15 "HI" > 16 "ID" > 17 "IL" > 18 "IN" > 19 "IA" > 20 "KS" > 21 "KY" > 22 "LA" > 23 "ME" > 24 "MD" > 25 "MA" > 26 "MI" > 27 "MN" > 28 "MS" > 29 "MO" > 30 "MT" > 31 "NE" > 32 "NV" > 33 "NH" > 34 "NJ" > 35 "NM" > 36 "NY" > 37 "NC" > 38 "ND" > 39 "OH" > 40 "OK" > 41 "OR" > 42 "PA" > 44 "RI" > 45 "SC" > 46 "SD" > 47 "TN" > 48 "TX" > 49 "UT" > 50 "VT" > 51 "VA" > 53 "WA" > 54 "WV" > 55 "WI" > 56 "WY" > ; . * state: 1979- April 2014 ; . cap label values state P27L; . cap label define P27L > 11 "ME" > 12 "NH" > 13 "VT" > 14 "MA" > 15 "RI" > 16 "CT" > 21 "NY" > 22 "NJ" > 23 "PA" > 31 "OH" > 32 "IN" > 33 "IL" > 34 "MI" > 35 "WI" > 41 "MN" > 42 "IA" > 43 "MO" > 44 "ND" > 45 "SD" > ; . * penatvty: 2007-; . label values penatvty penatvty; . label define penatvty > 57 "United States" > 60 "American Samoa" > 66 "Guam" > 73 "Puerto Rico" > 78 "U.S. Virgin Islands" > 96 "U.S. Outlying Area" > 100 "Albania" > 102 "Austria" > 103 "Belgium" > 104 "Bulgaria" > 105 "Czechoslovakia" > 106 "Denmark" > 108 "Finland" > 109 "France" > 110 "Germany" > 116 "Greece" > 117 "Hungary" > 119 "Ireland/Eire" > 120 "Italy" > 126 "Holland/Netherlands" > 127 "Norway" > 128 "Poland" > 129 "Portugal" > 130 "Azores" > 132 "Romania" > 134 "Spain" > 136 "Sweden" > 137 "Switzerland" > 138 "United Kingdom/Great Britain" > 139 "England" > 140 "Scotland" > 141 "Wales" > 142 "Northern Ireland" > 147 "Yugoslavia" > 148 "Czech Republic" > 149 "Slovakia" > 150 "Bosnia & Herzegovina" > 151 "Croatia" > 152 "Macedonia" > 154 "Serbia" > 156 "Latvia" > 157 "Lithuania" > 158 "Armenia" > 159 "Azerbaijan" > 160 "Belarus" > 161 "Georgia" > 162 "Moldova" > 163 "Russia" > 164 "Ukraine" > 165 "USSR" > 166 "Europe, not specified" > 167 "Kosovo" > 200 "Afghanistan" > 202 "Bangladesh" > 205 "Myanmar (Burma)" > 206 "Cambodia" > 207 "China" > 208 "Cyprus" > 209 "Hong Kong" > 210 "India" > 211 "Indonesia" > 212 "Iran" > 213 "Iraq" > 214 "Israel" > 215 "Japan" > 216 "Jordan" > 217 "Korea" > 220 "South Korea" > 222 "Kuwait" > 223 "Laos" > 224 "Lebanon" > 226 "Malaysia" > 229 "Nepal" > 231 "Pakistan" > 233 "Philippines" > 235 "Saudi Arabia" > 236 "Singapore" > 238 "Sri Lanka" > 239 "Syria" > 240 "Taiwan" > 242 "Thailand" > 243 "Turkey" > 246 "Uzbekistan" > 247 "Vietnam" > 248 "Yemen" > 249 "Asia, not specified" > 300 "Bermuda" > 301 "Canada" > 303 "Mexico" > 310 "Belize" > 311 "Costa Rica" > 312 "El Salvador" > 313 "Guatemala" > 314 "Honduras" > 315 "Nicaragua" > 316 "Panama" > 318 "Central America" > 321 "Antigua and Barbuda" > 323 "Bahamas" > 324 "Barbados" > 327 "Cuba" > 328 "Dominica" > 329 "Dominican Republic" > 330 "Grenada" > 332 "Haiti" > 333 "Jamaica" > 338 "St. Kitts-Nevis" > 339 "St. Lucia" > 340 "St. Vincent and the Grenadines" > 341 "Trinidad and Tobago" > 343 "West Indes, not specified" > 360 "Argentina" > 361 "Bolivia" > 362 "Brazil" > 363 "Chile" > 364 "Colombia" > 365 "Ecuador" > 368 "Guyana" > 369 "Paraguay" > 370 "Peru" > 372 "Uruguay" > 373 "Venezuela" > 374 "South America, not specified" > 399 "Americas, not specified" > 400 "Algeria" > 407 "Cameroon" > 408 "Cape Verde" > 414 "Egypt" > 416 "Ethiopia" > 417 "Eritrea" > 421 "Ghana" > 427 "Kenya" > 429 "Liberia" > 436 "Morocco" > 440 "Nigeria" > 444 "Senegal" > 447 "Sierra Leone" > 448 "Somalia" > 449 "South Africa" > 451 "Sudan" > 453 "Tanzania" > 457 "Uganda" > 461 "Zimbabwe" > 462 "Africa, not specified" > 501 "Australia" > 508 "Fiji" > 515 "New Zealand" > 523 "Tonga" > 527 "Samoa" > 528 "Oceania, not specified" > 555 "Elsewhere" > ; . * pemntvty: 2007-; . label values pemntvty penatvty; . * pefntvty: 2007-; . label values pefntvty penatvty; . * prcitshp: 1994-; . label values prcitshp P16L; . label define P16L > 1 "Native, Born In US" > 2 "Native, Born in PR or US Outlying Area" > 3 "Native, Born Abroad Of US Parent(s)" > 4 "Foreign Born, US Cit By Naturalization" > 5 "Foreign Born, Not a US Citizen" > ; . * prcitflg: 1994-; . label values prcitflg P34L; . label define P34L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * meanings of last few codes of peinusyr change every year!!!; . * peinusyr: 2003-; . label values peinusyr P17L; . label define P17L > -1 "Not In Universe (Born In U.S.)" > 0 "Not Foreign Born" > 1 "Before 1950" > 2 "1950-1959" > 3 "1960-1964" > 4 "1965-1969" > 5 "1970-1974" > 6 "1975-1979" > 7 "1980-1981" > 8 "1982-1983" > 9 "1984-1985" > 10 "1986-1987" > 11 "1988-1989" > 12 "1990-1991" > 13 "1992-1995" > 14 "1994-1995" > 15 "1996-1997" > 16 "1998-1999" > 17 "2000-2001" > 18 "2002-2003" > 19 "2004-2005" > 20 "2006-2007" > 21 "2008-2009" > 22 "2010-2012" > ; . * paidhre: 1979-; . label values paidhre P18L; . label define P18L > 1 "Yes" > 2 "No" > ; . * I25a: 1979-; . label values I25a P28L; . label define P28L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * I25b: 1979-; . label values I25b P29L; . label define P29L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * I25c: 1996-; . label values I25c I25c; . label define I25c > 0 "No Components Allocated" > 1 "1 or more components Allocated" > ; . * I25d: 1996-; . label values I25d I25d; . label define I25d > 0 "No Components Allocated" > 1 "1 or more components Allocated" > ; . * class94: 1994-; . label values class94 P19L; . label define P19L > 1 "Government - Federal" > 2 "Government - State" > 3 "Government - Local" > 4 "Private, For Profit" > 5 "Private, Nonprofit" > 6 "Self-Employed, Incorporated" > 7 "Self-Employed, Unincorporated" > 8 "Without Pay" > ; . * lfsr94: 1994-; . label values lfsr94 P20L; . label define P20L > 1 "Employed-At Work" > 2 "Employed-Absent" > 3 "Unemployed-On Layoff" > 4 "Unemployed-Looking" > 5 "Retired-Not In Labor Force" > 6 "Disabled-Not In Labor Force" > 7 "Other-Not In Labor Force" > ; . * ind02: 2000-; . label values ind02 ind02; . label define ind02 > 170 "Crop production (111)" > 180 "Animal production (112)" > 190 "Forestry except logging (1131, 1132)" > 270 "Logging (1133)" > 280 "Fishing, hunting, and trapping (114)" > 290 "Support activities for agriculture and forestry (115)" > 370 "Oil and gas extraction (211)" > 380 "Coal mining (2121)" > 390 "Metal ore mining (2122)" > 470 "Nonmetallic mineral mining and quarrying (2123)" > 480 "Not specified type of mining (Part of 21)" > 490 "Support activities for mining (213)" > 570 "Electric power generation, transmission and distribution (Pt. 2211)" > 580 "Natural gas distribution (Pt.s2212)" > 590 "Electric and gas, and other combinations (Pts. 2211, 2212)" > 670 "Water, steam, air-conditioning, and irrigation systems (22131, 22133)" > 680 "Sewage treatment facilities (22132)" > 690 "Not specified utilities (Part of 22)" > 770 "** Construction (23)" > 1070 "Animal food, grain and oilseed milling (3111, 3112)" > 1080 "Sugar and confectionery products (3113)" > 1090 "Fruit and vegetable preserving and specialty food manufacturing (3114)" > 1170 "Dairy product manufacturing (3115)" > 1180 "Animal slaughtering and processing (3116)" > 1190 "Retail bakeries (311811)" > 1270 "Bakeries, except retail (3118 exc. 311811)" > 1280 "Seafood and other miscellaneous foods, n.e.c. (3117, 3119)" > 1290 "Not specified food industries (Part of 311)" > 1370 "Beverage manufacturing (3121)" > 1390 "Tobacco manufacturing (3122)" > 1470 "Fiber, yarn, and thread mills (3131)" > 1480 "Fabric mills, except knitting (3132 exc. 31324)" > 1490 "Textile and fabric finishing and coating mills (3133)" > 1570 "Carpet and rug mills (31411)" > 1590 "Textile product mills, except carpets and rugs (314 exc. 31411)" > 1670 "Knitting mills (31324, 3151)" > 1680 "Cut and sew apparel manufacturing (3152)" > 1690 "Apparel accessories and other apparel manufacturing (3159)" > 1770 "Footwear manufacturing (3162)" > 1790 "Leather tanning and products, except footwear manufacturing (3161, 3169)" > 1870 "Pulp, paper, and paperboard mills (3221)" > 1880 "Paperboard containers and boxes (32221)" > 1890 "Miscellaneous paper and pulp products (32222,32223, 32229)" > 1990 "Printing and related support activities (3231)" > 2070 "Petroleum refining (32411)" > 2090 "Miscellaneous petroleum and coal products (32419)" > 2170 "Resin, synthetic rubber and fibers, and filaments manufacturing (3252)" > 2180 "Agricultural chemical manufacturing (3253)" > 2190 "Pharmaceutical and medicine manufacturing (3254)" > 2270 "Paint, coating, and adhesive manufacturing B46 (3255)" > 2280 "Soap, cleaning compound, and cosmetics manufacturing (3256)" > 2290 "Industrial and miscellaneous chemicals (3251, 3259)" > 2370 "Plastics product manufacturing (3261)" > 2380 "Tire manufacturing (32621)" > 2390 "Rubber products, except tires, manufacturing (32622, 32629)" > 2470 "Pottery, ceramics, and related products manufacturing (32711)" > 2480 "Structural clay product manufacturing (32712)" > 2490 "Glass and glass product manufacturing (3272)" > 2570 "Cement, concrete, lime, and gypsum product manufacturing (3273, 3274)" > 2590 "Miscellaneous nonmetallic mineral product manufacturing (3279)" > 2670 "Iron and steel mills and steel product manufacturing (3311, 3312)" > 2680 "Aluminum production and processing (3313)" > 2690 "Nonferrous metal, except aluminum, production and processing (3314)" > 2770 "Foundries (3315)" > 2780 "Metal forgings and stampings (3321)" > 2790 "Cutlery and hand tool manufacturing (3322)" > 2870 "Structural metals, and tank and shipping container manufacturing (3323, 3324)" > 2880 "Machine shops; turned product; screw, nut and bolt manufacturing (3327)" > 2890 "Coating, engraving, heat treating and allied activities (3328)" > 2970 "Ordnance (332992 to 332995)" > 2980 "Miscellaneous fabricated metal products manufacturing (3325, 3326, 3329 exc. 332992, 3 > 32993, 332994, 332995)" > 2990 "Not specified metal industries (Part of 331 and 332)" > 3070 "Agricultural implement manufacturing (33311)" > 3080 "Construction, mining and oil field machinery manufacturing (33312, 33313)" > 3090 "Commercial and service industry machinery manufacturing (3333)" > 3170 "Metalworking machinery manufacturing (3335)" > 3180 "Engines, turbines, and power transmission equipment manufacturing (3336)" > 3190 "Machinery manufacturing, n.e.c. (3332, 3334, 3339)" > 3290 "Not specified machinery manufacturing (Part of 333)" > 3360 "Computer and peripheral equipment manufacturing (3341)" > 3370 "Communications, audio, and video equipment manufacturing (3342, 3343)" > 3380 "Navigational, measuring, electromedical, and control instruments manufacturing (3345)" > 3390 "Electronic component and product manufacturing, n.e.c. (3344, 3346)" > 3470 "Household appliance manufacturing (3352)" > 3490 "Electrical lighting, equipment, and supplies manufacturing, n.e.c. (3351, 3353, 3359)" > 3570 "Motor vehicles and motor vehicle equipment manufacturing (3361, 3362, 3363)" > 3580 "Aircraft and parts manufacturing (336411 to 336413)" > 3590 "Aerospace products and parts manufacturing (336414, 336415, 336419)" > 3670 "Railroad rolling stock manufacturing (3365)" > 3680 "Ship and boat building (3366)" > 3690 "Other transportation equipment manufacturing (3369)" > 3770 "Sawmills and wood preservation (3211)" > 3780 "Veneer, plywood, and engineered wood products (3212)" > 3790 "Prefabricated wood buildings and mobile homes (321991, 321992)" > 3870 "Miscellaneous wood products (3219 exc. 321991, 321992)" > 3890 "Furniture and related product manufacturing (337)" > 3960 "Medical equipment and supplies manufacturing (3391)" > 3970 "Toys, amusement, and sporting goods manufacturing (33992, 33993)" > 3980 "Miscellaneous manufacturing, n.e.c. (3399 exc. 33992, 33993)" > 3990 "Not specified manufacturing industries (Part of 31, 32, 33)" > 4070 "** Motor vehicles, parts and supplies, merchant wholesalers (*4231)" > 4080 "** Furniture and home furnishing, merchant wholesalers (*4232)" > 4090 "** Lumber and other construction materials, merchant wholesalers (*4233)" > 4170 "** Professional and commercial equipment and supplies, merchant wholesalers (*4234)" > 4180 "** Metals and minerals, except petroleum, merchant wholesalers (*4235)" > 4190 "** Electrical goods, merchant wholesalers (*4236)" > 4260 "** Hardware, plumbing and heating equipment, and supplies, merchant wholesalers (*4237 > )" > 4270 "** Machinery, equipment, and supplies, merchant wholesalers (*4238)" > 4280 "** Recyclable material, merchant wholesalers (*42393)" > 4290 "** Miscellaneous durable goods, merchant wholesalers (*4239 exc. 42393)" > 4370 "** Paper and paper products, merchant wholesalers (*4241)" > 4380 "** Drugs, sundries, and chemical and allied products, merchant (wholesalerss*4242, 424 > 6)" > 4390 "** Apparel, fabrics, and notions, merchant wholesalers (*4243)" > 4470 "** Groceries and related products, merchant wholesalers (*4244)" > 4480 "** Farm product raw materials, merchant wholesalers (*4245)" > 4490 "** Petroleum and petroleum products, merchant wholesalers (*4247)" > 4560 "** Alcoholic beverages, merchant wholesalers (*4248)" > 4570 "** Farm supplies, merchant wholesalers (*42491)" > 4580 "** Miscellaneous (nondurable goods, merchant wholesalerss*4249 exc. 42491)" > 4585 "*** Wholesale electronic markets, agents and brokers New industry (*4251)" > 4590 "**Not specified wholesale trade (Part of 42)" > 4670 "Automobile dealers (4411)" > 4680 "Other motor vehicle dealers (4412)" > 4690 "Auto parts, accessories, and tire stores (4413)" > 4770 "Furniture and home furnishings stores (442)" > 4780 "Household appliance stores (443111)" > 4790 "Radio, TV, and computer stores (443112, 44312)" > 4870 "Building material and supplies dealers (4441 exc. 44413)" > 4880 "Hardware stores (44413)" > 4890 "Lawn and garden equipment and supplies stores (4442)" > 4970 "Grocery stores (4451)" > 4980 "Specialty food stores (4452)" > 4990 "Beer, wine, and liquor stores (4453)" > 5070 "Pharmacies and drug stores (44611)" > 5080 "Health and personal care, except drug, stores (446 exc. 44611)" > 5090 "Gasoline stations (447)" > 5170 "Clothing and accessories, except shoe, stores (448 exc. 44821, 4483)" > 5180 "Shoe stores (44821)" > 5190 "Jewelry, luggage, and leather goods stores (4483)" > 5270 "Sporting goods, camera, and hobby and toy stores (44313, 45111, 45112)" > 5280 "Sewing, needlework, and piece goods stores (45113)" > 5290 "Music stores (45114, 45122)" > 5370 "Book stores and news dealers (45121)" > 5380 "****Department stores and discount stores (s45211)" > 5390 "Miscellaneous general merchandise stores (4529)" > 5470 "Retail florists (4531)" > 5480 "Office supplies and stationery stores (45321)" > 5490 "Used merchandise stores (4533)" > 5570 "Gift, novelty, and souvenir shops (45322)" > 5580 "Miscellaneous retail stores (4539)" > 5590 "*** Electronic shopping (New industry *454111)" > 5591 "*** Electronic auctions (New industrys*454112)" > 5592 "** Mail order houses (*454113)" > 5670 "Vending machine operators (4542)" > 5680 "Fuel dealers (45431)" > 5690 "Other direct selling establishments (45439)" > 5790 "Not specified retail trade (Part of 44, 45)" > 6070 "Air transportation (481)" > 6080 "Rail transportation (482)" > 6090 "Water transportation (483)" > 6170 "Truck transportation (484)" > 6180 "Bus service and urban transit (4851, 4852, 4854, 4855, 4859)" > 6190 "Taxi and limousine service (4853)" > 6270 "Pipeline transportation (486)" > 6280 "Scenic and sightseeing transportation (487)" > 6290 "Services incidental to transportation (488)" > 6370 "Postal Service (491)" > 6380 "Couriers and messengers (492)" > 6390 "Warehousing and storage (493)" > 6470 "**Newspaper publishers (51111)" > 6480 "**Publishing, except newspapers and software (5111 exc. 51111)" > 6490 "Software publishing (5112)" > 6570 "Motion pictures and video industries (5121)" > 6590 "Sound recording industries (5122)" > 6670 "Radio and television broadcasting and cable (5151, 5152, 5175)" > 6672 "Internet publishing and broadcasting and web search portals (51913)" > 6675 "*** Internet publishing and broadcasting (New industrys*5161)" > 6680 "Wired telecommunications carriers (*5171)" > 6690 "Other telecommunications services (*517 exc. 5171, 5175)" > 6692 "*** Internet service providers New industry (*5181)" > 6695 "**** Data processing, hosting, and related services (*5182)" > 6770 "Libraries and archives (*51912)" > 6780 "Other information services (*5191 exc. 51912)" > 6870 "Banking and related activities (521, 52211,52219)" > 6880 "Savings institutions, including credit unions (52212, 52213)" > 6890 "Non-depository credit and related activities (5222, 5223)" > 6970 "Securities, commodities, funds, trusts, and other financial investments (523, 525)" > 6990 "Insurance carriers and related activities (524)" > 7070 "Real estate (531)" > 7080 "Automotive equipment rental and leasing (5321)" > 7170 "Video tape and disk rental (53223)" > 7180 "Other consumer goods rental (53221, 53222, 53229, 5323)" > 7190 "Commercial, industrial, and other intangible assets rental and leasing (5324, 533)" > 7270 "Legal services (5411)" > 7280 "Accounting, tax preparation, bookkeeping, and payroll services (5412)" > 7290 "Architectural, engineering, and related services (5413)" > 7370 "Specialized design services (5414)" > 7380 "Computer systems design and related services (5415)" > 7390 "Management, scientific, and technical consulting services (5416)" > 7460 "Scientific research and development services (5417)" > 7470 "Advertising and related services (5418)" > 7480 "Veterinary services (54194)" > 7490 "Other professional, scientific, and technical services (5419 exc. 54194)" > 7570 "Management of companies and enterprises (551)" > 7580 "Employment services (5613)" > 7590 "Business support services (5614)" > 7670 "Travel arrangements and reservation services (5615)" > 7680 "Investigation and security services (5616)" > 7690 "** Services to buildings and dwellings (5617 exc. 56173)" > 7770 "Landscaping services (56173)" > 7780 "Other administrative and other support services (5611, 5612, 5619)" > 7790 "Waste management and remediation services (562)" > 7860 "Elementary and secondary schools (6111)" > 7870 "Colleges and universities, including junior colleges (6112, 6113)" > 7880 "Business, technical, and trade schools and training (6114, 6115)" > 7890 "Other schools, instruction, and educational services (6116, 6117)" > 7970 "Offices of physicians (6211)" > 7980 "Offices of dentists (6212)" > 7990 "Offices of chiropractors (62131)" > 8070 "Offices of optometrists (62132)" > 8080 "Offices of other health practitioners (6213 exc. 62131, 62132)" > 8090 "Outpatient care centers (6214)" > 8170 "Home health care services (6216)" > 8180 "Other health care services (6215, 6219)" > 8190 "Hospitals (622)" > 8270 "Nursing care facilities (6231)" > 8290 "Residential care facilities, without nursing (6232, 6233, 6239)" > 8370 "Individual and family services (6241)" > 8380 "Community food and housing, and emergency services (6242)" > 8390 "Vocational rehabilitation services (6243)" > 8470 "Child day care services (6244)" > 8560 "Independent artists, performing arts, spectator sports, and related industries (711)" > 8570 "Museums, art galleries, historical sites, and similar institutions (712)" > 8580 "Bowling centers (71395)" > 8590 "Other amusement, gambling, and recreation industries (713 exc. 71395)" > 8660 "Traveler accommodation (7211)" > 8670 "Recreational vehicle parks and camps, and rooming and boarding houses (7212, 7213)" > 8680 "Restaurants and other food services (722 exc. 7224)" > 8690 "Drinking places, alcoholic beverages (7224)" > 8770 "Automotive repair and maintenance (8111 exc. 811192)" > 8780 "Car washes (811192)" > 8790 "Electronic and precision equipment repair and maintenance (8112)" > 8870 "Commercial and industrial machinery and equipment repair and maintenance (8113)" > 8880 "Personal and household goods repair and maintenance (8114 exc. 81143)" > 8890 "Footwear and leather goods repair (81143)" > 8970 "Barber shops (812111)" > 8980 "Beauty salons (812112)" > 8990 "Nail salons and other personal care services (812113, 81219)" > 9070 "Drycleaning and laundry services (8123)" > 9080 "Funeral homes, cemeteries, and crematories (8122)" > 9090 "Other personal services (8129)" > 9160 "Religious organizations (8131)" > 9170 "Civic, social, advocacy organizations, and grantmaking and giving services (8132, 8133 > , 8134)" > 9180 "Labor unions (81393)" > 9190 "Business, professional, political, and similar organizations (8139 exc. 81393)" > 9290 "Private households (814)" > 9370 "Executive offices and legislative bodies (92111, 92112, 92114, pt. 92115)" > 9380 "Public finance activities (92113)" > 9390 "Other general government and support (92119)" > 9470 "Justice, public order, and safety activities (922, pt. 92115)" > 9480 "Administration of human resource programs (923)" > 9490 "Administration of environmental quality and housing programs (924, 925)" > 9570 "Administration of economic programs and space research (926, 927)" > 9590 "National security and international affairs (928)" > 9890 "Armed Forces" > 9970 "Problem referral" > 9990 "Uncodable ((Includes Refused or reported Classified))" > 9670 "U. S. Army" > 9680 "U. S. Air Force" > 9690 "U. S. Navy" > 9770 "U. S. Marines" > 9780 "U. S. Coast Guard" > 9790 "U. S. Armed Forces, Branch Not Specified" > 9870 "Military Reserves or National Guard" > ; . *dind02: 2000-; . label values dind02 dind02; . label define dind02 > 1 "Agriculture" > 2 "Forestry, logging, fishing, hunting, and trapping" > 3 "Mining" > 4 "Construction" > 5 "Nonmetallic mineral products" > 6 "Primary metals and fabricated metal products" > 7 "Machinery manufacturing" > 8 "Computer and electronic products" > 9 "Electrical equipment, appliance manufacturing" > 10 "Transportation equipment manufacturing" > 11 "Wood products" > 12 "Furniture and fixtures manufacturing" > 13 "Miscellaneous and not specified manufacturing" > 14 "Food manufacturing" > 15 "Beverage and tobacco products" > 16 "Textile, apparel, and leather manufacturing" > 17 "Paper and printing" > 18 "Petroleum and coal products" > 19 "Chemical manufacturing" > 20 "Plastics and rubber products" > 21 "Wholesale trade" > 22 "Retail trade" > 23 "Transportation and warehousing" > 24 "Utilities" > 25 "Publishing industries (except internet)" > 26 "Motion picture and sound recording industries" > 27 "Broadcasting (except internet)" > 28 "Internet publishing and broadcasting" > 29 "Telecommunications" > 30 "Internet service providers and data processing services" > 31 "Other information services" > 32 "Finance" > 33 "Insurance" > 34 "Real Estate" > 35 "Rental and leasing services" > 36 "Professional and Technical services" > 37 "Management of companies and enterprises" > 38 "Administrative and support services" > 39 "Waste management and remediation services" > 40 "Educational services" > 41 "Hospitals" > 42 "Health care services , except hospitals" > 43 "Social assistance" > 44 "Arts, entertainment, and recreation" > 45 "Accomodation" > 46 "Food services and drinking places" > 47 "Repair and maintenance" > 48 "Personal and laundry services" > 49 "Membership associations and organizations" > 50 "Private households" > 51 "Public Administration" > 52 "Armed forces" > ; . * occ2011: 2011-; . *label values occ2011 occ2011l ; . *label define occ2011l > 10 "Chief executives 11-1011" > 20 "General and operations managers 11-1021" > 30 "Legislators 11-1031" > 40 "Advertising and promotions managers 11-2011" > 50 "Marketing and sales managers 11-2020" > 60 "Public relations managers 11-2031" > 100 "Administrative services managers 11-3011" > 110 "Computer and information systems managers 11-3021" > 120 "Financial managers 11-3031" > 135 "Compensation and benefits managers 11-3111" > 136 "Human Resources Managers 11-3121" > 137 "Training and Development Managers 11-3131" > 140 "Industrial production managers 11-3051" > 150 "Purchasing managers 11-3061" > 160 "Transportation, storage, and distribution managers 11-3071" > 205 "Farmers, Ranchers, and other Agricultural Managers 11-9013" > 220 "Construction managers 11-9021" > 230 "Education administrators 11-9030" > 300 "Engineering managers 11-9041" > 310 "Food service managers 11-9051" > 325 "Funeral Service Managers 11-9061" > 330 "Gaming managers 11-9071" > 340 "Lodging managers 11-9081" > 350 "Medical and health services managers 11-9111" > 360 "Natural sciences managers 11-9121" > 400 "Postmasters and mail superintendents 11-9131" > 410 "Property, real estate, and community association managers 11-9141" > 420 "Social and community service managers 11-9151" > 425 "Emergency Management Directors 11-9161" > 430 "Managers, all other 11-9199" > 500 "Agents and business managers of artists, performers, and athletes 13-1011" > 510 "Purchasing agents and buyers, farm products 13-1021" > 520 "Wholesale and retail buyers, except farm products 13-1022" > 530 "Purchasing agents, except wholesale, retail, and farm products 13-1023" > 540 "Claims adjusters, appraisers, examiners, and investigators 13-1030" > 565 "Compliance Officers 13-1041" > 600 "Cost estimators 13-1051" > 630 "Human resources workers 13-1070" > 640 "Compensation, benefits, and job analysis specialists 13-1141" > 650 "Training and development specialists 13-1151" > 700 "Logisticians 13-1081" > 710 "Management analysts 13-1111" > 725 "Meeting, convention, and event planners 13-1121" > 726 "Fundraisers 13-1131" > 735 "Market research analysts and marketing specialists 13-1161" > 740 "Business operations specialists, all other 13-1199" > 800 "Accountants and auditors 13-2011" > 810 "Appraisers and assessors of real estate 13-2021" > 820 "Budget analysts 13-2031" > 830 "Credit analysts 13-2041" > 840 "Financial analysts 13-2051" > 850 "Personal financial advisors 13-2052" > 860 "Insurance underwriters 13-2053" > 900 "Financial examiners 13-2061" > 910 "Loan counselors and officers 13-2070" > 930 "Tax examiners, collectors, and revenue agents 13-2081" > 940 "Tax preparers 13-2082" > 950 "Financial specialists, all other 13-2099" > 1000 "Computer scientists and systems analysts 15-10XX" > 1005 "Computer and information research scientists 15-1111" > 1006 "Computer systems analysts 15-1121" > 1007 "Information security analysts 15-1122" > 1010 "Computer programmers 15-1131" > 1020 "Software developers, applications and systems software 15-113X" > 1030 "Web developers 15-1134" > 1050 "Computer support specialists 15-1150" > 1060 "Database administrators 15-1141" > 1105 "Network and computer systems administrators 15-1142" > 1106 "Computer network architects 15-1143" > 1107 "Computer occupations, all other 15-1199" > 1200 "Actuaries 15-2011" > 1210 "Mathematicians 15-2021" > 1220 "Operations research analysts 15-2031" > 1230 "Statisticians 15-2041" > 1240 "Miscellaneous mathematical science occupations 15-2090" > 1300 "Architects, except naval 17-1010" > 1310 "Surveyors, cartographers, and photogrammetrists 17-1020" > 1320 "Aerospace engineers 17-2011" > 1330 "Agricultural engineers 17-2021" > 1340 "Biomedical engineers 17-2031" > 1350 "Chemical engineers 17-2041" > 1360 "Civil engineers 17-2051" > 1400 "Computer hardware engineers 17-2061" > 1410 "Electrical and electronic engineers 17-2070" > 1420 "Environmental engineers 17-2081" > 1430 "Industrial engineers, including health and safety 17-2110" > 1440 "Marine engineers and naval architects 17-2121" > 1450 "Materials engineers 17-2131" > 1460 "Mechanical engineers 17-2141" > 1500 "Mining and geological engineers, including mining safety engineers 17-2151" > 1510 "Nuclear engineers 17-2161" > 1520 "Petroleum engineers 17-2171" > 1530 "Engineers, all other 17-2199" > 1540 "Drafters 17-3010" > 1550 "Engineering technicians, except drafters 17-3020" > 1560 "Surveying and mapping technicians 17-3031" > 1600 "Agricultural and food scientists 19-1010" > 1610 "Biological scientists 19-1020" > 1640 "Conservation scientists and foresters 19-1030" > 1650 "Medical scientists 19-1040" > 1660 "Life Scientists, all other 16-1099" > 1700 "Astronomers and physicists 19-2010" > 1710 "Atmospheric and space scientists 19-2021" > 1720 "Chemists and materials scientists 19-2030" > 1740 "Environmental scientists and geoscientists 19-2040" > 1760 "Physical scientists, all other 19-2099" > 1800 "Economists 19-3011" > 1815 "Survey Researchers 19-3022" > 1820 "Psychologists 19-3030" > 1830 "Sociologists 19-3041" > 1840 "Urban and regional planners 19-3051" > 1860 "Miscellaneous social scientists and related workers 19-3090" > 1900 "Agricultural and food science technicians 19-4011" > 1910 "Biological technicians 19-4021" > 1920 "Chemical technicians 19-4031" > 1930 "Geological and petroleum technicians 19-4041" > 1940 "Nuclear technicians 19-4051" > 1950 "Social science research assistants 19-4061" > 1965 "Miscellaneous life, physical, and social science technicians 19-4090" > 2000 "Counselors 21-1010" > 2010 "Social workers 21-1020" > 2015 "Probation Officers and Correctional Treatment Specialists 21-1092" > 2016 "Social and Human Service Assistants 21-1093" > 2025 "Miscellaneous community and social service specialists, 21-109X" > 2040 "Clergy 21-2011" > 2050 "Directors, religious activities and education 21-2021" > 2060 "Religious workers, all other 21-2099" > 2100 "Lawyers, Judges, magistrates, and other judicial workers 23-1011" > 2105 "Judicial Law Clerks 23-1012" > 2110 "Judges, Magistrates, and Other Judicial Workers 23-1020" > 2145 "Paralegals and Legal Assistants 23-2011" > 2160 "Miscellaneous Legal Support Workers 23-2090" > 2200 "Postsecondary teachers 25-1000" > 2300 "Preschool and kindergarten teachers 25-2010" > 2310 "Elementary and middle school teachers 25-2020" > 2320 "Secondary school teachers 25-2030" > 2330 "Special education teachers 25-2050" > 2340 "Other teachers and instructors 25-3000" > 2400 "Archivists, curators, and museum technicians 25-4010" > 2430 "Librarians 25-4021" > 2440 "Library technicians 25-4031" > 2540 "Teacher assistants 25-9041" > 2550 "Other education, training, and library workers 25-90XX" > 2600 "Artists and related workers 27-1010" > 2630 "Designers 27-1020" > 2700 "Actors 27-2011" > 2710 "Producers and directors 27-2012" > 2720 "Athletes, coaches, umpires, and related workers 27-2020" > 2740 "Dancers and choreographers 27-2030" > 2750 "Musicians, singers, and related workers 27-2040" > 2760 "Entertainers and performers, sports and related workers, all other 27-2099" > 2800 "Announcers 27-3010" > 2810 "News analysts, reporters and correspondents 27-3020" > 2825 "Public Relations Specialists 27-3031" > 2830 "Editors 27-3041" > 2840 "Technical writers 27-3042" > 2850 "Writers and authors 27-3043" > 2860 "Miscellaneous media and communication workers 27-3090" > 2900 "Broadcast and sound engineering technicians and radio operators 27-4010" > 2910 "Photographers 27-4021" > 2920 "Television, video, and motion picture camera operators and editors 27-4030" > 2960 "Media and communication equipment workers, all other 27-4099" > 3000 "Chiropractors 29-1011" > 3010 "Dentists 29-1020" > 3030 "Dietitians and nutritionists 29-1031" > 3040 "Optometrists 29-1041" > 3050 "Pharmacists 29-1051" > 3060 "Physicians and surgeons 29-1060" > 3110 "Physician assistants 29-1071" > 3120 "Podiatrists 29-1081" > 3140 "Audiologists 29-1181" > 3150 "Occupational therapists 29-1122" > 3160 "Physical therapists 29-1123" > 3200 "Radiation therapists 29-1124" > 3210 "Recreational therapists 29-1125" > 3220 "Respiratory therapists 29-1126" > 3230 "Speech-language pathologists 29-1127" > 3235 "Exercise Physiologists 29-1128" > 3245 "Therapists, all other 29-1129" > 3250 "Veterinarians 29-1131" > 3255 "Registered Nurses 29-1141" > 3256 "Nurse Anesthetists 29-1151" > 3257 "Nurse Midwives 29-1161" > 3258 "Nurse Practitioners 29-1171" > 3260 "Health diagnosing and treating practitioners, all other 29-1199" > 3300 "Clinical laboratory technologists and technicians 29-2010" > 3310 "Dental hygienists 29-2021" > 3320 "Diagnostic related technologists and technicians 29-2030" > 3400 "Emergency medical technicians and paramedics 29-2041" > 3420 "Health Practitioner Support Technologists and Technicians 29-2050" > 3500 "Licensed practical and licensed vocational nurses 29-2061" > 3510 "Medical records and health information technicians 29-2071" > 3520 "Opticians, dispensing 29-2081" > 3535 "Miscellaneous Health Technologists and Technicians 29-2090" > 3540 "Other healthcare practitioners and technical occupations 29-9000" > 3600 "Nursing, psychiatric, and home health aides 31-1010" > 3610 "Occupational therapist assistants and aides 31-2010" > 3620 "Physical therapist assistants and aides 31-2020" > 3630 "Massage therapists 31-9011" > 3640 "Dental assistants 31-9091" > 3645 "Medical Assistants 31-9092" > 3646 "Medical Transcriptionists 31-9094" > 3647 "Pharmacy Aides 31-9095" > 3648 "Veterinary Assistants and Laboratory Animal Caretakers 31-9096" > 3649 "Phlebotomists 31-9097" > 3655 "Miscellaneous Healthcare Support Occupations, Including 31-909X" > 3700 "First-line supervisors/managers of correctional officers 33-1011" > 3710 "First-line supervisors/managers of police and detectives 33-1012" > 3720 "First-line supervisors/managers of fire fighting and prevention workers 33-1021" > 3730 "Supervisors, protective service workers, all other 33-1099" > 3740 "Fire fighters 33-2011" > 3750 "Fire inspectors 33-2020" > 3800 "Bailiffs, correctional officers, and jailers 33-3010" > 3820 "Detectives and criminal investigators 33-3021" > 3830 "Fish and game wardens 33-3031" > 3840 "Parking enforcement workers 33-3041" > 3850 "Police and sheriff's patrol officers 33-3051" > 3860 "Transit and railroad police 33-3052" > 3900 "Animal control workers 33-9011" > 3910 "Private detectives and investigators 33-9021" > 3930 "Security Guards and Gaming Surveillance Officers 33-9030" > 3940 "Crossing guards 33-9091" > 3945 "Transportation Security Screeners 33-9093" > 3955 "Lifeguards and Other Recreational, and all Other Protective Service Workers 33-909X" > 4000 "Chefs and head cooks 35-1011" > 4010 "First-line supervisors/managers of food preparation and serving workers 35-1012" > 4020 "Cooks 35-2010" > 4030 "Food preparation workers 35-2021" > 4040 "Bartenders 35-3011" > 4050 "Combined food preparation and serving workers, including fast food 35-3021" > 4060 "Counter attendants, cafeteria, food concession, and coffee shop 35-3022" > 4110 "Waiters and waitresses 35-3031" > 4120 "Food servers, nonrestaurant 35-3041" > 4130 "Dining room and cafeteria attendants and bartender helpers 35-9011" > 4140 "Dishwashers 35-9021" > 4150 "Hosts and hostesses, restaurant, lounge, and coffee shop 35-9031" > 4160 "Food preparation and serving related workers, all other 35-9099" > 4200 "First-line supervisors/managers of housekeeping and janitorial workers 37-1011" > 4210 "First-line supervisors/managers of landscaping, lawn service, and groundskeeping worke > rs 37-1012" > 4220 "Janitors and building cleaners 31-201X" > 4230 "Maids and housekeeping cleaners 37-2012" > 4240 "Pest control workers 37-2021" > 4250 "Grounds maintenance workers 37-3010" > 4300 "First-line supervisors/managers of gaming workers 39-1010" > 4320 "First-line supervisors/managers of personal service workers 39-1021" > 4340 "Animal trainers 39-2011" > 4350 "Nonfarm animal caretakers 39-2021" > 4400 "Gaming services workers 39-3010" > 4410 "Motion picture projectionists 39-3021" > 4420 "Ushers, lobby attendants, and ticket takers 39-3031" > 4430 "Miscellaneous entertainment attendants and related workers 39-3090" > 4460 "Funeral service workers 39-40XX" > 4465 "Morticians, Undertakers, and Funeral Directors 39-4031" > 4500 "Barbers 39-5011" > 4510 "Hairdressers, hairstylists, and cosmetologists 39-5012" > 4520 "Miscellaneous personal appearance workers 39-5090" > 4530 "Baggage porters, bellhops, and concierges 39-6010" > 4540 "Tour and travel guides 39-7010" > 4600 "Child care workers 39-9011" > 4610 "Personal and home care aides 39-9021" > 4620 "Recreation and fitness workers 39-9030" > 4640 "Residential advisors 39-9041" > 4650 "Personal care and service workers, all other 39-9099" > 4700 "First-line supervisors/managers of retail sales workers 41-1011" > 4710 "First-line supervisors/managers of non-retail sales workers 41-1012" > 4720 "Cashiers 41-2010" > 4740 "Counter and rental clerks 41-2021" > 4750 "Parts salespersons 41-2022" > 4760 "Retail salespersons 41-2031" > 4800 "Advertising sales agents 41-3011" > 4810 "Insurance sales agents 41-3021" > 4820 "Securities, commodities, and financial services sales agents 41-3031" > 4830 "Travel agents 41-3041" > 4840 "Sales representatives, services, all other 41-3099" > 4850 "Sales representatives, wholesale and manufacturing 41-4010" > 4900 "Models, demonstrators, and product promoters 41-9010" > 4920 "Real estate brokers and sales agents 41-9020" > 4930 "Sales engineers 41-9031" > 4940 "Telemarketers 41-9041" > 4950 "Door-to-door sales workers, news and street vendors, and related workers 41-9091" > 4965 "Sales and Related Workers, all other 41-9099" > 5000 "First-line supervisors/managers of office and administrative support workers 43-1011" > 5010 "Switchboard operators, including answering service 43-2011" > 5020 "Telephone operators 43-2021" > 5030 "Communications equipment operators, all other 43-2099" > 5100 "Bill and account collectors 43-3011" > 5110 "Billing and posting clerks and machine operators 43-3021" > 5120 "Bookkeeping, accounting, and auditing clerks 43-3031" > 5130 "Gaming cage workers 43-3041" > 5140 "Payroll and timekeeping clerks 43-3051" > 5150 "Procurement clerks 43-3061" > 5160 "Tellers 43-3071" > 5165 "Financial Clerks, all other 43-3099" > 5200 "Brokerage clerks 43-4011" > 5210 "Correspondence clerks 43-4021" > 5220 "Court, municipal, and license clerks 43-4031" > 5230 "Credit authorizers, checkers, and clerks 43-4041" > 5240 "Customer service representatives 43-4051" > 5250 "Eligibility interviewers, government programs 43-4061" > 5260 "File Clerks 43-4071" > 5300 "Hotel, motel, and resort desk clerks 43-4081" > 5310 "Interviewers, except eligibility and loan 43-4111" > 5320 "Library assistants, clerical 43-4121" > 5330 "Loan interviewers and clerks 43-4131" > 5340 "New accounts clerks 43-4141" > 5350 "Order clerks 43-4151" > 5360 "Human resources assistants, except payroll and timekeeping 43-4161" > 5400 "Receptionists and information clerks 43-4171" > 5410 "Reservation and transportation ticket agents and travel clerks 43-4181" > 5420 "Information and record clerks, all other 43-4199" > 5500 "Cargo and freight agents 43-5011" > 5510 "Couriers and messengers 43-5021" > 5520 "Dispatchers 43-5030" > 5530 "Meter readers, utilities 43-5041" > 5540 "Postal service clerks 43-5051" > 5550 "Postal service mail carriers 43-5052" > 5560 "Postal service mail sorters, processors, and processing machine operators 43-5053" > 5600 "Production, planning, and expediting clerks 43-5061" > 5610 "Shipping, receiving, and traffic clerks 43-5071" > 5620 "Stock clerks and order fillers 43-5081" > 5630 "Weighers, measurers, checkers, and samplers, recordkeeping 43-5111" > 5700 "Secretaries and administrative assistants 43-6010" > 5800 "Computer operators 43-9011" > 5810 "Data entry keyers 43-9021" > 5820 "Word processors and typists 43-9022" > 5830 "Desktop publishers 43-9031" > 5840 "Insurance claims and policy processing clerks 43-9041" > 5850 "Mail clerks and mail machine operators, except postal service 43-9051" > 5860 "Office clerks, general 43-9061" > 5900 "Office machine operators, except computer 43-9071" > 5910 "Proofreaders and copy markers 43-9081" > 5920 "Statistical assistants 43-9111" > 5940 "Office and Administrative Support Workers, all other 43-9199" > 6005 "First-line supervisors of farming, fishing, and forestry workers 45-1011" > 6010 "Agricultural inspectors 45-2011" > 6020 "Animal breeders 45-2021" > 6040 "Graders and sorters, agricultural products 45-2041" > 6050 "Miscellaneous agricultural workers 45-2090" > 6100 "Fishers and related fishing workers 45-3011" > 6110 "Hunters and trappers 45-3021" > 6120 "Forest and conservation workers 45-4011" > 6130 "Logging workers 45-4020" > 6200 "First-line supervisors/managers of construction trades and extraction workers 47-1011" > 6210 "Boilermakers 47-2011" > 6220 "Brickmasons, blockmasons, and stonemasons 47-2020" > 6230 "Carpenters 47-2031" > 6240 "Carpet, floor, and tile installers and finishers 47-2040" > 6250 "Cement masons, concrete finishers, and terrazzo workers 47-2050" > 6260 "Construction laborers 47-2061" > 6300 "Paving, surfacing, and tamping equipment operators 47-2071" > 6310 "Pile-driver operators 47-2072" > 6320 "Operating engineers and other construction equipment operators 47-2073" > 6330 "Drywall installers, ceiling tile installers, and tapers 47-2080" > 6355 "Electricians 47-2111" > 6360 "Glaziers 47-2121" > 6400 "Insulation workers 47-2130" > 6420 "Painters, construction and maintenance 47-2141" > 6430 "Paperhangers 47-2142" > 6440 "Pipelayers, plumbers, pipefitters, and steamfitters 47-2150" > 6460 "Plasterers and stucco masons 47-2161" > 6500 "Reinforcing iron and rebar workers 47-2171" > 6515 "Roofers 47-2181" > 6520 "Sheet metal workers 47-2211" > 6530 "Structural iron and steel workers 47-2221" > 6540 "Solar Photovoltaic Installers 47-2231" > 6600 "Helpers, construction trades 47-3010" > 6660 "Construction and building inspectors 47-4011" > 6700 "Elevator installers and repairers 47-4021" > 6710 "Fence erectors 47-4031" > 6720 "Hazardous materials removal workers 47-4041" > 6730 "Highway maintenance workers 47-4051" > 6740 "Rail-track laying and maintenance equipment operators 47-4061" > 6750 "Septic tank servicers and sewer pipe cleaners 47-4071" > 6765 "Miscellaneous construction and related workers 47-4090" > 6800 "Derrick, rotary drill, and service unit operators, oil, gas, and mining 47-5010" > 6820 "Earth drillers, except oil and gas 47-5021" > 6830 "Explosives workers, ordnance handling experts, and blasters 47-5031" > 6840 "Mining machine operators 47-5040" > 6910 "Roof bolters, mining 47-5061" > 6920 "Roustabouts, oil and gas 47-5071" > 6930 "Helpers--extraction workers 47-5081" > 6940 "Other extraction workers 47-50XX" > 7000 "First-line supervisors/managers of mechanics, installers, and repairers 49-1011" > 7010 "Computer, automated teller, and office machine repairers 49-2011" > 7020 "Radio and telecommunications equipment installers and repairers 49-2020" > 7030 "Avionics technicians 49-2091" > 7040 "Electric motor, power tool, and related repairers 49-2092" > 7050 "Electrical and electronics installers and repairers, transportation equipment 49-2093" > 7100 "Electrical and electronics repairers, industrial and utility 49-209X" > 7110 "Electronic equipment installers and repairers, motor vehicles 49-2096" > 7120 "Electronic home entertainment equipment installers and repairers 49-2097" > 7130 "Security and fire alarm systems installers 49-2098" > 7140 "Aircraft mechanics and service technicians 49-3011" > 7150 "Automotive body and related repairers 49-3021" > 7160 "Automotive glass installers and repairers 49-3022" > 7200 "Automotive service technicians and mechanics 49-3023" > 7210 "Bus and truck mechanics and diesel engine specialists 49-3031" > 7220 "Heavy vehicle and mobile equipment service technicians and mechanics 49-3040" > 7240 "Small engine mechanics 49-3050" > 7260 "Miscellaneous vehicle and mobile equipment mechanics, installers, and repairers 49-309 > 0" > 7300 "Control and valve installers and repairers 49-9010" > 7315 "Heating, air conditioning, and refrigeration mechanics and installers 49-9021" > 7320 "Home appliance repairers 49-9031" > 7330 "Industrial and refractory machinery mechanics 49-904X" > 7340 "Maintenance and repair workers, general 49-9071" > 7350 "Maintenance workers, machinery 49-9043" > 7360 "Millwrights 49-9044" > 7410 "Electrical power-line installers and repairers 49-9051" > 7420 "Telecommunications line installers and repairers 49-9052" > 7430 "Precision instrument and equipment repairers 49-9060" > 7440 "Wind Turbine Service Technicians 49-9081" > 7510 "Coin, vending, and amusement machine servicers and repairers 49-9091" > 7520 "Commercial divers 49-9092" > 7540 "Locksmiths and safe repairers 49-9094" > 7550 "Manufactured building and mobile home installers 49-9095" > 7560 "Riggers 49-9096" > 7600 "Signal and track switch repairers 49-9097" > 7610 "Helpers--installation, maintenance, and repair workers 49-9098" > 7630 "Other installation, maintenance, and repair workers 49-909X" > 7700 "First-line supervisors/managers of production and operating workers 51-1011" > 7710 "Aircraft structure, surfaces, rigging, and systems assemblers 51-2011" > 7720 "Electrical, electronics, and electromechanical assemblers 51-2020" > 7730 "Engine and other machine assemblers 51-2031" > 7740 "Structural metal fabricators and fitters 51-2041" > 7750 "Miscellaneous assemblers and fabricators 51-2090" > 7800 "Bakers 51-3011" > 7810 "Butchers and other meat, poultry, and fish processing workers 51-3020" > 7830 "Food and tobacco roasting, baking, and drying machine operators and tenders 51-3091" > 7840 "Food batchmakers 51-3092" > 7850 "Food cooking machine operators and tenders 51-3093" > 7855 "Food Processing Workers, all Other 51-3099" > 7900 "Computer control programmers and operators 51-4010" > 7920 "Extruding and drawing machine setters, operators, and tenders, metal and plastic 51-40 > 21" > 7930 "Forging machine setters, operators, and tenders, metal and plastic 51-4022" > 7940 "Rolling machine setters, operators, and tenders, metal and plastic 51-4023" > 7950 "Cutting, punching, and press machine setters, operators, and tenders, metal and plasti > c 51-4031" > 7960 "Drilling and boring machine tool setters, operators, and tenders, metal and plastic 51 > -4032" > 8000 "Grinding, lapping, polishing, and buffing machine tool setters, operators, and tenders > , metal and plastic 51-4033" > 8010 "Lathe and turning machine tool setters, operators, and tenders, metal and plastic 51-4 > 034" > 8020 "Milling and planing machine setters, operators, and tenders, metal and plastic 51-4035 > " > 8030 "Machinists 51-4041" > 8040 "Metal furnace and kiln operators and tenders 51-4050" > 8060 "Model makers and patternmakers, metal and plastic 51-4060" > 8100 "Molders and molding machine setters, operators, and tenders, metal and plastic 51-4070 > " > 8120 "Multiple machine tool setters, operators, and tenders, metal and plastic 51-4081" > 8130 "Tool and die makers 51-4111" > 8140 "Welding, soldering, and brazing workers 51-4120" > 8150 "Heat treating equipment setters, operators, and tenders, metal and plastic 51-4191" > 8160 "Lay-out workers, metal and plastic 51-4192" > 8200 "Plating and coating machine setters, operators, and tenders, metal and plastic 51-4193 > " > 8210 "Tool grinders, filers, and sharpeners 51-4194" > 8220 "Metalworkers and plastic workers, all other 51-4199" > 8250 "Prepress technicians and workers 51-5111" > 8255 "Printing Press Operators 51-5112" > 8256 "Print Binding and Finishing Workers 51-5113" > 8300 "Laundry and dry-cleaning workers 51-6011" > 8310 "Pressers, textile, garment, and related materials 51-6021" > 8320 "Sewing machine operators 51-6031" > 8330 "Shoe and leather workers and repairers 51-6041" > 8340 "Shoe machine operators and tenders 51-6042" > 8350 "Tailors, dressmakers, and sewers 51-6050" > 8360 "Textile bleaching and dyeing machine operators and tenders 51-6061" > 8400 "Textile cutting machine setters, operators, and tenders 51-6062" > 8410 "Textile knitting and weaving machine setters, operators, and tenders 51-6063" > 8420 "Textile winding, twisting, and drawing out machine setters, operators, and tenders 51- > 6064" > 8430 "Extruding and forming machine setters, operators, and tenders, synthetic and glass fib > ers 51-6091" > 8440 "Fabric and apparel patternmakers 51-6092" > 8450 "Upholsterers 51-6093" > 8460 "Textile, apparel, and furnishings workers, all other 51-6099" > 8500 "Cabinetmakers and bench carpenters 51-7011" > 8510 "Furniture finishers 51-7021" > 8520 "Model makers and patternmakers, wood 51-7030" > 8530 "Sawing machine setters, operators, and tenders, wood 51-7041" > 8540 "Woodworking machine setters, operators, and tenders, except sawing 51-7042" > 8550 "Woodworkers, all other 51-7099" > 8600 "Power plant operators, distributors, and dispatchers 51-8010" > 8610 "Stationary engineers and boiler operators 51-8021" > 8620 "Water and liquid waste treatment plant and system operators 51-8031" > 8630 "Miscellaneous plant and system operators 51-8090" > 8640 "Chemical processing machine setters, operators, and tenders 51-9010" > 8650 "Crushing, grinding, polishing, mixing, and blending workers 51-9020" > 8710 "Cutting workers 51-9030" > 8720 "Extruding, forming, pressing, and compacting machine setters, operators, and tenders 5 > 1-9041" > 8730 "Furnace, kiln, oven, drier, and kettle operators and tenders 51-9051" > 8740 "Inspectors, testers, sorters, samplers, and weighers 51-9061" > 8750 "Jewelers and precious stone and metal workers 51-9071" > 8760 "Medical, dental, and ophthalmic laboratory technicians 51-9080" > 8800 "Packaging and filling machine operators and tenders 51-9111" > 8810 "Painting workers 51-9120" > 8830 "Photographic process workers and processing machine operators 51-9151" > 8840 "Semiconductor processors 51-9141" > 8850 "Cementing and gluing machine operators and tenders 51-9191" > 8860 "Cleaning, washing, and metal pickling equipment operators and tenders 51-9192" > 8900 "Cooling and freezing equipment operators and tenders 51-9193" > 8910 "Etchers and engravers 51-9194" > 8920 "Molders, shapers, and casters, except metal and plastic 51-9195" > 8930 "Paper goods machine setters, operators, and tenders 51-9196" > 8940 "Tire builders 51-9197" > 8950 "Helpers--production workers 51-9198" > 8965 "Production workers, all other 51-9199" > 9000 "Supervisors, transportation and material moving workers 53-1000" > 9030 "Aircraft pilots and flight engineers 53-2010" > 9040 "Air traffic controllers and airfield operations specialists 53-2020" > 9050 "Flight Attendants 53-2031" > 9110 "Ambulance drivers and attendants, except emergency medical technicians 53-3011" > 9120 "Bus drivers 53-3020" > 9130 "Driver/sales workers and truck drivers 53-3030" > 9140 "Taxi drivers and chauffeurs 53-3041" > 9150 "Motor vehicle operators, all other 53-3099" > 9200 "Locomotive engineers and operators 53-4010" > 9230 "Railroad brake, signal, and switch operators 53-4021" > 9240 "Railroad conductors and yardmasters 53-4031" > 9260 "Subway, streetcar, and other rail transportation workers 53-40XX" > 9300 "Sailors and marine oilers 53-5011" > 9310 "Ship and boat captains and operators 53-5020" > 9330 "Ship engineers 53-5031" > 9340 "Bridge and lock tenders 53-6011" > 9350 "Parking lot attendants 53-6021" > 9360 "Service station attendants 53-6031" > 9410 "Transportation inspectors 53-6051" > 9415 "Transportation Attendants, Except Flight Attendants 53-6061" > 9420 "Other transportation workers 53-60XX" > 9500 "Conveyor operators and tenders 53-7011" > 9510 "Crane and tower operators 53-7021" > 9520 "Dredge, excavating, and loading machine operators 53-7030" > 9560 "Hoist and winch operators 53-7041" > 9600 "Industrial truck and tractor operators 53-7051" > 9610 "Cleaners of vehicles and equipment 53-7061" > 9620 "Laborers and freight, stock, and material movers, hand 53-7062" > 9630 "Machine feeders and offbearers 53-7063" > 9640 "Packers and packagers, hand 53-7064" > 9650 "Pumping station operators 53-7070" > 9720 "Refuse and recyclable material collectors 53-7081" > 9730 "Shuttle car operators 53-7111" > 9740 "Tank car, truck, and ship loaders 53-7121" > 9750 "Material moving workers, all other 53-7199" > 9840 "Armed Forces" > 9970 "Problem referral" > 9990 "Not reported (Includes Refused, Classified, blank and all other noncodable entries)" > 9800 "Military officer special and tactical operations leaders/managers 55-1010" > 9810 "First-line enlisted military supervisors/managers 55-2010" > 9820 "Military enlisted tactical operations and air/weapons specialists and crew members 55- > 3010" > 9830 "Military, rank not specified 99-9999" > ; . * docc00: 2000-; . label values docc00 docc00l ; . label define docc00l > 1 "Management occupations" > 2 "Business and financial operations occupations" > 3 "Computer and mathematical science occupations" > 4 "Architecture and engineering occupations" > 5 "Life, physical, and social science occupations" > 6 "Community and social service occupations" > 7 "Legal occupations" > 8 "Education, training, and library occupations" > 9 "Arts, design, entertainment, sports, and media occupations" > 10 "Healthcare practitioner and technical occupations" > 11 "Healthcare support occupations" > 12 "Protective service occupations" > 13 "Food preparation and serving related occupations" > 14 "Building and grounds cleaning and maintenance occupations" > 15 "Personal care and service occupations" > 16 "Sales and related occupations" > 17 "Office and administrative support occupations" > 18 "Farming, fishing, and forestry occupations" > 19 "Construction and extraction occupations" > 20 "Installation, maintenance, and repair occupations" > 21 "Production occupations" > 22 "Transportation and material moving occupations" > 23 "Armed Forces" > ; . * eligible: 1979:5-; . label values eligible P21L; . label define P21L > 1 "Earnings Eligible For Edit" > 2 "Other" > ; . * reason94: 1994-; . label values reason94 P22L; . label define P22L > 1 "Slack Work/Business Conditions" > 2 "Seasonal Work" > 3 "Job Started Or Ended During Week" > 4 "Vacation/Personal Day" > 5 "Own Illness/Injury/Medical Appointment" > 6 "Holiday (legal Or Religious)" > 7 "Child Care Problems" > 8 "Other Family/Personal Obligations" > 9 "Labor Dispute" > 10 "Weather Affected Job" > 11 "School/Training" > 12 "Civic/Military Duty" > 13 "Other Reason" > ; . * absent94: 1994-; . label values absent94 P23L; . label define P23L > 1 "On Layoff" > 2 "Slack Work/Business Conditions" > 3 "Waiting For A New Job To Begin" > 4 "Vacation/Personal Days" > 5 "Own Illness/Injury/Medical Problems" > 6 "Child Care Problems" > 7 "Other Family/Personal Obligation" > 8 "Maternity/Paternity Leave" > 9 "Labor Dispute" > 10 "Weather Affected Job" > 11 "School/Training" > 12 "Civic/Military Duty" > 13 "Does Not Work In The Business" > 14 "Other (specify)" > ; . *why3594: 1994-; . label values why3594 P3594L; . label define P3594L > 1 "Usu. FT-Slack Work/Business Conditions" > 2 "Usu. FT-Seasonal Work" > 3 "Usu. FT-Job Started/Ended During Week" > 4 "Usu. FT-Vacation/Personal Day" > 5 "Usu. FT-Own Illness/Injury/Medical Appt" > 6 "Usu. FT-Holiday (religious Or Legal)" > 7 "Usu. FT-Child Care Problems" > 8 "Usu. FT-Other Fam/Pers Obligations" > 9 "Usu. FT-Labor Dispute" > 10 "Usu. FT-Weather Affected Job" > 11 "Usu. FT-School/Training" > 12 "Usu. FT-Civic/Military Duty" > 13 "Usu. FT-Other Reason" > 14 "Usu. PT-Slack Work/Business Conditions" > 15 "Usu. PT-Could Only Find PT Work" > 16 "Usu. PT-Seasonal Work" > 17 "Usu. PT-Child Care Problems" > 18 "Usu. PT-Other Fam/Pers Obligations" > 19 "Usu. PT-Health/Medical Limitations" > 20 "Usu. PT-School/Training" > 21 "Usu. PT-Retired/Ss Limit On Earnings" > 22 "Usu. PT-Workweek <35 Hours" > 23 "Usu. PT-Other Reason" > ; . * ftpt94: 1994-; . label values ftpt94 P160L; . label define P160L > 1 "Not In Labor Force" > 2 "FT Hours (35+), Usually FT" > 3 "PT For Economic Reasons, Usually FT" > 4 "PT For Non-Economic Reasons, Usually FT" > 5 "Not At Work, Usually FT" > 6 "PT Hours, Usually PT For Economic Reasons" > 7 "PT hrs, Usually PT For Non-Economic" > 8 "FT Hours, Usually PT For Economic Reas" > 9 "FT hrs, Usually PT For Non-Economic" > 10 "Not at work, Usually Part-Time" > 11 "Unemployed FT" > 12 "Unemployed PT" > ; . * studftpt: 1984-; . label values studftpt P24L; . label define P24L > 1 "Full-time" > 2 "Part-time" > ; . * unionmme: 1983-; . label values unionmme P25L; . label define P25L > 1 "Yes" > 2 "No" > ; . * unioncov: 1983-; . label values unioncov P26L; . label define P26L > 1 "Yes" > 2 "No" > ; . * otc: 1994-; . label values otc yesno; . label define yesno > 1 "Yes" > 2 "No" > ; . * hrhtype: 1984-; . label values hrhtype hrhtype; . label define hrhtype > 0 "Non-interview household" > 1 "Husband/wife primary fam (neither in Armed Forces)" > 2 "Husband/wife primary fam (one/both in Armed Forces)" > 3 "Unmarried civilian male primary fam householder" > 4 "Unmarried civilian female primary fam householder" > 5 "Unmarried primary fam householder in Armed Forces" > 6 "Civilian male primary individual" > 7 "Civilian female primary individual" > 8 "Primary ind HH - reference person in Armed Forces" > 9 "Group quarters with family" > 10 "Group quarters without family" > ; . ** Race 2003-April 2012 has 21 Categories" > ** "Race May 2012 on has 26 Categories" > label values race race26; > label define race26 > 1 "White Only" > 2 "Black Only" > 3 "American Indian, Alaskan Native Only" > 4 "Asian Only" > 5 "Hawaiian/Pacific Islander Only" > 6 "White-Black" > 7 "White-AI" > 8 "White-Asian" > 9 "White-HP" > 10 "Black-AI" > 11 "Black-Asian" > 12 "Black-HP" > 13 "AI-Asian" > 14 "AI-HP" > 15 "Asian-HP" > 16 "W-B-AI" > 17 "W-B-A" > 18 "W-B-HP" > 19 "W-AI-A" > 20 "W-AI-HP" > 21 "W-A-HP" > 22 "B-AI-A" > 23 "W-B-AI-A" > 24 "W-AI-A-HP" > 25 "Other 3 Race Combinations" > 26 "Other 4 and 5 Race Combinations" > ; > > end of do-file (saving in Stata 12 format, which Stata 11 can read) file /homes/data/morg/annual/morg16.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+--------------------------------------------------------- hhid | 0 intmonth | 314,873 6.526784 3.460851 1 12 hurespli | 314,838 1.350059 .727338 0 14 hrhtype | 314,873 2.7252 2.286064 1 10 minsamp | 314,873 5.989577 1.999976 4 8 -------------+--------------------------------------------------------- hrlonglk | 314,873 1.989863 .1420287 0 2 hrsample | 0 hrhhid2 | 0 serial | 0 hhnum | 314,873 1.058271 .2569868 1 8 -------------+--------------------------------------------------------- stfips | 314,873 28.07904 16.16896 1 56 cbsafips | 314,873 22623.73 16562.94 0 49740 county | 314,873 25.39656 61.21637 0 810 centcity | 260,017 1.933277 .7269826 1 3 smsastat | 311,683 1.194473 .3957953 1 2 -------------+--------------------------------------------------------- icntcity | 40,314 1.371434 .9390967 1 7 smsa04 | 314,873 3.669028 2.608375 0 7 relref95 | 314,873 3.150445 3.214896 1 18 age | 314,873 47.32277 18.59639 16 85 spouse | 161,961 1.588401 .7117047 1 16 -------------+--------------------------------------------------------- sex | 314,873 1.521553 .499536 1 2 grade92 | 314,873 40.31861 2.733334 31 46 race | 314,873 1.422748 1.27299 1 26 ethnic | 40,144 2.529145 2.382259 1 8 lineno | 314,873 1.748918 1.032539 1 16 -------------+--------------------------------------------------------- famnum | 314,873 .793485 .4776076 0 6 pfamrel | 314,873 1.363102 1.076112 0 4 marital | 314,873 3.4414 2.655128 1 7 prpertyp | 314,873 2.004071 .0636782 2 3 penatvty | 314,873 87.60545 81.2925 57 555 -------------+--------------------------------------------------------- pemntvty | 314,873 97.63254 90.64615 57 555 pefntvty | 314,873 97.89696 91.01482 57 555 prcitshp | 314,873 1.492068 1.217541 1 5 prcitflg | 314,873 .1955709 2.112208 0 41 peinusyr | 314,873 2.088521 5.60965 0 24 -------------+--------------------------------------------------------- selfproxy | 309,514 1.486779 .5044394 1 3 lfsr94 | 313,591 2.938353 2.384559 1 7 absent94 | 6,646 6.302137 3.516259 4 14 uhourse | 173,378 38.63261 11.00034 0 99 reason94 | 12,053 5.051854 2.807383 1 13 -------------+--------------------------------------------------------- hourslw | 178,984 38.57372 12.79102 1 99 laydur | 1,215 7.182716 8.698096 1 52 dwrsn | 5,580 7.451971 3.280246 1 11 why3594 | 43,785 15.29903 6.874597 1 23 prunedur | 8,803 24.17585 31.40994 0 119 -------------+--------------------------------------------------------- untype | 8,803 3.461434 1.665291 1 6 ftpt94 | 313,591 2.545755 2.37082 1 12 class94 | 202,159 4.095004 1.161652 1 8 agri | 202,159 .0210132 .1434284 0 1 eligible | 314,873 1.473413 .4992934 1 2 -------------+--------------------------------------------------------- otc | 165,808 1.865622 .3410594 1 2 ernpdh2 | 94,187 1.736853 .4403437 1 2 paidhre | 165,808 1.411349 .4920798 1 2 earnhre | 97,522 1700.486 1007.266 25 9999 earnwke | 165,808 912.0409 673.0387 0 2884.61 -------------+--------------------------------------------------------- unionmme | 165,808 1.896091 .3051438 1 2 unioncov | 148,579 1.985355 .1201292 1 2 schenr | 194,624 1.848379 .3586536 1 2 studftpt | 29,509 1.143516 .3506038 1 2 schlvl | 29,509 1.609035 .4879749 1 2 -------------+--------------------------------------------------------- earnwt | 314,873 9662.472 5229.986 0 62385.74 weight | 314,873 2415.618 1300.118 0 11001.06 chldpres | 314,873 1.283517 2.761769 0 15 ownchild | 314,873 .4745913 .951635 0 13 I25d | 165,808 .3752835 .4841975 0 1 -------------+--------------------------------------------------------- I25c | 97,603 .4110632 .4920292 0 1 I25a | 314,873 .4999794 4.308463 0 43 I25b | 314,873 4.484319 12.95481 0 42 qstnum | 0 occurnum | 0 -------------+--------------------------------------------------------- ged | 90,829 1.09792 .2972084 1 2 gedhigr | 8,894 6.423544 1.395383 1 8 yrcoll | 86,581 2.79082 1.003451 1 5 grprof | 0 gr6cor | 0 -------------+--------------------------------------------------------- ms123 | 0 cmpwgt | 314,873 2415.81 1302.045 0 10882.83 ind02 | 202,159 6280.964 2702.895 170 9890 occ2012 | 202,159 4130.175 2581.565 10 9840 occ002 | 314,873 106.2935 726.6637 -1 9720 -------------+--------------------------------------------------------- vet1 | 25,642 3.620739 1.624141 1 9 vet2 | 5,159 3.318085 1.476127 1 9 vet3 | 1,252 3.002396 1.455713 1 8 vet4 | 186 3.629032 1.704372 1 8 linedad | 43,299 1.69766 .9516836 1 14 -------------+--------------------------------------------------------- linemom | 31,387 1.147163 .4035485 1 3 recnum | 314,873 227100.5 130847 1 453393 year | 314,873 2016 0 2016 2016 ym_file | 314,873 677.5268 3.460851 672 683 ym | 314,873 668.5581 6.932746 657 680 -------------+--------------------------------------------------------- ch02 | 314,873 .0637241 .2442612 0 1 ch35 | 314,873 .0680941 .2519077 0 1 ch613 | 314,873 .1457159 .3528217 0 1 ch1417 | 314,873 .0878767 .2831159 0 1 ch05 | 314,873 .1095267 .3122994 0 1 -------------+--------------------------------------------------------- ihigrdc | 229,351 12.3153 2.468041 0 18 docc00 | 202,159 12.26656 6.753041 1 23 dind02 | 202,159 47.83191 253.455 1 3895 . aef2 2017 17 03 13 dct_name aef03.dbd raw_name=../raw/morg17 (0 observations deleted) obs 445862 # of persons with age<=15 135873 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 58,916 13.21 13.21 0 | 3,394 0.76 13.98 1 | 4,313 0.97 14.94 2 | 4,611 1.03 15.98 3 | 4,680 1.05 17.03 4 | 4,535 1.02 18.04 5 | 4,805 1.08 19.12 6 | 4,717 1.06 20.18 7 | 4,915 1.10 21.28 8 | 4,992 1.12 22.40 9 | 5,271 1.18 23.58 10 | 5,143 1.15 24.74 11 | 5,226 1.17 25.91 12 | 5,215 1.17 27.08 13 | 5,033 1.13 28.21 14 | 5,046 1.13 29.34 15 | 5,061 1.14 30.47 16 | 5,207 1.17 31.64 17 | 5,176 1.16 32.80 18 | 4,646 1.04 33.85 19 | 4,259 0.96 34.80 20 | 4,186 0.94 35.74 21 | 4,364 0.98 36.72 22 | 4,419 0.99 37.71 23 | 4,432 0.99 38.70 24 | 4,701 1.05 39.76 25 | 4,727 1.06 40.82 26 | 4,909 1.10 41.92 27 | 5,043 1.13 43.05 28 | 4,843 1.09 44.14 29 | 4,791 1.07 45.21 30 | 5,025 1.13 46.34 31 | 5,019 1.13 47.46 32 | 5,118 1.15 48.61 33 | 4,911 1.10 49.71 34 | 5,025 1.13 50.84 35 | 5,287 1.19 52.03 36 | 5,144 1.15 53.18 37 | 5,140 1.15 54.33 38 | 4,954 1.11 55.44 39 | 4,797 1.08 56.52 40 | 4,870 1.09 57.61 41 | 4,645 1.04 58.65 42 | 4,712 1.06 59.71 43 | 4,460 1.00 60.71 44 | 4,513 1.01 61.72 45 | 4,764 1.07 62.79 46 | 5,203 1.17 63.96 47 | 5,084 1.14 65.10 48 | 4,911 1.10 66.20 49 | 4,792 1.07 67.27 50 | 4,963 1.11 68.39 51 | 5,008 1.12 69.51 52 | 5,268 1.18 70.69 53 | 5,413 1.21 71.91 54 | 5,432 1.22 73.12 55 | 5,443 1.22 74.35 56 | 5,461 1.22 75.57 57 | 5,618 1.26 76.83 58 | 5,474 1.23 78.06 59 | 5,421 1.22 79.27 60 | 5,398 1.21 80.48 61 | 5,389 1.21 81.69 62 | 5,302 1.19 82.88 63 | 5,014 1.12 84.01 64 | 4,704 1.06 85.06 65 | 4,895 1.10 86.16 66 | 4,688 1.05 87.21 67 | 4,431 0.99 88.20 68 | 4,199 0.94 89.15 69 | 4,300 0.96 90.11 70 | 4,439 1.00 91.11 71 | 3,488 0.78 91.89 72 | 3,156 0.71 92.60 73 | 3,035 0.68 93.28 74 | 3,167 0.71 93.99 75 | 2,746 0.62 94.60 76 | 2,517 0.56 95.17 77 | 2,279 0.51 95.68 78 | 2,123 0.48 96.16 79 | 1,945 0.44 96.59 80 | 7,645 1.71 98.31 85 | 7,551 1.69 100.00 ------------+----------------------------------- Total | 445,862 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 58,916 43.36 43.36 0 | 3,394 2.50 45.86 1 | 4,313 3.17 49.03 2 | 4,611 3.39 52.43 3 | 4,680 3.44 55.87 4 | 4,535 3.34 59.21 5 | 4,805 3.54 62.75 6 | 4,717 3.47 66.22 7 | 4,915 3.62 69.83 8 | 4,992 3.67 73.51 9 | 5,271 3.88 77.39 10 | 5,143 3.79 81.17 11 | 5,226 3.85 85.02 12 | 5,215 3.84 88.86 13 | 5,033 3.70 92.56 14 | 5,046 3.71 96.28 15 | 5,061 3.72 100.00 ------------+----------------------------------- Total | 135,873 100.00 (135,873 observations deleted) (0 observations deleted) obs 309989 after keeping age>15&age!=. infile successful no observations (11 real changes made, 11 to missing) (267,643 real changes made, 267,643 to missing) (279,025 real changes made, 279,025 to missing) (0 real changes made) (0 real changes made) (153,045 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (156,944 real changes made) Geography (121,608 real changes made) dropping cmsacode msafips smsa93 smsasize = . if smsasize <=0 (231,354 real changes made, 231,354 to missing) inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (2,991 real changes made, 2,991 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (53,569 real changes made, 53,569 to missing) (270,324 real changes made, 270,324 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (149,879 real changes made, 149,879 to missing) if 2017 > 1983 & 2017 < 1989 { (0 real changes made) (0 real changes made) (0 real changes made) (ch02: 68715 changes made) (ch35: 76656 changes made) (ch613: 76656 changes made) (ch1417: 76656 changes made) (13,767 real changes made) (0 real changes made) (221,507 real changes made, 221,507 to missing) (301,369 real changes made, 301,369 to missing) (224,908 real changes made, 224,908 to missing) (309,989 real changes made, 309,989 to missing) (309,989 real changes made, 309,989 to missing) (309,989 real changes made, 309,989 to missing) (309,989 missing values generated) (879 real changes made) (1,654 real changes made) (3,311 real changes made) (4,866 real changes made) (5,858 real changes made) (9,017 real changes made) (10,463 real changes made) (4,546 real changes made) (51 real changes made) (153 real changes made) (73 real changes made) (560 real changes made) (851 real changes made) (2,009 real changes made) (2,882 real changes made) (2,041 real changes made) (79,862 real changes made) (8,838 real changes made) (20,412 real changes made) (40,608 real changes made) (9,501 real changes made) (5,722 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (9,272 real changes made) (217,154 real changes made, 217,154 to missing) (302,286 real changes made, 302,286 to missing) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (270,585 real changes made, 270,585 to missing) (0 real changes made) (285,184 real changes made, 285,184 to missing) (305,037 real changes made, 305,037 to missing) (308,705 real changes made, 308,705 to missing) (309,794 real changes made, 309,794 to missing) Employment (5,712 real changes made, 5,712 to missing) (304,842 real changes made, 304,842 to missing) (146,208 real changes made, 146,208 to missing) (111,602 real changes made, 111,602 to missing) (111,602 real changes made, 111,602 to missing) (111,602 real changes made, 111,602 to missing) docc80 ** The renaming is part of the Census reweighting ; docc00 553 generate int docc00=occ2011; 568 572 577 (111,602 missing values generated) 581 recode docc00 2011 (docc00: 198387 changes made) dind (111,602 missing values generated) (dind02: 197529 changes made) Wages (146,208 real changes made, 146,208 to missing) (0 real changes made) (214,046 real changes made, 214,046 to missing) (0 real changes made) (0 real changes made) (146,208 real changes made) (194,340 real changes made) (111,602 real changes made, 111,602 to missing) (302,286 real changes made, 302,286 to missing) (126,808 real changes made) (146,208 real changes made) (1 real change made, 1 to missing) (126,808 real changes made, 126,808 to missing) (1,325 real changes made, 1,325 to missing) (308,860 real changes made, 308,860 to missing) (214,008 real changes made, 214,008 to missing) (146,208 real changes made, 146,208 to missing) Hours, Unions (297,404 real changes made, 297,404 to missing) (303,037 real changes made, 303,037 to missing) (281,442 real changes made, 281,442 to missing) (121,141 real changes made, 121,141 to missing) (281,442 real changes made, 281,442 to missing) (1,325 real changes made, 1,325 to missing) (133,760 real changes made, 133,760 to missing) (96 real changes made) (11,704 real changes made, 11,704 to missing) (266,981 real changes made, 266,981 to missing) (146,208 real changes made, 146,208 to missing) (163,300 real changes made, 163,300 to missing) variable spouse was int now byte variable hourslw was int now byte variable laydur was int now byte variable ym_file was float now int variable ym was float now int variable ch02 was int now byte variable ch35 was int now byte variable ch613 was int now byte variable ch1417 was int now byte variable ch05 was int now byte variable docc00 was int now byte variable dind02 was float now int (4,649,835 bytes saved) . *by Jean Roth Thu Mar 17 2005 14:38:42 . *Please report errors to jroth@nber.org . . * Note: Variable names in Stata are case-sensitive . #delimit ; delimiter now ; . ; . * minsamp: 1979-; . label values minsamp P2L; . label define P2L > 4 "MIS 4" > 8 "MIS 8" > ; . * hrlonglk: 1994-; . label values hrlonglk P3L; . label define P3L > 0 "MIS 1 Or Replacement HH (no" > 2 "MIS 2-4 Or MIS 6-8 (link To" > ; . * intmonth: 1979-; . label values intmonth P4L; . label define P4L > 1 "January" > 2 "February" > 3 "March" > 4 "April" > 5 "May" > 6 "June" > 7 "July" > 8 "August" > 9 "September" > 10 "October" > 11 "November" > 12 "December" > ; . * stfips: 1989-; . label values stfips stfips; . label define stfips > 1 "AL" > 2 "AK" > 4 "AZ" > 5 "AR" > 6 "CA" > 8 "CO" > 9 "CT" > 10 "DE" > 11 "DC" > 12 "FL" > 13 "GA" > 15 "HI" > 16 "ID" > 17 "IL" > 18 "IN" > 19 "IA" > 20 "KS" > 21 "KY" > 22 "LA" > 23 "ME" > 24 "MD" > 25 "MA" > 26 "MI" > 27 "MN" > 28 "MS" > 29 "MO" > 30 "MT" > 31 "NE" > 32 "NV" > 33 "NH" > 34 "NJ" > 35 "NM" > 36 "NY" > 37 "NC" > 38 "ND" > 39 "OH" > 40 "OK" > 41 "OR" > 42 "PA" > 44 "RI" > 45 "SC" > 46 "SD" > 47 "TN" > 48 "TX" > 49 "UT" > 50 "VT" > 51 "VA" > 53 "WA" > 54 "WV" > 55 "WI" > 56 "WY" > ; . * state: 1979- April 2014 ; . cap label values state P27L; . cap label define P27L > 11 "ME" > 12 "NH" > 13 "VT" > 14 "MA" > 15 "RI" > 16 "CT" > 21 "NY" > 22 "NJ" > 23 "PA" > 31 "OH" > 32 "IN" > 33 "IL" > 34 "MI" > 35 "WI" > 41 "MN" > 42 "IA" > 43 "MO" > 44 "ND" > 45 "SD" > ; . * penatvty: 2007-; . label values penatvty penatvty; . label define penatvty > 57 "United States" > 60 "American Samoa" > 66 "Guam" > 73 "Puerto Rico" > 78 "U.S. Virgin Islands" > 96 "U.S. Outlying Area" > 100 "Albania" > 102 "Austria" > 103 "Belgium" > 104 "Bulgaria" > 105 "Czechoslovakia" > 106 "Denmark" > 108 "Finland" > 109 "France" > 110 "Germany" > 116 "Greece" > 117 "Hungary" > 119 "Ireland/Eire" > 120 "Italy" > 126 "Holland/Netherlands" > 127 "Norway" > 128 "Poland" > 129 "Portugal" > 130 "Azores" > 132 "Romania" > 134 "Spain" > 136 "Sweden" > 137 "Switzerland" > 138 "United Kingdom/Great Britain" > 139 "England" > 140 "Scotland" > 141 "Wales" > 142 "Northern Ireland" > 147 "Yugoslavia" > 148 "Czech Republic" > 149 "Slovakia" > 150 "Bosnia & Herzegovina" > 151 "Croatia" > 152 "Macedonia" > 154 "Serbia" > 156 "Latvia" > 157 "Lithuania" > 158 "Armenia" > 159 "Azerbaijan" > 160 "Belarus" > 161 "Georgia" > 162 "Moldova" > 163 "Russia" > 164 "Ukraine" > 165 "USSR" > 166 "Europe, not specified" > 167 "Kosovo" > 200 "Afghanistan" > 202 "Bangladesh" > 205 "Myanmar (Burma)" > 206 "Cambodia" > 207 "China" > 208 "Cyprus" > 209 "Hong Kong" > 210 "India" > 211 "Indonesia" > 212 "Iran" > 213 "Iraq" > 214 "Israel" > 215 "Japan" > 216 "Jordan" > 217 "Korea" > 220 "South Korea" > 222 "Kuwait" > 223 "Laos" > 224 "Lebanon" > 226 "Malaysia" > 229 "Nepal" > 231 "Pakistan" > 233 "Philippines" > 235 "Saudi Arabia" > 236 "Singapore" > 238 "Sri Lanka" > 239 "Syria" > 240 "Taiwan" > 242 "Thailand" > 243 "Turkey" > 246 "Uzbekistan" > 247 "Vietnam" > 248 "Yemen" > 249 "Asia, not specified" > 300 "Bermuda" > 301 "Canada" > 303 "Mexico" > 310 "Belize" > 311 "Costa Rica" > 312 "El Salvador" > 313 "Guatemala" > 314 "Honduras" > 315 "Nicaragua" > 316 "Panama" > 318 "Central America" > 321 "Antigua and Barbuda" > 323 "Bahamas" > 324 "Barbados" > 327 "Cuba" > 328 "Dominica" > 329 "Dominican Republic" > 330 "Grenada" > 332 "Haiti" > 333 "Jamaica" > 338 "St. Kitts-Nevis" > 339 "St. Lucia" > 340 "St. Vincent and the Grenadines" > 341 "Trinidad and Tobago" > 343 "West Indes, not specified" > 360 "Argentina" > 361 "Bolivia" > 362 "Brazil" > 363 "Chile" > 364 "Colombia" > 365 "Ecuador" > 368 "Guyana" > 369 "Paraguay" > 370 "Peru" > 372 "Uruguay" > 373 "Venezuela" > 374 "South America, not specified" > 399 "Americas, not specified" > 400 "Algeria" > 407 "Cameroon" > 408 "Cape Verde" > 414 "Egypt" > 416 "Ethiopia" > 417 "Eritrea" > 421 "Ghana" > 427 "Kenya" > 429 "Liberia" > 436 "Morocco" > 440 "Nigeria" > 444 "Senegal" > 447 "Sierra Leone" > 448 "Somalia" > 449 "South Africa" > 451 "Sudan" > 453 "Tanzania" > 457 "Uganda" > 461 "Zimbabwe" > 462 "Africa, not specified" > 501 "Australia" > 508 "Fiji" > 515 "New Zealand" > 523 "Tonga" > 527 "Samoa" > 528 "Oceania, not specified" > 555 "Elsewhere" > ; . * pemntvty: 2007-; . label values pemntvty penatvty; . * pefntvty: 2007-; . label values pefntvty penatvty; . * prcitshp: 1994-; . label values prcitshp P16L; . label define P16L > 1 "Native, Born In US" > 2 "Native, Born in PR or US Outlying Area" > 3 "Native, Born Abroad Of US Parent(s)" > 4 "Foreign Born, US Cit By Naturalization" > 5 "Foreign Born, Not a US Citizen" > ; . * prcitflg: 1994-; . label values prcitflg P34L; . label define P34L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * meanings of last few codes of peinusyr change every year!!!; . * peinusyr: 2003-; . label values peinusyr P17L; . label define P17L > -1 "Not In Universe (Born In U.S.)" > 0 "Not Foreign Born" > 1 "Before 1950" > 2 "1950-1959" > 3 "1960-1964" > 4 "1965-1969" > 5 "1970-1974" > 6 "1975-1979" > 7 "1980-1981" > 8 "1982-1983" > 9 "1984-1985" > 10 "1986-1987" > 11 "1988-1989" > 12 "1990-1991" > 13 "1992-1995" > 14 "1994-1995" > 15 "1996-1997" > 16 "1998-1999" > 17 "2000-2001" > 18 "2002-2003" > 19 "2004-2005" > 20 "2006-2007" > 21 "2008-2009" > 22 "2010-2012" > ; . * paidhre: 1979-; . label values paidhre P18L; . label define P18L > 1 "Yes" > 2 "No" > ; . * I25a: 1979-; . label values I25a P28L; . label define P28L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * I25b: 1979-; . label values I25b P29L; . label define P29L > 0 "Value - No Change" > 1 "Blank - No Change" > 2 "Don't Know - No Change" > 3 "Refused - No Change" > 10 "Value To Value" > 11 "Blank To Value" > 12 "Don't Know To Value" > 13 "Refused To Value" > 20 "Value To Longitudinal Value" > 21 "Blank To Longitudinal Value" > 22 "Don't Know To Longitudinal Value" > 23 "Refused To Longitudinal Value" > 30 "Value to Allocated Value Long." > 31 "Blank to Allocated Value Long." > 32 "Don't Know to Allocated Value Long." > 33 "Refused to Allocated Value Long." > 40 "Value To Allocated Value" > 41 "Blank To Allocated Value" > 42 "Don't Know To Allocated Value" > 43 "Refused To Allocated Value" > 50 "Value To Blank" > 52 "Don't Know To Blank" > 53 "Refused To Blank" > ; . * I25c: 1996-; . label values I25c I25c; . label define I25c > 0 "No Components Allocated" > 1 "1 or more components Allocated" > ; . * I25d: 1996-; . label values I25d I25d; . label define I25d > 0 "No Components Allocated" > 1 "1 or more components Allocated" > ; . * class94: 1994-; . label values class94 P19L; . label define P19L > 1 "Government - Federal" > 2 "Government - State" > 3 "Government - Local" > 4 "Private, For Profit" > 5 "Private, Nonprofit" > 6 "Self-Employed, Incorporated" > 7 "Self-Employed, Unincorporated" > 8 "Without Pay" > ; . * lfsr94: 1994-; . label values lfsr94 P20L; . label define P20L > 1 "Employed-At Work" > 2 "Employed-Absent" > 3 "Unemployed-On Layoff" > 4 "Unemployed-Looking" > 5 "Retired-Not In Labor Force" > 6 "Disabled-Not In Labor Force" > 7 "Other-Not In Labor Force" > ; . * ind02: 2000-; . label values ind02 ind02; . label define ind02 > 170 "Crop production (111)" > 180 "Animal production (112)" > 190 "Forestry except logging (1131, 1132)" > 270 "Logging (1133)" > 280 "Fishing, hunting, and trapping (114)" > 290 "Support activities for agriculture and forestry (115)" > 370 "Oil and gas extraction (211)" > 380 "Coal mining (2121)" > 390 "Metal ore mining (2122)" > 470 "Nonmetallic mineral mining and quarrying (2123)" > 480 "Not specified type of mining (Part of 21)" > 490 "Support activities for mining (213)" > 570 "Electric power generation, transmission and distribution (Pt. 2211)" > 580 "Natural gas distribution (Pt.s2212)" > 590 "Electric and gas, and other combinations (Pts. 2211, 2212)" > 670 "Water, steam, air-conditioning, and irrigation systems (22131, 22133)" > 680 "Sewage treatment facilities (22132)" > 690 "Not specified utilities (Part of 22)" > 770 "** Construction (23)" > 1070 "Animal food, grain and oilseed milling (3111, 3112)" > 1080 "Sugar and confectionery products (3113)" > 1090 "Fruit and vegetable preserving and specialty food manufacturing (3114)" > 1170 "Dairy product manufacturing (3115)" > 1180 "Animal slaughtering and processing (3116)" > 1190 "Retail bakeries (311811)" > 1270 "Bakeries, except retail (3118 exc. 311811)" > 1280 "Seafood and other miscellaneous foods, n.e.c. (3117, 3119)" > 1290 "Not specified food industries (Part of 311)" > 1370 "Beverage manufacturing (3121)" > 1390 "Tobacco manufacturing (3122)" > 1470 "Fiber, yarn, and thread mills (3131)" > 1480 "Fabric mills, except knitting (3132 exc. 31324)" > 1490 "Textile and fabric finishing and coating mills (3133)" > 1570 "Carpet and rug mills (31411)" > 1590 "Textile product mills, except carpets and rugs (314 exc. 31411)" > 1670 "Knitting mills (31324, 3151)" > 1680 "Cut and sew apparel manufacturing (3152)" > 1690 "Apparel accessories and other apparel manufacturing (3159)" > 1770 "Footwear manufacturing (3162)" > 1790 "Leather tanning and products, except footwear manufacturing (3161, 3169)" > 1870 "Pulp, paper, and paperboard mills (3221)" > 1880 "Paperboard containers and boxes (32221)" > 1890 "Miscellaneous paper and pulp products (32222,32223, 32229)" > 1990 "Printing and related support activities (3231)" > 2070 "Petroleum refining (32411)" > 2090 "Miscellaneous petroleum and coal products (32419)" > 2170 "Resin, synthetic rubber and fibers, and filaments manufacturing (3252)" > 2180 "Agricultural chemical manufacturing (3253)" > 2190 "Pharmaceutical and medicine manufacturing (3254)" > 2270 "Paint, coating, and adhesive manufacturing B46 (3255)" > 2280 "Soap, cleaning compound, and cosmetics manufacturing (3256)" > 2290 "Industrial and miscellaneous chemicals (3251, 3259)" > 2370 "Plastics product manufacturing (3261)" > 2380 "Tire manufacturing (32621)" > 2390 "Rubber products, except tires, manufacturing (32622, 32629)" > 2470 "Pottery, ceramics, and related products manufacturing (32711)" > 2480 "Structural clay product manufacturing (32712)" > 2490 "Glass and glass product manufacturing (3272)" > 2570 "Cement, concrete, lime, and gypsum product manufacturing (3273, 3274)" > 2590 "Miscellaneous nonmetallic mineral product manufacturing (3279)" > 2670 "Iron and steel mills and steel product manufacturing (3311, 3312)" > 2680 "Aluminum production and processing (3313)" > 2690 "Nonferrous metal, except aluminum, production and processing (3314)" > 2770 "Foundries (3315)" > 2780 "Metal forgings and stampings (3321)" > 2790 "Cutlery and hand tool manufacturing (3322)" > 2870 "Structural metals, and tank and shipping container manufacturing (3323, 3324)" > 2880 "Machine shops; turned product; screw, nut and bolt manufacturing (3327)" > 2890 "Coating, engraving, heat treating and allied activities (3328)" > 2970 "Ordnance (332992 to 332995)" > 2980 "Miscellaneous fabricated metal products manufacturing (3325, 3326, 3329 exc. 332992, 3 > 32993, 332994, 332995)" > 2990 "Not specified metal industries (Part of 331 and 332)" > 3070 "Agricultural implement manufacturing (33311)" > 3080 "Construction, mining and oil field machinery manufacturing (33312, 33313)" > 3090 "Commercial and service industry machinery manufacturing (3333)" > 3170 "Metalworking machinery manufacturing (3335)" > 3180 "Engines, turbines, and power transmission equipment manufacturing (3336)" > 3190 "Machinery manufacturing, n.e.c. (3332, 3334, 3339)" > 3290 "Not specified machinery manufacturing (Part of 333)" > 3360 "Computer and peripheral equipment manufacturing (3341)" > 3370 "Communications, audio, and video equipment manufacturing (3342, 3343)" > 3380 "Navigational, measuring, electromedical, and control instruments manufacturing (3345)" > 3390 "Electronic component and product manufacturing, n.e.c. (3344, 3346)" > 3470 "Household appliance manufacturing (3352)" > 3490 "Electrical lighting, equipment, and supplies manufacturing, n.e.c. (3351, 3353, 3359)" > 3570 "Motor vehicles and motor vehicle equipment manufacturing (3361, 3362, 3363)" > 3580 "Aircraft and parts manufacturing (336411 to 336413)" > 3590 "Aerospace products and parts manufacturing (336414, 336415, 336419)" > 3670 "Railroad rolling stock manufacturing (3365)" > 3680 "Ship and boat building (3366)" > 3690 "Other transportation equipment manufacturing (3369)" > 3770 "Sawmills and wood preservation (3211)" > 3780 "Veneer, plywood, and engineered wood products (3212)" > 3790 "Prefabricated wood buildings and mobile homes (321991, 321992)" > 3870 "Miscellaneous wood products (3219 exc. 321991, 321992)" > 3890 "Furniture and related product manufacturing (337)" > 3960 "Medical equipment and supplies manufacturing (3391)" > 3970 "Toys, amusement, and sporting goods manufacturing (33992, 33993)" > 3980 "Miscellaneous manufacturing, n.e.c. (3399 exc. 33992, 33993)" > 3990 "Not specified manufacturing industries (Part of 31, 32, 33)" > 4070 "** Motor vehicles, parts and supplies, merchant wholesalers (*4231)" > 4080 "** Furniture and home furnishing, merchant wholesalers (*4232)" > 4090 "** Lumber and other construction materials, merchant wholesalers (*4233)" > 4170 "** Professional and commercial equipment and supplies, merchant wholesalers (*4234)" > 4180 "** Metals and minerals, except petroleum, merchant wholesalers (*4235)" > 4190 "** Electrical goods, merchant wholesalers (*4236)" > 4260 "** Hardware, plumbing and heating equipment, and supplies, merchant wholesalers (*4237 > )" > 4270 "** Machinery, equipment, and supplies, merchant wholesalers (*4238)" > 4280 "** Recyclable material, merchant wholesalers (*42393)" > 4290 "** Miscellaneous durable goods, merchant wholesalers (*4239 exc. 42393)" > 4370 "** Paper and paper products, merchant wholesalers (*4241)" > 4380 "** Drugs, sundries, and chemical and allied products, merchant (wholesalerss*4242, 424 > 6)" > 4390 "** Apparel, fabrics, and notions, merchant wholesalers (*4243)" > 4470 "** Groceries and related products, merchant wholesalers (*4244)" > 4480 "** Farm product raw materials, merchant wholesalers (*4245)" > 4490 "** Petroleum and petroleum products, merchant wholesalers (*4247)" > 4560 "** Alcoholic beverages, merchant wholesalers (*4248)" > 4570 "** Farm supplies, merchant wholesalers (*42491)" > 4580 "** Miscellaneous (nondurable goods, merchant wholesalerss*4249 exc. 42491)" > 4585 "*** Wholesale electronic markets, agents and brokers New industry (*4251)" > 4590 "**Not specified wholesale trade (Part of 42)" > 4670 "Automobile dealers (4411)" > 4680 "Other motor vehicle dealers (4412)" > 4690 "Auto parts, accessories, and tire stores (4413)" > 4770 "Furniture and home furnishings stores (442)" > 4780 "Household appliance stores (443111)" > 4790 "Radio, TV, and computer stores (443112, 44312)" > 4870 "Building material and supplies dealers (4441 exc. 44413)" > 4880 "Hardware stores (44413)" > 4890 "Lawn and garden equipment and supplies stores (4442)" > 4970 "Grocery stores (4451)" > 4980 "Specialty food stores (4452)" > 4990 "Beer, wine, and liquor stores (4453)" > 5070 "Pharmacies and drug stores (44611)" > 5080 "Health and personal care, except drug, stores (446 exc. 44611)" > 5090 "Gasoline stations (447)" > 5170 "Clothing and accessories, except shoe, stores (448 exc. 44821, 4483)" > 5180 "Shoe stores (44821)" > 5190 "Jewelry, luggage, and leather goods stores (4483)" > 5270 "Sporting goods, camera, and hobby and toy stores (44313, 45111, 45112)" > 5280 "Sewing, needlework, and piece goods stores (45113)" > 5290 "Music stores (45114, 45122)" > 5370 "Book stores and news dealers (45121)" > 5380 "****Department stores and discount stores (s45211)" > 5390 "Miscellaneous general merchandise stores (4529)" > 5470 "Retail florists (4531)" > 5480 "Office supplies and stationery stores (45321)" > 5490 "Used merchandise stores (4533)" > 5570 "Gift, novelty, and souvenir shops (45322)" > 5580 "Miscellaneous retail stores (4539)" > 5590 "*** Electronic shopping (New industry *454111)" > 5591 "*** Electronic auctions (New industrys*454112)" > 5592 "** Mail order houses (*454113)" > 5670 "Vending machine operators (4542)" > 5680 "Fuel dealers (45431)" > 5690 "Other direct selling establishments (45439)" > 5790 "Not specified retail trade (Part of 44, 45)" > 6070 "Air transportation (481)" > 6080 "Rail transportation (482)" > 6090 "Water transportation (483)" > 6170 "Truck transportation (484)" > 6180 "Bus service and urban transit (4851, 4852, 4854, 4855, 4859)" > 6190 "Taxi and limousine service (4853)" > 6270 "Pipeline transportation (486)" > 6280 "Scenic and sightseeing transportation (487)" > 6290 "Services incidental to transportation (488)" > 6370 "Postal Service (491)" > 6380 "Couriers and messengers (492)" > 6390 "Warehousing and storage (493)" > 6470 "**Newspaper publishers (51111)" > 6480 "**Publishing, except newspapers and software (5111 exc. 51111)" > 6490 "Software publishing (5112)" > 6570 "Motion pictures and video industries (5121)" > 6590 "Sound recording industries (5122)" > 6670 "Radio and television broadcasting and cable (5151, 5152, 5175)" > 6672 "Internet publishing and broadcasting and web search portals (51913)" > 6675 "*** Internet publishing and broadcasting (New industrys*5161)" > 6680 "Wired telecommunications carriers (*5171)" > 6690 "Other telecommunications services (*517 exc. 5171, 5175)" > 6692 "*** Internet service providers New industry (*5181)" > 6695 "**** Data processing, hosting, and related services (*5182)" > 6770 "Libraries and archives (*51912)" > 6780 "Other information services (*5191 exc. 51912)" > 6870 "Banking and related activities (521, 52211,52219)" > 6880 "Savings institutions, including credit unions (52212, 52213)" > 6890 "Non-depository credit and related activities (5222, 5223)" > 6970 "Securities, commodities, funds, trusts, and other financial investments (523, 525)" > 6990 "Insurance carriers and related activities (524)" > 7070 "Real estate (531)" > 7080 "Automotive equipment rental and leasing (5321)" > 7170 "Video tape and disk rental (53223)" > 7180 "Other consumer goods rental (53221, 53222, 53229, 5323)" > 7190 "Commercial, industrial, and other intangible assets rental and leasing (5324, 533)" > 7270 "Legal services (5411)" > 7280 "Accounting, tax preparation, bookkeeping, and payroll services (5412)" > 7290 "Architectural, engineering, and related services (5413)" > 7370 "Specialized design services (5414)" > 7380 "Computer systems design and related services (5415)" > 7390 "Management, scientific, and technical consulting services (5416)" > 7460 "Scientific research and development services (5417)" > 7470 "Advertising and related services (5418)" > 7480 "Veterinary services (54194)" > 7490 "Other professional, scientific, and technical services (5419 exc. 54194)" > 7570 "Management of companies and enterprises (551)" > 7580 "Employment services (5613)" > 7590 "Business support services (5614)" > 7670 "Travel arrangements and reservation services (5615)" > 7680 "Investigation and security services (5616)" > 7690 "** Services to buildings and dwellings (5617 exc. 56173)" > 7770 "Landscaping services (56173)" > 7780 "Other administrative and other support services (5611, 5612, 5619)" > 7790 "Waste management and remediation services (562)" > 7860 "Elementary and secondary schools (6111)" > 7870 "Colleges and universities, including junior colleges (6112, 6113)" > 7880 "Business, technical, and trade schools and training (6114, 6115)" > 7890 "Other schools, instruction, and educational services (6116, 6117)" > 7970 "Offices of physicians (6211)" > 7980 "Offices of dentists (6212)" > 7990 "Offices of chiropractors (62131)" > 8070 "Offices of optometrists (62132)" > 8080 "Offices of other health practitioners (6213 exc. 62131, 62132)" > 8090 "Outpatient care centers (6214)" > 8170 "Home health care services (6216)" > 8180 "Other health care services (6215, 6219)" > 8190 "Hospitals (622)" > 8270 "Nursing care facilities (6231)" > 8290 "Residential care facilities, without nursing (6232, 6233, 6239)" > 8370 "Individual and family services (6241)" > 8380 "Community food and housing, and emergency services (6242)" > 8390 "Vocational rehabilitation services (6243)" > 8470 "Child day care services (6244)" > 8560 "Independent artists, performing arts, spectator sports, and related industries (711)" > 8570 "Museums, art galleries, historical sites, and similar institutions (712)" > 8580 "Bowling centers (71395)" > 8590 "Other amusement, gambling, and recreation industries (713 exc. 71395)" > 8660 "Traveler accommodation (7211)" > 8670 "Recreational vehicle parks and camps, and rooming and boarding houses (7212, 7213)" > 8680 "Restaurants and other food services (722 exc. 7224)" > 8690 "Drinking places, alcoholic beverages (7224)" > 8770 "Automotive repair and maintenance (8111 exc. 811192)" > 8780 "Car washes (811192)" > 8790 "Electronic and precision equipment repair and maintenance (8112)" > 8870 "Commercial and industrial machinery and equipment repair and maintenance (8113)" > 8880 "Personal and household goods repair and maintenance (8114 exc. 81143)" > 8890 "Footwear and leather goods repair (81143)" > 8970 "Barber shops (812111)" > 8980 "Beauty salons (812112)" > 8990 "Nail salons and other personal care services (812113, 81219)" > 9070 "Drycleaning and laundry services (8123)" > 9080 "Funeral homes, cemeteries, and crematories (8122)" > 9090 "Other personal services (8129)" > 9160 "Religious organizations (8131)" > 9170 "Civic, social, advocacy organizations, and grantmaking and giving services (8132, 8133 > , 8134)" > 9180 "Labor unions (81393)" > 9190 "Business, professional, political, and similar organizations (8139 exc. 81393)" > 9290 "Private households (814)" > 9370 "Executive offices and legislative bodies (92111, 92112, 92114, pt. 92115)" > 9380 "Public finance activities (92113)" > 9390 "Other general government and support (92119)" > 9470 "Justice, public order, and safety activities (922, pt. 92115)" > 9480 "Administration of human resource programs (923)" > 9490 "Administration of environmental quality and housing programs (924, 925)" > 9570 "Administration of economic programs and space research (926, 927)" > 9590 "National security and international affairs (928)" > 9890 "Armed Forces" > 9970 "Problem referral" > 9990 "Uncodable ((Includes Refused or reported Classified))" > 9670 "U. S. Army" > 9680 "U. S. Air Force" > 9690 "U. S. Navy" > 9770 "U. S. Marines" > 9780 "U. S. Coast Guard" > 9790 "U. S. Armed Forces, Branch Not Specified" > 9870 "Military Reserves or National Guard" > ; . *dind02: 2000-; . label values dind02 dind02; . label define dind02 > 1 "Agriculture" > 2 "Forestry, logging, fishing, hunting, and trapping" > 3 "Mining" > 4 "Construction" > 5 "Nonmetallic mineral products" > 6 "Primary metals and fabricated metal products" > 7 "Machinery manufacturing" > 8 "Computer and electronic products" > 9 "Electrical equipment, appliance manufacturing" > 10 "Transportation equipment manufacturing" > 11 "Wood products" > 12 "Furniture and fixtures manufacturing" > 13 "Miscellaneous and not specified manufacturing" > 14 "Food manufacturing" > 15 "Beverage and tobacco products" > 16 "Textile, apparel, and leather manufacturing" > 17 "Paper and printing" > 18 "Petroleum and coal products" > 19 "Chemical manufacturing" > 20 "Plastics and rubber products" > 21 "Wholesale trade" > 22 "Retail trade" > 23 "Transportation and warehousing" > 24 "Utilities" > 25 "Publishing industries (except internet)" > 26 "Motion picture and sound recording industries" > 27 "Broadcasting (except internet)" > 28 "Internet publishing and broadcasting" > 29 "Telecommunications" > 30 "Internet service providers and data processing services" > 31 "Other information services" > 32 "Finance" > 33 "Insurance" > 34 "Real Estate" > 35 "Rental and leasing services" > 36 "Professional and Technical services" > 37 "Management of companies and enterprises" > 38 "Administrative and support services" > 39 "Waste management and remediation services" > 40 "Educational services" > 41 "Hospitals" > 42 "Health care services , except hospitals" > 43 "Social assistance" > 44 "Arts, entertainment, and recreation" > 45 "Accomodation" > 46 "Food services and drinking places" > 47 "Repair and maintenance" > 48 "Personal and laundry services" > 49 "Membership associations and organizations" > 50 "Private households" > 51 "Public Administration" > 52 "Armed forces" > ; . * occ2011: 2011-; . *label values occ2011 occ2011l ; . *label define occ2011l > 10 "Chief executives 11-1011" > 20 "General and operations managers 11-1021" > 30 "Legislators 11-1031" > 40 "Advertising and promotions managers 11-2011" > 50 "Marketing and sales managers 11-2020" > 60 "Public relations managers 11-2031" > 100 "Administrative services managers 11-3011" > 110 "Computer and information systems managers 11-3021" > 120 "Financial managers 11-3031" > 135 "Compensation and benefits managers 11-3111" > 136 "Human Resources Managers 11-3121" > 137 "Training and Development Managers 11-3131" > 140 "Industrial production managers 11-3051" > 150 "Purchasing managers 11-3061" > 160 "Transportation, storage, and distribution managers 11-3071" > 205 "Farmers, Ranchers, and other Agricultural Managers 11-9013" > 220 "Construction managers 11-9021" > 230 "Education administrators 11-9030" > 300 "Engineering managers 11-9041" > 310 "Food service managers 11-9051" > 325 "Funeral Service Managers 11-9061" > 330 "Gaming managers 11-9071" > 340 "Lodging managers 11-9081" > 350 "Medical and health services managers 11-9111" > 360 "Natural sciences managers 11-9121" > 400 "Postmasters and mail superintendents 11-9131" > 410 "Property, real estate, and community association managers 11-9141" > 420 "Social and community service managers 11-9151" > 425 "Emergency Management Directors 11-9161" > 430 "Managers, all other 11-9199" > 500 "Agents and business managers of artists, performers, and athletes 13-1011" > 510 "Purchasing agents and buyers, farm products 13-1021" > 520 "Wholesale and retail buyers, except farm products 13-1022" > 530 "Purchasing agents, except wholesale, retail, and farm products 13-1023" > 540 "Claims adjusters, appraisers, examiners, and investigators 13-1030" > 565 "Compliance Officers 13-1041" > 600 "Cost estimators 13-1051" > 630 "Human resources workers 13-1070" > 640 "Compensation, benefits, and job analysis specialists 13-1141" > 650 "Training and development specialists 13-1151" > 700 "Logisticians 13-1081" > 710 "Management analysts 13-1111" > 725 "Meeting, convention, and event planners 13-1121" > 726 "Fundraisers 13-1131" > 735 "Market research analysts and marketing specialists 13-1161" > 740 "Business operations specialists, all other 13-1199" > 800 "Accountants and auditors 13-2011" > 810 "Appraisers and assessors of real estate 13-2021" > 820 "Budget analysts 13-2031" > 830 "Credit analysts 13-2041" > 840 "Financial analysts 13-2051" > 850 "Personal financial advisors 13-2052" > 860 "Insurance underwriters 13-2053" > 900 "Financial examiners 13-2061" > 910 "Loan counselors and officers 13-2070" > 930 "Tax examiners, collectors, and revenue agents 13-2081" > 940 "Tax preparers 13-2082" > 950 "Financial specialists, all other 13-2099" > 1000 "Computer scientists and systems analysts 15-10XX" > 1005 "Computer and information research scientists 15-1111" > 1006 "Computer systems analysts 15-1121" > 1007 "Information security analysts 15-1122" > 1010 "Computer programmers 15-1131" > 1020 "Software developers, applications and systems software 15-113X" > 1030 "Web developers 15-1134" > 1050 "Computer support specialists 15-1150" > 1060 "Database administrators 15-1141" > 1105 "Network and computer systems administrators 15-1142" > 1106 "Computer network architects 15-1143" > 1107 "Computer occupations, all other 15-1199" > 1200 "Actuaries 15-2011" > 1210 "Mathematicians 15-2021" > 1220 "Operations research analysts 15-2031" > 1230 "Statisticians 15-2041" > 1240 "Miscellaneous mathematical science occupations 15-2090" > 1300 "Architects, except naval 17-1010" > 1310 "Surveyors, cartographers, and photogrammetrists 17-1020" > 1320 "Aerospace engineers 17-2011" > 1330 "Agricultural engineers 17-2021" > 1340 "Biomedical engineers 17-2031" > 1350 "Chemical engineers 17-2041" > 1360 "Civil engineers 17-2051" > 1400 "Computer hardware engineers 17-2061" > 1410 "Electrical and electronic engineers 17-2070" > 1420 "Environmental engineers 17-2081" > 1430 "Industrial engineers, including health and safety 17-2110" > 1440 "Marine engineers and naval architects 17-2121" > 1450 "Materials engineers 17-2131" > 1460 "Mechanical engineers 17-2141" > 1500 "Mining and geological engineers, including mining safety engineers 17-2151" > 1510 "Nuclear engineers 17-2161" > 1520 "Petroleum engineers 17-2171" > 1530 "Engineers, all other 17-2199" > 1540 "Drafters 17-3010" > 1550 "Engineering technicians, except drafters 17-3020" > 1560 "Surveying and mapping technicians 17-3031" > 1600 "Agricultural and food scientists 19-1010" > 1610 "Biological scientists 19-1020" > 1640 "Conservation scientists and foresters 19-1030" > 1650 "Medical scientists 19-1040" > 1660 "Life Scientists, all other 16-1099" > 1700 "Astronomers and physicists 19-2010" > 1710 "Atmospheric and space scientists 19-2021" > 1720 "Chemists and materials scientists 19-2030" > 1740 "Environmental scientists and geoscientists 19-2040" > 1760 "Physical scientists, all other 19-2099" > 1800 "Economists 19-3011" > 1815 "Survey Researchers 19-3022" > 1820 "Psychologists 19-3030" > 1830 "Sociologists 19-3041" > 1840 "Urban and regional planners 19-3051" > 1860 "Miscellaneous social scientists and related workers 19-3090" > 1900 "Agricultural and food science technicians 19-4011" > 1910 "Biological technicians 19-4021" > 1920 "Chemical technicians 19-4031" > 1930 "Geological and petroleum technicians 19-4041" > 1940 "Nuclear technicians 19-4051" > 1950 "Social science research assistants 19-4061" > 1965 "Miscellaneous life, physical, and social science technicians 19-4090" > 2000 "Counselors 21-1010" > 2010 "Social workers 21-1020" > 2015 "Probation Officers and Correctional Treatment Specialists 21-1092" > 2016 "Social and Human Service Assistants 21-1093" > 2025 "Miscellaneous community and social service specialists, 21-109X" > 2040 "Clergy 21-2011" > 2050 "Directors, religious activities and education 21-2021" > 2060 "Religious workers, all other 21-2099" > 2100 "Lawyers, Judges, magistrates, and other judicial workers 23-1011" > 2105 "Judicial Law Clerks 23-1012" > 2110 "Judges, Magistrates, and Other Judicial Workers 23-1020" > 2145 "Paralegals and Legal Assistants 23-2011" > 2160 "Miscellaneous Legal Support Workers 23-2090" > 2200 "Postsecondary teachers 25-1000" > 2300 "Preschool and kindergarten teachers 25-2010" > 2310 "Elementary and middle school teachers 25-2020" > 2320 "Secondary school teachers 25-2030" > 2330 "Special education teachers 25-2050" > 2340 "Other teachers and instructors 25-3000" > 2400 "Archivists, curators, and museum technicians 25-4010" > 2430 "Librarians 25-4021" > 2440 "Library technicians 25-4031" > 2540 "Teacher assistants 25-9041" > 2550 "Other education, training, and library workers 25-90XX" > 2600 "Artists and related workers 27-1010" > 2630 "Designers 27-1020" > 2700 "Actors 27-2011" > 2710 "Producers and directors 27-2012" > 2720 "Athletes, coaches, umpires, and related workers 27-2020" > 2740 "Dancers and choreographers 27-2030" > 2750 "Musicians, singers, and related workers 27-2040" > 2760 "Entertainers and performers, sports and related workers, all other 27-2099" > 2800 "Announcers 27-3010" > 2810 "News analysts, reporters and correspondents 27-3020" > 2825 "Public Relations Specialists 27-3031" > 2830 "Editors 27-3041" > 2840 "Technical writers 27-3042" > 2850 "Writers and authors 27-3043" > 2860 "Miscellaneous media and communication workers 27-3090" > 2900 "Broadcast and sound engineering technicians and radio operators 27-4010" > 2910 "Photographers 27-4021" > 2920 "Television, video, and motion picture camera operators and editors 27-4030" > 2960 "Media and communication equipment workers, all other 27-4099" > 3000 "Chiropractors 29-1011" > 3010 "Dentists 29-1020" > 3030 "Dietitians and nutritionists 29-1031" > 3040 "Optometrists 29-1041" > 3050 "Pharmacists 29-1051" > 3060 "Physicians and surgeons 29-1060" > 3110 "Physician assistants 29-1071" > 3120 "Podiatrists 29-1081" > 3140 "Audiologists 29-1181" > 3150 "Occupational therapists 29-1122" > 3160 "Physical therapists 29-1123" > 3200 "Radiation therapists 29-1124" > 3210 "Recreational therapists 29-1125" > 3220 "Respiratory therapists 29-1126" > 3230 "Speech-language pathologists 29-1127" > 3235 "Exercise Physiologists 29-1128" > 3245 "Therapists, all other 29-1129" > 3250 "Veterinarians 29-1131" > 3255 "Registered Nurses 29-1141" > 3256 "Nurse Anesthetists 29-1151" > 3257 "Nurse Midwives 29-1161" > 3258 "Nurse Practitioners 29-1171" > 3260 "Health diagnosing and treating practitioners, all other 29-1199" > 3300 "Clinical laboratory technologists and technicians 29-2010" > 3310 "Dental hygienists 29-2021" > 3320 "Diagnostic related technologists and technicians 29-2030" > 3400 "Emergency medical technicians and paramedics 29-2041" > 3420 "Health Practitioner Support Technologists and Technicians 29-2050" > 3500 "Licensed practical and licensed vocational nurses 29-2061" > 3510 "Medical records and health information technicians 29-2071" > 3520 "Opticians, dispensing 29-2081" > 3535 "Miscellaneous Health Technologists and Technicians 29-2090" > 3540 "Other healthcare practitioners and technical occupations 29-9000" > 3600 "Nursing, psychiatric, and home health aides 31-1010" > 3610 "Occupational therapist assistants and aides 31-2010" > 3620 "Physical therapist assistants and aides 31-2020" > 3630 "Massage therapists 31-9011" > 3640 "Dental assistants 31-9091" > 3645 "Medical Assistants 31-9092" > 3646 "Medical Transcriptionists 31-9094" > 3647 "Pharmacy Aides 31-9095" > 3648 "Veterinary Assistants and Laboratory Animal Caretakers 31-9096" > 3649 "Phlebotomists 31-9097" > 3655 "Miscellaneous Healthcare Support Occupations, Including 31-909X" > 3700 "First-line supervisors/managers of correctional officers 33-1011" > 3710 "First-line supervisors/managers of police and detectives 33-1012" > 3720 "First-line supervisors/managers of fire fighting and prevention workers 33-1021" > 3730 "Supervisors, protective service workers, all other 33-1099" > 3740 "Fire fighters 33-2011" > 3750 "Fire inspectors 33-2020" > 3800 "Bailiffs, correctional officers, and jailers 33-3010" > 3820 "Detectives and criminal investigators 33-3021" > 3830 "Fish and game wardens 33-3031" > 3840 "Parking enforcement workers 33-3041" > 3850 "Police and sheriff's patrol officers 33-3051" > 3860 "Transit and railroad police 33-3052" > 3900 "Animal control workers 33-9011" > 3910 "Private detectives and investigators 33-9021" > 3930 "Security Guards and Gaming Surveillance Officers 33-9030" > 3940 "Crossing guards 33-9091" > 3945 "Transportation Security Screeners 33-9093" > 3955 "Lifeguards and Other Recreational, and all Other Protective Service Workers 33-909X" > 4000 "Chefs and head cooks 35-1011" > 4010 "First-line supervisors/managers of food preparation and serving workers 35-1012" > 4020 "Cooks 35-2010" > 4030 "Food preparation workers 35-2021" > 4040 "Bartenders 35-3011" > 4050 "Combined food preparation and serving workers, including fast food 35-3021" > 4060 "Counter attendants, cafeteria, food concession, and coffee shop 35-3022" > 4110 "Waiters and waitresses 35-3031" > 4120 "Food servers, nonrestaurant 35-3041" > 4130 "Dining room and cafeteria attendants and bartender helpers 35-9011" > 4140 "Dishwashers 35-9021" > 4150 "Hosts and hostesses, restaurant, lounge, and coffee shop 35-9031" > 4160 "Food preparation and serving related workers, all other 35-9099" > 4200 "First-line supervisors/managers of housekeeping and janitorial workers 37-1011" > 4210 "First-line supervisors/managers of landscaping, lawn service, and groundskeeping worke > rs 37-1012" > 4220 "Janitors and building cleaners 31-201X" > 4230 "Maids and housekeeping cleaners 37-2012" > 4240 "Pest control workers 37-2021" > 4250 "Grounds maintenance workers 37-3010" > 4300 "First-line supervisors/managers of gaming workers 39-1010" > 4320 "First-line supervisors/managers of personal service workers 39-1021" > 4340 "Animal trainers 39-2011" > 4350 "Nonfarm animal caretakers 39-2021" > 4400 "Gaming services workers 39-3010" > 4410 "Motion picture projectionists 39-3021" > 4420 "Ushers, lobby attendants, and ticket takers 39-3031" > 4430 "Miscellaneous entertainment attendants and related workers 39-3090" > 4460 "Funeral service workers 39-40XX" > 4465 "Morticians, Undertakers, and Funeral Directors 39-4031" > 4500 "Barbers 39-5011" > 4510 "Hairdressers, hairstylists, and cosmetologists 39-5012" > 4520 "Miscellaneous personal appearance workers 39-5090" > 4530 "Baggage porters, bellhops, and concierges 39-6010" > 4540 "Tour and travel guides 39-7010" > 4600 "Child care workers 39-9011" > 4610 "Personal and home care aides 39-9021" > 4620 "Recreation and fitness workers 39-9030" > 4640 "Residential advisors 39-9041" > 4650 "Personal care and service workers, all other 39-9099" > 4700 "First-line supervisors/managers of retail sales workers 41-1011" > 4710 "First-line supervisors/managers of non-retail sales workers 41-1012" > 4720 "Cashiers 41-2010" > 4740 "Counter and rental clerks 41-2021" > 4750 "Parts salespersons 41-2022" > 4760 "Retail salespersons 41-2031" > 4800 "Advertising sales agents 41-3011" > 4810 "Insurance sales agents 41-3021" > 4820 "Securities, commodities, and financial services sales agents 41-3031" > 4830 "Travel agents 41-3041" > 4840 "Sales representatives, services, all other 41-3099" > 4850 "Sales representatives, wholesale and manufacturing 41-4010" > 4900 "Models, demonstrators, and product promoters 41-9010" > 4920 "Real estate brokers and sales agents 41-9020" > 4930 "Sales engineers 41-9031" > 4940 "Telemarketers 41-9041" > 4950 "Door-to-door sales workers, news and street vendors, and related workers 41-9091" > 4965 "Sales and Related Workers, all other 41-9099" > 5000 "First-line supervisors/managers of office and administrative support workers 43-1011" > 5010 "Switchboard operators, including answering service 43-2011" > 5020 "Telephone operators 43-2021" > 5030 "Communications equipment operators, all other 43-2099" > 5100 "Bill and account collectors 43-3011" > 5110 "Billing and posting clerks and machine operators 43-3021" > 5120 "Bookkeeping, accounting, and auditing clerks 43-3031" > 5130 "Gaming cage workers 43-3041" > 5140 "Payroll and timekeeping clerks 43-3051" > 5150 "Procurement clerks 43-3061" > 5160 "Tellers 43-3071" > 5165 "Financial Clerks, all other 43-3099" > 5200 "Brokerage clerks 43-4011" > 5210 "Correspondence clerks 43-4021" > 5220 "Court, municipal, and license clerks 43-4031" > 5230 "Credit authorizers, checkers, and clerks 43-4041" > 5240 "Customer service representatives 43-4051" > 5250 "Eligibility interviewers, government programs 43-4061" > 5260 "File Clerks 43-4071" > 5300 "Hotel, motel, and resort desk clerks 43-4081" > 5310 "Interviewers, except eligibility and loan 43-4111" > 5320 "Library assistants, clerical 43-4121" > 5330 "Loan interviewers and clerks 43-4131" > 5340 "New accounts clerks 43-4141" > 5350 "Order clerks 43-4151" > 5360 "Human resources assistants, except payroll and timekeeping 43-4161" > 5400 "Receptionists and information clerks 43-4171" > 5410 "Reservation and transportation ticket agents and travel clerks 43-4181" > 5420 "Information and record clerks, all other 43-4199" > 5500 "Cargo and freight agents 43-5011" > 5510 "Couriers and messengers 43-5021" > 5520 "Dispatchers 43-5030" > 5530 "Meter readers, utilities 43-5041" > 5540 "Postal service clerks 43-5051" > 5550 "Postal service mail carriers 43-5052" > 5560 "Postal service mail sorters, processors, and processing machine operators 43-5053" > 5600 "Production, planning, and expediting clerks 43-5061" > 5610 "Shipping, receiving, and traffic clerks 43-5071" > 5620 "Stock clerks and order fillers 43-5081" > 5630 "Weighers, measurers, checkers, and samplers, recordkeeping 43-5111" > 5700 "Secretaries and administrative assistants 43-6010" > 5800 "Computer operators 43-9011" > 5810 "Data entry keyers 43-9021" > 5820 "Word processors and typists 43-9022" > 5830 "Desktop publishers 43-9031" > 5840 "Insurance claims and policy processing clerks 43-9041" > 5850 "Mail clerks and mail machine operators, except postal service 43-9051" > 5860 "Office clerks, general 43-9061" > 5900 "Office machine operators, except computer 43-9071" > 5910 "Proofreaders and copy markers 43-9081" > 5920 "Statistical assistants 43-9111" > 5940 "Office and Administrative Support Workers, all other 43-9199" > 6005 "First-line supervisors of farming, fishing, and forestry workers 45-1011" > 6010 "Agricultural inspectors 45-2011" > 6020 "Animal breeders 45-2021" > 6040 "Graders and sorters, agricultural products 45-2041" > 6050 "Miscellaneous agricultural workers 45-2090" > 6100 "Fishers and related fishing workers 45-3011" > 6110 "Hunters and trappers 45-3021" > 6120 "Forest and conservation workers 45-4011" > 6130 "Logging workers 45-4020" > 6200 "First-line supervisors/managers of construction trades and extraction workers 47-1011" > 6210 "Boilermakers 47-2011" > 6220 "Brickmasons, blockmasons, and stonemasons 47-2020" > 6230 "Carpenters 47-2031" > 6240 "Carpet, floor, and tile installers and finishers 47-2040" > 6250 "Cement masons, concrete finishers, and terrazzo workers 47-2050" > 6260 "Construction laborers 47-2061" > 6300 "Paving, surfacing, and tamping equipment operators 47-2071" > 6310 "Pile-driver operators 47-2072" > 6320 "Operating engineers and other construction equipment operators 47-2073" > 6330 "Drywall installers, ceiling tile installers, and tapers 47-2080" > 6355 "Electricians 47-2111" > 6360 "Glaziers 47-2121" > 6400 "Insulation workers 47-2130" > 6420 "Painters, construction and maintenance 47-2141" > 6430 "Paperhangers 47-2142" > 6440 "Pipelayers, plumbers, pipefitters, and steamfitters 47-2150" > 6460 "Plasterers and stucco masons 47-2161" > 6500 "Reinforcing iron and rebar workers 47-2171" > 6515 "Roofers 47-2181" > 6520 "Sheet metal workers 47-2211" > 6530 "Structural iron and steel workers 47-2221" > 6540 "Solar Photovoltaic Installers 47-2231" > 6600 "Helpers, construction trades 47-3010" > 6660 "Construction and building inspectors 47-4011" > 6700 "Elevator installers and repairers 47-4021" > 6710 "Fence erectors 47-4031" > 6720 "Hazardous materials removal workers 47-4041" > 6730 "Highway maintenance workers 47-4051" > 6740 "Rail-track laying and maintenance equipment operators 47-4061" > 6750 "Septic tank servicers and sewer pipe cleaners 47-4071" > 6765 "Miscellaneous construction and related workers 47-4090" > 6800 "Derrick, rotary drill, and service unit operators, oil, gas, and mining 47-5010" > 6820 "Earth drillers, except oil and gas 47-5021" > 6830 "Explosives workers, ordnance handling experts, and blasters 47-5031" > 6840 "Mining machine operators 47-5040" > 6910 "Roof bolters, mining 47-5061" > 6920 "Roustabouts, oil and gas 47-5071" > 6930 "Helpers--extraction workers 47-5081" > 6940 "Other extraction workers 47-50XX" > 7000 "First-line supervisors/managers of mechanics, installers, and repairers 49-1011" > 7010 "Computer, automated teller, and office machine repairers 49-2011" > 7020 "Radio and telecommunications equipment installers and repairers 49-2020" > 7030 "Avionics technicians 49-2091" > 7040 "Electric motor, power tool, and related repairers 49-2092" > 7050 "Electrical and electronics installers and repairers, transportation equipment 49-2093" > 7100 "Electrical and electronics repairers, industrial and utility 49-209X" > 7110 "Electronic equipment installers and repairers, motor vehicles 49-2096" > 7120 "Electronic home entertainment equipment installers and repairers 49-2097" > 7130 "Security and fire alarm systems installers 49-2098" > 7140 "Aircraft mechanics and service technicians 49-3011" > 7150 "Automotive body and related repairers 49-3021" > 7160 "Automotive glass installers and repairers 49-3022" > 7200 "Automotive service technicians and mechanics 49-3023" > 7210 "Bus and truck mechanics and diesel engine specialists 49-3031" > 7220 "Heavy vehicle and mobile equipment service technicians and mechanics 49-3040" > 7240 "Small engine mechanics 49-3050" > 7260 "Miscellaneous vehicle and mobile equipment mechanics, installers, and repairers 49-309 > 0" > 7300 "Control and valve installers and repairers 49-9010" > 7315 "Heating, air conditioning, and refrigeration mechanics and installers 49-9021" > 7320 "Home appliance repairers 49-9031" > 7330 "Industrial and refractory machinery mechanics 49-904X" > 7340 "Maintenance and repair workers, general 49-9071" > 7350 "Maintenance workers, machinery 49-9043" > 7360 "Millwrights 49-9044" > 7410 "Electrical power-line installers and repairers 49-9051" > 7420 "Telecommunications line installers and repairers 49-9052" > 7430 "Precision instrument and equipment repairers 49-9060" > 7440 "Wind Turbine Service Technicians 49-9081" > 7510 "Coin, vending, and amusement machine servicers and repairers 49-9091" > 7520 "Commercial divers 49-9092" > 7540 "Locksmiths and safe repairers 49-9094" > 7550 "Manufactured building and mobile home installers 49-9095" > 7560 "Riggers 49-9096" > 7600 "Signal and track switch repairers 49-9097" > 7610 "Helpers--installation, maintenance, and repair workers 49-9098" > 7630 "Other installation, maintenance, and repair workers 49-909X" > 7700 "First-line supervisors/managers of production and operating workers 51-1011" > 7710 "Aircraft structure, surfaces, rigging, and systems assemblers 51-2011" > 7720 "Electrical, electronics, and electromechanical assemblers 51-2020" > 7730 "Engine and other machine assemblers 51-2031" > 7740 "Structural metal fabricators and fitters 51-2041" > 7750 "Miscellaneous assemblers and fabricators 51-2090" > 7800 "Bakers 51-3011" > 7810 "Butchers and other meat, poultry, and fish processing workers 51-3020" > 7830 "Food and tobacco roasting, baking, and drying machine operators and tenders 51-3091" > 7840 "Food batchmakers 51-3092" > 7850 "Food cooking machine operators and tenders 51-3093" > 7855 "Food Processing Workers, all Other 51-3099" > 7900 "Computer control programmers and operators 51-4010" > 7920 "Extruding and drawing machine setters, operators, and tenders, metal and plastic 51-40 > 21" > 7930 "Forging machine setters, operators, and tenders, metal and plastic 51-4022" > 7940 "Rolling machine setters, operators, and tenders, metal and plastic 51-4023" > 7950 "Cutting, punching, and press machine setters, operators, and tenders, metal and plasti > c 51-4031" > 7960 "Drilling and boring machine tool setters, operators, and tenders, metal and plastic 51 > -4032" > 8000 "Grinding, lapping, polishing, and buffing machine tool setters, operators, and tenders > , metal and plastic 51-4033" > 8010 "Lathe and turning machine tool setters, operators, and tenders, metal and plastic 51-4 > 034" > 8020 "Milling and planing machine setters, operators, and tenders, metal and plastic 51-4035 > " > 8030 "Machinists 51-4041" > 8040 "Metal furnace and kiln operators and tenders 51-4050" > 8060 "Model makers and patternmakers, metal and plastic 51-4060" > 8100 "Molders and molding machine setters, operators, and tenders, metal and plastic 51-4070 > " > 8120 "Multiple machine tool setters, operators, and tenders, metal and plastic 51-4081" > 8130 "Tool and die makers 51-4111" > 8140 "Welding, soldering, and brazing workers 51-4120" > 8150 "Heat treating equipment setters, operators, and tenders, metal and plastic 51-4191" > 8160 "Lay-out workers, metal and plastic 51-4192" > 8200 "Plating and coating machine setters, operators, and tenders, metal and plastic 51-4193 > " > 8210 "Tool grinders, filers, and sharpeners 51-4194" > 8220 "Metalworkers and plastic workers, all other 51-4199" > 8250 "Prepress technicians and workers 51-5111" > 8255 "Printing Press Operators 51-5112" > 8256 "Print Binding and Finishing Workers 51-5113" > 8300 "Laundry and dry-cleaning workers 51-6011" > 8310 "Pressers, textile, garment, and related materials 51-6021" > 8320 "Sewing machine operators 51-6031" > 8330 "Shoe and leather workers and repairers 51-6041" > 8340 "Shoe machine operators and tenders 51-6042" > 8350 "Tailors, dressmakers, and sewers 51-6050" > 8360 "Textile bleaching and dyeing machine operators and tenders 51-6061" > 8400 "Textile cutting machine setters, operators, and tenders 51-6062" > 8410 "Textile knitting and weaving machine setters, operators, and tenders 51-6063" > 8420 "Textile winding, twisting, and drawing out machine setters, operators, and tenders 51- > 6064" > 8430 "Extruding and forming machine setters, operators, and tenders, synthetic and glass fib > ers 51-6091" > 8440 "Fabric and apparel patternmakers 51-6092" > 8450 "Upholsterers 51-6093" > 8460 "Textile, apparel, and furnishings workers, all other 51-6099" > 8500 "Cabinetmakers and bench carpenters 51-7011" > 8510 "Furniture finishers 51-7021" > 8520 "Model makers and patternmakers, wood 51-7030" > 8530 "Sawing machine setters, operators, and tenders, wood 51-7041" > 8540 "Woodworking machine setters, operators, and tenders, except sawing 51-7042" > 8550 "Woodworkers, all other 51-7099" > 8600 "Power plant operators, distributors, and dispatchers 51-8010" > 8610 "Stationary engineers and boiler operators 51-8021" > 8620 "Water and liquid waste treatment plant and system operators 51-8031" > 8630 "Miscellaneous plant and system operators 51-8090" > 8640 "Chemical processing machine setters, operators, and tenders 51-9010" > 8650 "Crushing, grinding, polishing, mixing, and blending workers 51-9020" > 8710 "Cutting workers 51-9030" > 8720 "Extruding, forming, pressing, and compacting machine setters, operators, and tenders 5 > 1-9041" > 8730 "Furnace, kiln, oven, drier, and kettle operators and tenders 51-9051" > 8740 "Inspectors, testers, sorters, samplers, and weighers 51-9061" > 8750 "Jewelers and precious stone and metal workers 51-9071" > 8760 "Medical, dental, and ophthalmic laboratory technicians 51-9080" > 8800 "Packaging and filling machine operators and tenders 51-9111" > 8810 "Painting workers 51-9120" > 8830 "Photographic process workers and processing machine operators 51-9151" > 8840 "Semiconductor processors 51-9141" > 8850 "Cementing and gluing machine operators and tenders 51-9191" > 8860 "Cleaning, washing, and metal pickling equipment operators and tenders 51-9192" > 8900 "Cooling and freezing equipment operators and tenders 51-9193" > 8910 "Etchers and engravers 51-9194" > 8920 "Molders, shapers, and casters, except metal and plastic 51-9195" > 8930 "Paper goods machine setters, operators, and tenders 51-9196" > 8940 "Tire builders 51-9197" > 8950 "Helpers--production workers 51-9198" > 8965 "Production workers, all other 51-9199" > 9000 "Supervisors, transportation and material moving workers 53-1000" > 9030 "Aircraft pilots and flight engineers 53-2010" > 9040 "Air traffic controllers and airfield operations specialists 53-2020" > 9050 "Flight Attendants 53-2031" > 9110 "Ambulance drivers and attendants, except emergency medical technicians 53-3011" > 9120 "Bus drivers 53-3020" > 9130 "Driver/sales workers and truck drivers 53-3030" > 9140 "Taxi drivers and chauffeurs 53-3041" > 9150 "Motor vehicle operators, all other 53-3099" > 9200 "Locomotive engineers and operators 53-4010" > 9230 "Railroad brake, signal, and switch operators 53-4021" > 9240 "Railroad conductors and yardmasters 53-4031" > 9260 "Subway, streetcar, and other rail transportation workers 53-40XX" > 9300 "Sailors and marine oilers 53-5011" > 9310 "Ship and boat captains and operators 53-5020" > 9330 "Ship engineers 53-5031" > 9340 "Bridge and lock tenders 53-6011" > 9350 "Parking lot attendants 53-6021" > 9360 "Service station attendants 53-6031" > 9410 "Transportation inspectors 53-6051" > 9415 "Transportation Attendants, Except Flight Attendants 53-6061" > 9420 "Other transportation workers 53-60XX" > 9500 "Conveyor operators and tenders 53-7011" > 9510 "Crane and tower operators 53-7021" > 9520 "Dredge, excavating, and loading machine operators 53-7030" > 9560 "Hoist and winch operators 53-7041" > 9600 "Industrial truck and tractor operators 53-7051" > 9610 "Cleaners of vehicles and equipment 53-7061" > 9620 "Laborers and freight, stock, and material movers, hand 53-7062" > 9630 "Machine feeders and offbearers 53-7063" > 9640 "Packers and packagers, hand 53-7064" > 9650 "Pumping station operators 53-7070" > 9720 "Refuse and recyclable material collectors 53-7081" > 9730 "Shuttle car operators 53-7111" > 9740 "Tank car, truck, and ship loaders 53-7121" > 9750 "Material moving workers, all other 53-7199" > 9840 "Armed Forces" > 9970 "Problem referral" > 9990 "Not reported (Includes Refused, Classified, blank and all other noncodable entries)" > 9800 "Military officer special and tactical operations leaders/managers 55-1010" > 9810 "First-line enlisted military supervisors/managers 55-2010" > 9820 "Military enlisted tactical operations and air/weapons specialists and crew members 55- > 3010" > 9830 "Military, rank not specified 99-9999" > ; . * docc00: 2000-; . label values docc00 docc00l ; . label define docc00l > 1 "Management occupations" > 2 "Business and financial operations occupations" > 3 "Computer and mathematical science occupations" > 4 "Architecture and engineering occupations" > 5 "Life, physical, and social science occupations" > 6 "Community and social service occupations" > 7 "Legal occupations" > 8 "Education, training, and library occupations" > 9 "Arts, design, entertainment, sports, and media occupations" > 10 "Healthcare practitioner and technical occupations" > 11 "Healthcare support occupations" > 12 "Protective service occupations" > 13 "Food preparation and serving related occupations" > 14 "Building and grounds cleaning and maintenance occupations" > 15 "Personal care and service occupations" > 16 "Sales and related occupations" > 17 "Office and administrative support occupations" > 18 "Farming, fishing, and forestry occupations" > 19 "Construction and extraction occupations" > 20 "Installation, maintenance, and repair occupations" > 21 "Production occupations" > 22 "Transportation and material moving occupations" > 23 "Armed Forces" > ; . * eligible: 1979:5-; . label values eligible P21L; . label define P21L > 1 "Earnings Eligible For Edit" > 2 "Other" > ; . * reason94: 1994-; . label values reason94 P22L; . label define P22L > 1 "Slack Work/Business Conditions" > 2 "Seasonal Work" > 3 "Job Started Or Ended During Week" > 4 "Vacation/Personal Day" > 5 "Own Illness/Injury/Medical Appointment" > 6 "Holiday (legal Or Religious)" > 7 "Child Care Problems" > 8 "Other Family/Personal Obligations" > 9 "Labor Dispute" > 10 "Weather Affected Job" > 11 "School/Training" > 12 "Civic/Military Duty" > 13 "Other Reason" > ; . * absent94: 1994-; . label values absent94 P23L; . label define P23L > 1 "On Layoff" > 2 "Slack Work/Business Conditions" > 3 "Waiting For A New Job To Begin" > 4 "Vacation/Personal Days" > 5 "Own Illness/Injury/Medical Problems" > 6 "Child Care Problems" > 7 "Other Family/Personal Obligation" > 8 "Maternity/Paternity Leave" > 9 "Labor Dispute" > 10 "Weather Affected Job" > 11 "School/Training" > 12 "Civic/Military Duty" > 13 "Does Not Work In The Business" > 14 "Other (specify)" > ; . *why3594: 1994-; . label values why3594 P3594L; . label define P3594L > 1 "Usu. FT-Slack Work/Business Conditions" > 2 "Usu. FT-Seasonal Work" > 3 "Usu. FT-Job Started/Ended During Week" > 4 "Usu. FT-Vacation/Personal Day" > 5 "Usu. FT-Own Illness/Injury/Medical Appt" > 6 "Usu. FT-Holiday (religious Or Legal)" > 7 "Usu. FT-Child Care Problems" > 8 "Usu. FT-Other Fam/Pers Obligations" > 9 "Usu. FT-Labor Dispute" > 10 "Usu. FT-Weather Affected Job" > 11 "Usu. FT-School/Training" > 12 "Usu. FT-Civic/Military Duty" > 13 "Usu. FT-Other Reason" > 14 "Usu. PT-Slack Work/Business Conditions" > 15 "Usu. PT-Could Only Find PT Work" > 16 "Usu. PT-Seasonal Work" > 17 "Usu. PT-Child Care Problems" > 18 "Usu. PT-Other Fam/Pers Obligations" > 19 "Usu. PT-Health/Medical Limitations" > 20 "Usu. PT-School/Training" > 21 "Usu. PT-Retired/Ss Limit On Earnings" > 22 "Usu. PT-Workweek <35 Hours" > 23 "Usu. PT-Other Reason" > ; . * ftpt94: 1994-; . label values ftpt94 P160L; . label define P160L > 1 "Not In Labor Force" > 2 "FT Hours (35+), Usually FT" > 3 "PT For Economic Reasons, Usually FT" > 4 "PT For Non-Economic Reasons, Usually FT" > 5 "Not At Work, Usually FT" > 6 "PT Hours, Usually PT For Economic Reasons" > 7 "PT hrs, Usually PT For Non-Economic" > 8 "FT Hours, Usually PT For Economic Reas" > 9 "FT hrs, Usually PT For Non-Economic" > 10 "Not at work, Usually Part-Time" > 11 "Unemployed FT" > 12 "Unemployed PT" > ; . * studftpt: 1984-; . label values studftpt P24L; . label define P24L > 1 "Full-time" > 2 "Part-time" > ; . * unionmme: 1983-; . label values unionmme P25L; . label define P25L > 1 "Yes" > 2 "No" > ; . * unioncov: 1983-; . label values unioncov P26L; . label define P26L > 1 "Yes" > 2 "No" > ; . * otc: 1994-; . label values otc yesno; . label define yesno > 1 "Yes" > 2 "No" > ; . * hrhtype: 1984-; . label values hrhtype hrhtype; . label define hrhtype > 0 "Non-interview household" > 1 "Husband/wife primary fam (neither in Armed Forces)" > 2 "Husband/wife primary fam (one/both in Armed Forces)" > 3 "Unmarried civilian male primary fam householder" > 4 "Unmarried civilian female primary fam householder" > 5 "Unmarried primary fam householder in Armed Forces" > 6 "Civilian male primary individual" > 7 "Civilian female primary individual" > 8 "Primary ind HH - reference person in Armed Forces" > 9 "Group quarters with family" > 10 "Group quarters without family" > ; . ** Race 2003-April 2012 has 21 Categories" > ** "Race May 2012 on has 26 Categories" > label values race race26; > label define race26 > 1 "White Only" > 2 "Black Only" > 3 "American Indian, Alaskan Native Only" > 4 "Asian Only" > 5 "Hawaiian/Pacific Islander Only" > 6 "White-Black" > 7 "White-AI" > 8 "White-Asian" > 9 "White-HP" > 10 "Black-AI" > 11 "Black-Asian" > 12 "Black-HP" > 13 "AI-Asian" > 14 "AI-HP" > 15 "Asian-HP" > 16 "W-B-AI" > 17 "W-B-A" > 18 "W-B-HP" > 19 "W-AI-A" > 20 "W-AI-HP" > 21 "W-A-HP" > 22 "B-AI-A" > 23 "W-B-AI-A" > 24 "W-AI-A-HP" > 25 "Other 3 Race Combinations" > 26 "Other 4 and 5 Race Combinations" > ; > > end of do-file (saving in Stata 12 format, which Stata 11 can read) file /homes/data/morg/annual/morg17.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+--------------------------------------------------------- hhid | 0 intmonth | 309,989 6.479707 3.460642 1 12 hurespli | 309,978 1.36211 .7463577 0 14 hrhtype | 309,989 2.723171 2.28834 1 10 minsamp | 309,989 6.025156 1.999845 4 8 -------------+--------------------------------------------------------- hrlonglk | 309,989 1.990903 .134579 0 2 hrsample | 0 hrhhid2 | 0 serial | 0 hhnum | 309,989 1.055657 .2509049 1 8 -------------+--------------------------------------------------------- stfips | 309,989 28.11869 16.18003 1 56 cbsafips | 309,989 22613.91 16552.9 0 49740 county | 309,989 25.61279 61.74649 0 810 centcity | 256,420 1.933227 .7269674 1 3 smsastat | 306,998 1.194682 .3959564 1 2 -------------+--------------------------------------------------------- icntcity | 39,665 1.383613 .9612415 1 7 smsa04 | 309,989 3.669317 2.605531 0 7 relref95 | 309,989 3.146902 3.20397 1 18 age | 309,989 47.63887 18.65853 16 85 spouse | 160,110 1.592274 .7248576 1 16 -------------+--------------------------------------------------------- sex | 309,989 1.522215 .499507 1 2 grade92 | 309,989 40.37295 2.717818 31 46 race | 309,989 1.42687 1.266645 1 26 ethnic | 39,404 2.545833 2.401379 1 8 lineno | 309,989 1.747727 1.030785 1 16 -------------+--------------------------------------------------------- famnum | 309,989 .7932443 .4789416 0 5 pfamrel | 309,989 1.360455 1.074974 0 4 marital | 309,989 3.42518 2.650124 1 7 prpertyp | 309,989 2.004274 .0652387 2 3 penatvty | 309,989 87.64961 81.41681 57 555 -------------+--------------------------------------------------------- pemntvty | 309,989 97.75426 90.81505 57 555 pefntvty | 309,989 97.90291 90.97807 57 555 prcitshp | 309,989 1.491443 1.216139 1 5 prcitflg | 309,989 .2056589 2.181416 0 41 peinusyr | 309,989 2.131418 5.717539 0 24 -------------+--------------------------------------------------------- selfproxy | 304,277 1.486244 .5039958 1 3 lfsr94 | 308,664 2.92879 2.375281 1 7 absent94 | 6,952 6.292865 3.507719 4 14 uhourse | 171,477 38.67556 10.94422 0 99 reason94 | 12,585 5.304569 2.902221 1 13 -------------+--------------------------------------------------------- hourslw | 176,229 38.61846 12.87977 1 99 laydur | 1,129 7.352524 8.695585 1 52 dwrsn | 5,147 7.555081 3.186493 1 11 why3594 | 43,008 15.19831 6.913292 1 23 prunedur | 7,703 22.27522 29.30021 0 119 -------------+--------------------------------------------------------- untype | 7,703 3.413086 1.655298 1 6 ftpt94 | 308,664 2.51594 2.322105 1 12 class94 | 198,387 4.093262 1.154416 1 8 agri | 198,387 .0203995 .1413629 0 1 eligible | 309,989 1.471655 .4991967 1 2 -------------+--------------------------------------------------------- otc | 163,781 1.861938 .3449665 1 2 ernpdh2 | 92,835 1.742834 .437074 1 2 paidhre | 163,781 1.413967 .4925443 1 2 earnhre | 95,942 1752.098 1015.435 7 9999 earnwke | 163,781 940.6726 682.2393 0 2884.61 -------------+--------------------------------------------------------- unionmme | 163,781 1.895641 .3057265 1 2 unioncov | 146,689 1.986175 .1167653 1 2 schenr | 188,848 1.848836 .3582095 1 2 studftpt | 28,547 1.142222 .3492834 1 2 schlvl | 28,547 1.601639 .489569 1 2 -------------+--------------------------------------------------------- earnwt | 309,989 9874.377 5359.665 0 97702.22 weight | 309,989 2468.594 1331.447 0 11026.66 chldpres | 309,989 1.259158 2.739323 0 15 ownchild | 309,989 .4633552 .9395599 0 11 I25d | 163,781 .374958 .4841136 0 1 -------------+--------------------------------------------------------- I25c | 95,981 .4115606 .4921189 0 1 I25a | 309,989 .4981112 4.282374 0 43 I25b | 309,989 4.530932 13.01283 0 42 qstnum | 0 occurnum | 0 -------------+--------------------------------------------------------- ged | 88,482 1.097421 .2965318 1 2 gedhigr | 8,620 6.453248 1.393892 1 8 yrcoll | 85,081 2.79851 .9977575 1 5 grprof | 0 gr6cor | 0 -------------+--------------------------------------------------------- ms123 | 0 cmpwgt | 309,989 2468.791 1333.46 0 12454.48 ind02 | 198,387 6285.785 2698.556 170 9890 occ2012 | 198,387 4104.804 2588.26 10 9840 occ002 | 309,989 109.8386 743.8449 -1 9750 -------------+--------------------------------------------------------- vet1 | 24,805 3.544971 1.589925 1 9 vet2 | 4,952 3.26979 1.436712 1 9 vet3 | 1,284 2.867601 1.429424 1 9 vet4 | 195 3.620513 1.643353 1 8 linedad | 42,346 1.706678 .9716206 1 14 -------------+--------------------------------------------------------- linemom | 30,964 1.148721 .4065693 1 3 recnum | 309,989 223384.5 128952.9 1 445862 year | 309,989 2017 0 2017 2017 ym_file | 309,989 689.4797 3.460642 684 695 ym | 309,989 680.4042 6.89263 669 692 -------------+--------------------------------------------------------- ch02 | 309,989 .0614344 .2401259 0 1 ch35 | 309,989 .0663378 .2488721 0 1 ch613 | 309,989 .1427986 .3498679 0 1 ch1417 | 309,989 .0869063 .2816982 0 1 ch05 | 309,989 .1058457 .3076405 0 1 -------------+--------------------------------------------------------- ihigrdc | 223,429 12.35084 2.44337 0 18 docc00 | 198,387 12.19153 6.777995 1 23 dind02 | 198,387 47.86626 253.5627 1 3895 . . exit, clear end of do-file . exit