-------------------------------------------------------------------------------------------------------------------------- name: log: /disk/nber10/SCCS/morg/sources/annual2012.log log type: text opened on: 19 Dec 2013, 18:31:11 . set memory 2000m set memory ignored. Memory no longer needs to be set in modern Statas; memory adjustments are performed on the fly automatically. . 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/aef.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 { 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 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, 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. display "inlisting 96 97" 200. if inlist( `1', 1996 , 1997 ) { 201. replace smsastat = smsa995 202. } 203. display "replace smsastat = . if smsastat==3 | smsastat<0" 204. replace smsastat = . if smsastat==3 | smsastat<0 205. if `1' == 1994 { 206. drop smsa93 207. replace centcity = centcitx 208. replace icntcity = icntct94 209. replace pmsarank = . if intmonth > 3 210. replace pmsarank = . if pmsarank <= 0 211. replace cmsarank = . if intmonth > 3 212. } 213. if inlist( `1', 1996 , 1997 ) { 214. drop pmsarank 215. } 216. if `1' >= 1994 & `1' <= 1997 { 217. drop centcitx icntct94 smsa995 218. } 219. if `1' >= 1994 { 220. replace peinusyr = . if peinusyr < 0 221. } 222. display "replace centcity = . if centcity==4 | centcity<=0" 223. replace centcity = . if centcity==4 | centcity<=0 224. if `1' >= 1986 & `1' < 1994 { 225. replace pmsarank = . if pmsarank<=0 226. } 227. if `1' >= 1995 & `1' <= 1997 { 228. drop cmsarank 229. } 230. if `1' >= 1986 { 231. replace icntcity = . if icntcity<=0 232. } 233. if `1' > 1984 & `1' < 1995 { 234. replace cmsarank = . if cmsarank<=0 235. } 236. if `1' >= 1989 & `1' <= 2004 { 237. replace msafips = . if msafips <=0 238. replace cmsacode = . if cmsacode<=0 239. } 240. ** 1970 occupation variables are not correct on morg83.raw . if `1' == 1983 { 241. drop docc70 occ70 242. } 243. if `1' == 1985 { 244. replace smsarank = . if intmonth > 9 245. } 246. if `1' == 1984 { 247. display "drop icntcity pmsarank cmsarank" 248. drop icntcity pmsarank cmsarank 249. } 250. if `1' == 1985 & intmonth < 10 { 251. drop icntcity pmsarank cmsarank 252. } 253. if `1' == 1994 { 254. replace cmsarank = . if intmonth>3 255. } 256. display "replace smsasize=. if smsasize<=0" 257. **should line below be commented out??? . capture replace smsasize=. if smsasize<=0 258. if `1' < 1985 { 259. display "generate byte smsa70 = smsasize" 260. generate byte smsa70 = smsasize 261. } 262. if `1' > 1985 & `1' < 1995 { 263. generate byte smsa80 = smsasize 264. } 265. if `1' == 1985 { 266. generate byte smsa70 = smsasize if intmonth<10 267. } 268. if `1' == 1985 { 269. generate byte smsa80 = smsasize if intmonth>9 270. } 271. display "drop smsasize" 272. capture drop smsasize 273. if `1' > 1985 & `1' < 1989 { 274. drop smsarank 275. } 276. if `1' < 1983 { 277. display "drop unioncov unionmme occ80 ind80" 278. drop unioncov unionmme occ80 ind80 279. } 280. . * Demography . display "Demography" 281. if `1' > 1983 & `1' < 1994 { 282. replace ownchild = . if ownchild ==0 283. replace ownchild = ownchild - 1 284. generate int ch613=chldpres 285. generate int ch1417=chldpres 286. } 287. if `1' >= 1984 { 288. replace spouse = . if spouse < 0 289. } 290. display "if `1' > 1983 & `1' < 1989 {" 291. if `1' > 1983 & `1' < 1989 { 292. generate int ch05= chldpres 293. recode ch05 (4 6/8 = 1) (0/3 5 = 0) 294. recode ch613 (3 5 7/8 = 1) (0/2 4 6 = 0) 295. recode ch1417 (2 5/6 8 =1) (0/1 3/4 7 = 0) 296. } 297. if `1' > 1988 & `1' < 1994 { 298. display "if `1' > 1988 & `1' < 1994 {" 299. generate int ch02 = chldpres 300. generate int ch35 = chldpres 301. recode ch02 (2 6/8 12/14 16 = 1) (0/1 3/5 9/11 15 = 0) 302. recode ch35 (3 6 9/10 12/13 15/16 = 1) (0/2 4/5 7/8 11 14 = 0) 303. recode ch613 (4 7 9 11/12 14/16 = 1) (0/3 5/6 8 10 13 = 0) 304. recode ch1417 (5 8 10/11 13/16 = 1) (0/4 6/7 9 12 = 0 ) 305. generate int ch05 = ch02 306. replace ch05 = ch35 if ch35 == 1 307. label variable ch02 "Children 0-2" 308. label variable ch35 "Children 3-5" 309. } 310. if `1' > 1983 & `1' < 1994 { 311. display "if `1' > 1983 & `1' < 1994 {" 312. label variable ch05 "Children 0-5" 313. label variable ch613 "Children 6-13" 314. label variable ch1417 "Children 6-17" 315. } 316. if `1' >= 1994 & `1' <= 1996 { 317. drop prpertyp 318. } 319. if `1' >= 1997 { 320. replace prpertyp=. if prpertyp<0 321. } 322. if `1' == 1998 { 323. drop ownchild chldpres 324. } 325. if `1' >= 1999 { 326. replace ownchild = . if ownchild < 0 327. replace chldpres = . if chldpres < 0 328. generate int ch02 = chldpres 329. generate int ch35 = chldpres 330. generate int ch613 = chldpres 331. generate int ch1417 = chldpres 332. recode ch02 (1 5/7 11/13 15 = 1) (0 2/4 8/10 14 = 0) 333. recode ch35 (2 5 8/9 11/12 14/15 = 1) (0/1 3/4 6/7 10 13 =0) 334. recode ch613 (3 6 8 10/11 13/15 = 1) (0/2 4/5 7 9 12 = 0) 335. recode ch1417 (4 7 9/10 12/15 = 1) (0/3 5/6 8 11 = 0) 336. generate int ch05 = ch02 337. replace ch05 = ch35 if ch35 == 1 338. } 339. . if `1' == 1999 { 340. replace ownchild = . if intmonth < 10 341. replace chldpres = . if intmonth < 10 342. replace ch613 = . if intmonth < 10 343. replace ch1417 = . if intmonth < 10 344. replace ch05 = . if intmonth < 10 345. replace ch02 = . if intmonth < 10 346. replace ch35 = . if intmonth < 10 347. } 348. if `1' > 1988 & `1' < 1992 { 349. drop grade92 350. } 351. if `1' < 1989 { 352. replace gradeat = gradeat - 1 353. replace marital = 7 if marital==5 354. } 355. if `1' > 1991 { 356. replace grade92 = . if grade92 < 0 357. } 358. if `1' >= 1998 { 359. replace ged = . if ged < 0 360. replace gedhigr = . if gedhigr < 0 361. replace yrcoll = . if yrcoll < 0 362. replace grprof = . if grprof < 0 363. replace gr6cor = . if gr6cor < 0 364. replace ms123 = . if ms123 < 0 365. generate double ihigrdc = . 366. ** Jaeger . label var ihigrdc "Imputed highest grade completed" 367. replace ihigrdc = 0 if grade92==31 368. replace ihigrdc = 2.5 if grade92==32 369. replace ihigrdc = 5.5 if grade92==33 370. replace ihigrdc = 7.5 if grade92==34 371. replace ihigrdc = 9 if grade92==35 372. replace ihigrdc =10 if grade92==36 373. replace ihigrdc =11 if grade92==37 374. replace ihigrdc =12 if grade92==38 375. replace ihigrdc = 0 if grade92==39 & ged==2 & gedhigr==1 376. replace ihigrdc = 2.5 if grade92==39 & ged==2 & gedhigr==2 377. replace ihigrdc = 5.5 if grade92==39 & ged==2 & gedhigr==3 378. replace ihigrdc = 7.5 if grade92==39 & ged==2 & gedhigr==4 379. replace ihigrdc = 9 if grade92==39 & ged==2 & gedhigr==5 380. replace ihigrdc = 10 if grade92==39 & ged==2 & gedhigr==6 381. replace ihigrdc = 11 if grade92==39 & ged==2 & gedhigr==7 382. replace ihigrdc = 12 if grade92==39 & ged==2 & gedhigr==8 383. replace ihigrdc = 12 if ged==1 384. replace ihigrdc = 12 if grade92>=40 & grade92<=42 & yrcoll==1 385. replace ihigrdc = 13 if grade92>=40 & grade92<=42 & yrcoll==2 386. replace ihigrdc = 14 if grade92>=40 & grade92<=42 & yrcoll==3 387. replace ihigrdc = 15 if grade92>=40 & grade92<=42 & yrcoll==4 388. replace ihigrdc = 16 if grade92>=40 & grade92<=42 & yrcoll==5 389. replace ihigrdc = 16 if grade92==43 & grprof==2 390. replace ihigrdc = 17 if grade92==43 & gr6cor==2 391. replace ihigrdc = 18 if grade92==43 & gr6cor==1 392. replace ihigrdc = 17 if grade92==44 & ms123==1 393. replace ihigrdc = 18 if grade92==44 & ms123>=2 & ms123<. 394. replace ihigrdc = 18 if grade92==45 | grade92==46 395. } 396. if inlist( `1', 1992 , 1993 ) { 397. drop gradecp gradeat 398. } 399. if `1' == 1995 { 400. replace relref94 = . if intmonth > 2 401. replace relref95 = . if intmonth < 3 402. } 403. if inlist( `1', 1996 , 1997 ) { 404. drop relref94 405. } 406. if `1' == 1994 { 407. drop relref95 408. } 409. if `1' >= 1994 { 410. replace penatvty = . if penatvty < 0 411. replace pemntvty = . if pemntvty < 0 412. replace pefntvty = . if pefntvty < 0 413. replace prcitshp = . if prcitshp < 0 414. replace prcitflg = . if prcitflg < 0 415. } 416. if `1' > 1989 { 417. replace ethnic = . if ethnic < 0 418. replace ethnic = . if ethnic >= 10 419. } 420. if `1' >= 1994 & `1' <= 2004 { 421. replace veteran = . if veteran < 0 422. } 423. if `1' >= 2003 & `1' <= 2004 { 424. drop vet1-vet4 425. } 426. if `1' == 2005 { 427. display "replacing veteran Jan-July 2005" 428. replace veteran = . if veteran < 0 & intmonth <= 7 429. display "replacing vet1-vet4 if intmonth <= 7 " 430. replace vet1 = . if intmonth <= 7 431. replace vet2 = . if intmonth <= 7 432. replace vet3 = . if intmonth <= 7 433. replace vet4 = . if intmonth <= 7 434. } 435. if `1' == 2005 { 436. replace veteran = . if intmonth >= 8 437. replace vet1 = . if vet1 < 0 & intmonth >= 8 438. replace vet2 = . if vet2 < 0 & intmonth >= 8 439. replace vet3 = . if vet3 < 0 & intmonth >= 8 440. replace vet4 = . if vet4 < 0 & intmonth >= 8 441. } 442. if `1' >= 2006 { 443. drop veteran 444. replace vet1=. if vet1<0 445. replace vet2=. if vet2<0 446. replace vet3=. if vet3<0 447. replace vet4=. if vet4<0 448. } 449. * Employment . display "Employment" 450. if `1' >= 1994 { 451. replace selfproxy = . if selfproxy<0 452. replace dwrsn = . if dwrsn<0 453. replace otc = . if otc<0 454. } 455. if `1' >= 1994 & `1' <= 2002 { 456. replace occ80 = . if occ80 <0 457. replace ind80 = . if ind80 < 10 458. replace class94 = . if class94<0 459. } 460. if `1' >= 2000 & `1' <=2010 { 461. replace occ00 = . if occ00 <0 462. replace ind02 = . if ind02 < 10 463. replace class94 = . if class94<0 464. } 465. if ( `1' == 2011 ) { 466. rename occ00 occ2011 467. replace occ2011 = . if occ2011 <0 468. replace ind02 = . if ind02 < 10 469. replace class94 = . if class94<0 470. } 471. if ( `1' == 2012 ) { 472. di "2012 Occupation" 473. rename occ00 occ2011 474. gen occ2012 = occ2011 475. replace occ2011 = . if occ2011 <0 | intmonth >=5 476. replace occ2012 = . if occ2012 <0 | intmonth <=4 477. replace ind02 = . if ind02 < 10 478. replace class94 = . if class94<0 479. } 480. if ( `1' >= 2013 ) { 481. rename occ00 occ2012 482. replace occ2012 = . if occ2012 <0 483. replace ind02 = . if ind02 < 10 484. replace class94 = . if class94<0 485. } 486. #delimit ; delimiter now ; . ; . display "docc80" ; 487. if `1' >= 1983 & `1' <= 2002 { > display "generate int docc80=occ80;"; 488. generate int docc80=occ80; 489. display "recode docc80"; 490. 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); 491. } ; 492. display "** The renaming is part of the Census reweighting ; " ; 493. if inlist( `1', 2000 , 2001 , 2002 ) { > *display "renaming docc80 docc80p " ; 494. *rename docc80 docc80p ; . } ; 495. display "docc00" ; 496. if `1' >= 2000 & `1'<=2010 { > display "generate int docc00=occ00;"; 497. generate int docc00=occ00; 498. display "recode docc00"; 499. 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); 500. } ; 501. if `1' >= 2011 { > display "generate int docc00=occ2011;"; 502. generate int docc00=occ2011; 503. display "recode docc00"; 504. 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); 505. } ; 506. display "dind"; 507. if `1'<= 1982 { > display "`1' <= 1982: creating dind from ind70"; 508. gen dind=ind70 ; 509. 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) ; 510. } ; 511. if `1' <=1991 & `1' >=1983 { > display "replacing dind for `1': `1' <=1991 & `1' >=1983"; 512. gen dind=ind80; 513. 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); 514. } ; 515. if `1' >= 1992 & `1' <= 2002 { > display "replacing dind for `1': `1' >= 1992 & `1' <= 2002 "; 516. gen dind=ind80; 517. 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) ; 518. }; 519. if `1' >= 2000 { > display "replacing dind for `1' >= 2000 " ; 520. gen dind02 = ind02; 521. 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) ; 522. } ; 523. #delimit cr delimiter now cr . **Wages (If earnings are 0, then wage rate is missing, not zero). . display "Wages" 524. replace paidhr = . if paidhr <=0 525. replace paidhre = . if paidhre <=0 526. replace earnhr = . if earnhr <=0 527. replace earnhre = . if earnhre <=0 528. replace earnwke = . if earnwke < 0 529. if `1' < 1989 { 530. replace eligible = 2 if eligible == . 531. } 532. if `1' >= 1989 { 533. replace eligible = 2 if eligible <= 0 534. replace agri = 0 if agri==2 535. replace agri = . if agri< 0 536. replace untype = . if untype<0 537. } 538. if `1' < 1989 { 539. replace I25a = 0 if I25a ==. 540. replace I25b = 0 if I25b ==. 541. replace I25c = 0 if I25c ==. 542. replace I25d = 0 if I25d ==. 543. replace agri = . if agri< 0 544. } 545. if `1' >= 1994 { 546. replace I25a = 0 if I25a <= 3 547. replace I25b = 0 if I25b <= 3 548. *replace I25a = . if I25a < 0 . *replace I25b = . if I25b < 0 . replace earnhre = . if earnhre ==1 549. replace uhourse = . if lfsr94 >2 | lfsr94 <1 550. replace lfsr94 = . if lfsr94 < 0 551. replace laydur = . if laydur < 0 552. } 553. if `1' >= 1996 { 554. replace I25c = . if I25c < 0 555. replace I25d = . if I25d < 0 556. } 557. if `1' == 1995 { 558. replace I25c = . if I25c < 0 559. replace I25d = . if I25d < 0 560. replace I25c = . if intmonth < 9 561. replace I25d = . if intmonth < 9 562. } 563. if `1' == 1994 { 564. drop I25c I25d 565. } 566. ** Hours, Unions . display "Hours, Unions" 567. if `1' >= 1994 { 568. replace reason94 = . if reason94< 0 569. replace absent94 = . if absent94< 0 570. replace studftpt = . if studftpt< 0 571. replace schenr = . if schenr < 0 572. replace schlvl = . if schlvl < 0 573. replace ftpt94 = . if ftpt94 < 0 574. replace hourslw = . if hourslw < 0 575. replace hourslw = 99 if hourslw >99 & hourslw != . 576. replace uhourse = . if uhourse < 0 577. replace why3594 = . if why3594 < 0 578. replace unionmme = . if unionmme< 0 579. replace unioncov = . if unioncov< 0 580. } 581. . ** Save and exit . compress 582. saveold /homes/data/morg/annual/morg`2',replace 583. summarize 584. clear 585. capture ! /usr/bin/rm -f aef.dct /tmp/aef.raw 586. capture ! /bin/rm -f aef.dct /tmp/aef.raw 587. capture ! /usr/bin/chmod a+r /home/data/morg/annual/morg`2'.dta 588. capture ! /bin/chmod a+r /home/data/morg/annual/morg`2'.dta 589. capture ! /usr/bin/chmod g+w /home/data/morg/annual/morg`2'.dta 590. capture ! /bin/chmod g+w /home/data/morg/annual/morg`2'.dta 591. capture ! /usr/bin/chgrp web /home/data/morg/annual/morg`2'.dta 592. capture ! /bin/chgrp web /home/data/morg/annual/morg`2'.dta 593. 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 . *aef2 1980 80 79_83 . *aef2 1981 81 79_83 . *aef2 1982 82 79_83 . *aef2 1983 83 79_83 . aef2 1984 84 84_88 dct_name aef84_88.dbd raw_name=../raw/morg84 (0 observations deleted) obs 496681 # of persons with age<=15 113291 # of non-interview records 39725 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 7,055 1.42 1.42 1 | 7,190 1.45 2.87 2 | 7,355 1.48 4.35 3 | 7,515 1.51 5.86 4 | 7,147 1.44 7.30 5 | 7,190 1.45 8.75 6 | 6,874 1.38 10.13 7 | 6,739 1.36 11.49 8 | 6,577 1.32 12.81 9 | 6,658 1.34 14.15 10 | 6,503 1.31 15.46 11 | 6,611 1.33 16.79 12 | 7,050 1.42 18.21 13 | 7,768 1.56 19.78 14 | 7,660 1.54 21.32 15 | 7,399 1.49 22.81 16 | 7,271 1.46 24.27 17 | 7,553 1.52 25.79 18 | 7,125 1.43 27.23 19 | 7,152 1.44 28.67 20 | 7,394 1.49 30.16 21 | 7,548 1.52 31.68 22 | 7,548 1.52 33.20 23 | 7,814 1.57 34.77 24 | 7,844 1.58 36.35 25 | 7,847 1.58 37.93 26 | 7,928 1.60 39.53 27 | 7,993 1.61 41.13 28 | 7,974 1.61 42.74 29 | 7,837 1.58 44.32 30 | 7,856 1.58 45.90 31 | 7,502 1.51 47.41 32 | 7,341 1.48 48.89 33 | 7,309 1.47 50.36 34 | 7,080 1.43 51.79 35 | 7,151 1.44 53.22 36 | 7,060 1.42 54.65 37 | 7,201 1.45 56.10 38 | 5,540 1.12 57.21 39 | 5,475 1.10 58.31 40 | 5,838 1.18 59.49 41 | 5,827 1.17 60.66 42 | 5,405 1.09 61.75 43 | 4,972 1.00 62.75 44 | 4,714 0.95 63.70 45 | 4,743 0.95 64.66 46 | 4,472 0.90 65.56 47 | 4,455 0.90 66.45 48 | 4,441 0.89 67.35 49 | 4,415 0.89 68.24 50 | 4,275 0.86 69.10 51 | 4,177 0.84 69.94 52 | 4,206 0.85 70.78 53 | 4,341 0.87 71.66 54 | 4,383 0.88 72.54 55 | 4,445 0.89 73.44 56 | 4,564 0.92 74.35 57 | 4,408 0.89 75.24 58 | 4,424 0.89 76.13 59 | 4,450 0.90 77.03 60 | 4,507 0.91 77.94 61 | 4,264 0.86 78.80 62 | 4,241 0.85 79.65 63 | 4,187 0.84 80.49 64 | 4,023 0.81 81.30 65 | 3,988 0.80 82.10 66 | 3,822 0.77 82.87 67 | 3,557 0.72 83.59 68 | 3,353 0.68 84.27 69 | 3,376 0.68 84.95 70 | 3,311 0.67 85.61 71 | 3,127 0.63 86.24 72 | 2,915 0.59 86.83 73 | 2,757 0.56 87.38 74 | 2,622 0.53 87.91 75 | 2,503 0.50 88.42 76 | 2,271 0.46 88.87 77 | 1,985 0.40 89.27 78 | 1,766 0.36 89.63 79 | 1,708 0.34 89.97 80 | 1,574 0.32 90.29 81 | 1,377 0.28 90.57 82 | 1,172 0.24 90.80 83 | 1,094 0.22 91.02 84 | 929 0.19 91.21 85 | 752 0.15 91.36 86 | 698 0.14 91.50 87 | 532 0.11 91.61 88 | 469 0.09 91.70 89 | 349 0.07 91.77 90 | 330 0.07 91.84 91 | 226 0.05 91.88 92 | 174 0.04 91.92 93 | 125 0.03 91.94 94 | 96 0.02 91.96 95 | 68 0.01 91.98 96 | 46 0.01 91.99 97 | 28 0.01 91.99 98 | 12 0.00 92.00 99 | 33 0.01 92.00 . | 39,725 8.00 100.00 ------------+----------------------------------- Total | 496,681 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- . | 39,725 100.00 100.00 ------------+----------------------------------- Total | 39,725 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 7,055 6.23 6.23 1 | 7,190 6.35 12.57 2 | 7,355 6.49 19.07 3 | 7,515 6.63 25.70 4 | 7,147 6.31 32.01 5 | 7,190 6.35 38.35 6 | 6,874 6.07 44.42 7 | 6,739 5.95 50.37 8 | 6,577 5.81 56.18 9 | 6,658 5.88 62.05 10 | 6,503 5.74 67.79 11 | 6,611 5.84 73.63 12 | 7,050 6.22 79.85 13 | 7,768 6.86 86.71 14 | 7,660 6.76 93.47 15 | 7,399 6.53 100.00 ------------+----------------------------------- Total | 113,291 100.00 (113291 observations deleted) (39725 observations deleted) obs 343665 after keeping age>15&age!=. infile successful no observations (0 real changes made) (0 real changes made) (0 real changes made) (170223 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (173442 real changes made) Geography smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (52042 real changes made, 52042 to missing) replace centcity = . if centcity==4 | centcity<=0 (60378 real changes made, 60378 to missing) drop icntcity pmsarank cmsarank replace smsasize=. if smsasize<=0 generate byte smsa70 = smsasize (260231 missing values generated) drop smsasize Demography (57586 real changes made, 57586 to missing) (286079 real changes made) (0 real changes made) if 1984 > 1983 & 1984 < 1989 { (ch05: 286079 changes made) (ch613: 286079 changes made) (ch1417: 286079 changes made) if 1984 > 1983 & 1984 < 1994 { (343665 real changes made) (81303 real changes made) Employment docc80 (84867 missing values generated) recode docc80 (docc80: 258798 changes made) ** The renaming is part of the Census reweighting ; docc00 dind (84867 missing values generated) (dind: 258798 changes made) Wages (0 real changes made) (0 real changes made) (139 real changes made, 139 to missing) (0 real changes made) (0 real changes made) (166417 real changes made) (340647 real changes made) (340000 real changes made) (330739 real changes made) (317565 real changes made) (0 real changes made) Hours, Unions spouse was int now byte ym_file was float now int ym was float now int ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc80 was int now byte dind was float now byte file /homes/data/morg/annual/morg84.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- minsamp | 343665 6.018733 1.999915 4 8 hhid | 0 state | 343665 52.94592 26.21478 11 95 smsarank | 343665 5.208657 10.52625 0 57 hurespli | 342138 1.677154 .8042839 1 7 -------------+-------------------------------------------------------- schenr | 67249 1.60679 .4884665 1 2 schlvl | 26443 1.494119 .4999749 1 2 hhnum | 343665 1.091967 .3292597 1 8 activlwr | 343665 2.899946 2.248446 1 7 hourslw | 194147 38.67536 13.99387 1 99 -------------+-------------------------------------------------------- reasonlw | 50027 10.10916 3.922843 1 15 absentlw | 14140 3.595827 2.646903 1 8 classer | 260853 1.385236 .7467635 1 5 lineno | 343665 1.798656 1.080923 0 36 relahh | 343665 2.425787 1.294567 1 6 -------------+-------------------------------------------------------- age | 343665 42.42364 18.52201 16 99 marital | 343665 2.907369 2.505176 1 7 race | 343665 1.160287 .4479898 1 3 sex | 343665 1.530744 .4990547 1 2 veteran | 161889 4.880949 1.773514 1 6 -------------+-------------------------------------------------------- gradeat | 343665 12.30682 3.033712 0 18 gradecp | 343665 1.222187 .415717 1 2 esr | 343665 2.626823 2.128543 1 7 studftpt | 26443 1.113754 .3175184 1 2 intmonth | 343665 6.497298 3.455863 1 12 -------------+-------------------------------------------------------- weight | 343665 1539.723 779.9211 23.15 16655.71 smsastat | 291623 1.335951 .4723226 1 2 centcity | 283287 2.066438 .7879235 1 3 ethnic | 342905 7.777338 1.142623 1 9 ptstat | 343665 .6296713 1.793381 0 6 -------------+-------------------------------------------------------- ftpt79 | 343665 1.044878 1.203676 0 5 agri | 343665 .0238779 .152669 0 1 doinglw | 343148 2.967763 2.386222 1 8 hourslwa | 193609 38.64001 14.03294 0 99 uhours35 | 49363 1.709256 .4541103 1 2 -------------+-------------------------------------------------------- why35lw | 49476 10.10983 3.922558 1 15 class | 259518 2.014161 1.814957 1 8 uhours | 175777 37.76727 11.07017 0 99 paidhr | 174954 1.413577 .4924759 1 2 earnhr | 90719 674.1399 378.9471 1 9999 -------------+-------------------------------------------------------- uearnwk | 151915 318.304 215.6998 0 999 earnwt | 343665 6161.268 3132.74 93.28 68606.39 spouse | 17528 49.17064 28.88493 0 99 eligible | 343665 1.484242 .4997523 1 2 uhourse | 177248 37.80939 10.96385 0 99 -------------+-------------------------------------------------------- paidhre | 177248 1.409979 .4918309 1 2 earnhre | 104580 682.9258 377.0261 50 9999 earnwke | 177248 322.4493 215.8607 0 999 unionmme | 177248 1.814266 .3888931 1 2 I25a | 343665 .0087818 .0932991 0 1 -------------+-------------------------------------------------------- I25b | 343665 .0106645 .1027169 0 1 I25c | 343665 .0376122 .1902568 0 1 I25d | 343665 .0759461 .2649122 0 1 uearnwke | 104580 257.0817 167.2497 0 999 unionmm | 174659 1.814433 .3887582 1 2 -------------+-------------------------------------------------------- unioncov | 143212 1.953803 .2099128 1 2 ind80 | 258798 548.2273 284.3926 10 991 occ80 | 258798 400.6177 245.0892 3 905 famnum | 343665 .8561041 .4080798 0 5 ownchild | 286079 .9393944 1.17641 0 8 -------------+-------------------------------------------------------- chldpres | 343665 2.086194 2.019784 0 8 pfamrel | 343665 1.796348 1.344383 0 5 recnum | 343665 248417.5 143454.5 8 496681 year | 343665 1984 0 1984 1984 ym_file | 343665 293.4973 3.455863 288 299 -------------+-------------------------------------------------------- ym | 343665 284.4411 6.898542 273 296 smsa70 | 83434 1.614941 .4866121 1 2 ch613 | 343665 .2191262 .4136549 0 1 ch1417 | 343665 .1887769 .3913318 0 1 ch05 | 343665 .1606652 .3672224 0 1 -------------+-------------------------------------------------------- docc80 | 258798 24.53068 12.20869 1 46 dind | 258798 29.65944 13.94557 1 52 . aef2 1985 85 84_88 dct_name aef84_88.dbd raw_name=../raw/morg85 (0 observations deleted) obs 496333 # of persons with age<=15 111546 # of non-interview records 41196 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 6,978 1.41 1.41 1 | 7,092 1.43 2.83 2 | 7,344 1.48 4.31 3 | 7,336 1.48 5.79 4 | 7,270 1.46 7.26 5 | 7,008 1.41 8.67 6 | 6,922 1.39 10.06 7 | 6,778 1.37 11.43 8 | 6,616 1.33 12.76 9 | 6,395 1.29 14.05 10 | 6,546 1.32 15.37 11 | 6,498 1.31 16.68 12 | 6,632 1.34 18.02 13 | 6,956 1.40 19.42 14 | 7,619 1.54 20.95 15 | 7,556 1.52 22.47 16 | 7,239 1.46 23.93 17 | 7,019 1.41 25.35 18 | 6,934 1.40 26.74 19 | 6,719 1.35 28.10 20 | 7,009 1.41 29.51 21 | 7,227 1.46 30.97 22 | 7,538 1.52 32.48 23 | 7,528 1.52 34.00 24 | 7,686 1.55 35.55 25 | 7,977 1.61 37.16 26 | 7,975 1.61 38.76 27 | 7,907 1.59 40.36 28 | 7,903 1.59 41.95 29 | 7,813 1.57 43.52 30 | 8,004 1.61 45.14 31 | 7,503 1.51 46.65 32 | 7,592 1.53 48.18 33 | 7,353 1.48 49.66 34 | 7,279 1.47 51.13 35 | 7,225 1.46 52.58 36 | 7,008 1.41 53.99 37 | 6,994 1.41 55.40 38 | 7,241 1.46 56.86 39 | 5,554 1.12 57.98 40 | 5,589 1.13 59.11 41 | 5,473 1.10 60.21 42 | 5,899 1.19 61.40 43 | 5,163 1.04 62.44 44 | 4,894 0.99 63.42 45 | 4,701 0.95 64.37 46 | 4,475 0.90 65.27 47 | 4,322 0.87 66.14 48 | 4,359 0.88 67.02 49 | 4,284 0.86 67.88 50 | 4,447 0.90 68.78 51 | 4,110 0.83 69.61 52 | 4,219 0.85 70.46 53 | 4,200 0.85 71.30 54 | 4,249 0.86 72.16 55 | 4,446 0.90 73.06 56 | 4,449 0.90 73.95 57 | 4,441 0.89 74.85 58 | 4,287 0.86 75.71 59 | 4,391 0.88 76.60 60 | 4,604 0.93 77.52 61 | 4,298 0.87 78.39 62 | 4,302 0.87 79.26 63 | 4,064 0.82 80.08 64 | 4,084 0.82 80.90 65 | 4,173 0.84 81.74 66 | 3,659 0.74 82.48 67 | 3,640 0.73 83.21 68 | 3,522 0.71 83.92 69 | 3,234 0.65 84.57 70 | 3,345 0.67 85.24 71 | 3,096 0.62 85.87 72 | 3,022 0.61 86.48 73 | 2,714 0.55 87.02 74 | 2,583 0.52 87.54 75 | 2,536 0.51 88.06 76 | 2,199 0.44 88.50 77 | 2,126 0.43 88.93 78 | 1,819 0.37 89.29 79 | 1,720 0.35 89.64 80 | 1,597 0.32 89.96 81 | 1,375 0.28 90.24 82 | 1,229 0.25 90.49 83 | 1,070 0.22 90.70 84 | 948 0.19 90.89 85 | 824 0.17 91.06 86 | 628 0.13 91.19 87 | 584 0.12 91.30 88 | 431 0.09 91.39 89 | 373 0.08 91.46 90 | 701 0.14 91.61 91 | 131 0.03 91.63 92 | 96 0.02 91.65 93 | 73 0.01 91.67 94 | 62 0.01 91.68 95 | 33 0.01 91.69 96 | 33 0.01 91.69 97 | 15 0.00 91.70 98 | 15 0.00 91.70 99 | 8 0.00 91.70 . | 41,196 8.30 100.00 ------------+----------------------------------- Total | 496,333 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- . | 41,196 100.00 100.00 ------------+----------------------------------- Total | 41,196 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 6,978 6.26 6.26 1 | 7,092 6.36 12.61 2 | 7,344 6.58 19.20 3 | 7,336 6.58 25.77 4 | 7,270 6.52 32.29 5 | 7,008 6.28 38.57 6 | 6,922 6.21 44.78 7 | 6,778 6.08 50.86 8 | 6,616 5.93 56.79 9 | 6,395 5.73 62.52 10 | 6,546 5.87 68.39 11 | 6,498 5.83 74.21 12 | 6,632 5.95 80.16 13 | 6,956 6.24 86.40 14 | 7,619 6.83 93.23 15 | 7,556 6.77 100.00 ------------+----------------------------------- Total | 111,546 100.00 (111546 observations deleted) (41196 observations deleted) obs 343591 after keeping age>15&age!=. infile successful no observations (0 real changes made) (0 real changes made) (0 real changes made) (171215 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (172376 real changes made) Geography smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (28172 real changes made, 28172 to missing) replace centcity = . if centcity==4 | centcity<=0 (44790 real changes made, 44790 to missing) (26898 real changes made, 26898 to missing) (86232 real changes made, 86232 to missing) replace smsasize=. if smsasize<=0 (315355 missing values generated) (284257 missing values generated) drop smsasize Demography (59464 real changes made, 59464 to missing) (284127 real changes made) (0 real changes made) if 1985 > 1983 & 1985 < 1989 { (ch05: 284127 changes made) (ch613: 284127 changes made) (ch1417: 284127 changes made) if 1985 > 1983 & 1985 < 1994 { (343591 real changes made) (81764 real changes made) Employment docc80 (84502 missing values generated) recode docc80 (docc80: 259089 changes made) ** The renaming is part of the Census reweighting ; docc00 dind (84502 missing values generated) (dind: 259089 changes made) Wages (0 real changes made) (0 real changes made) (158 real changes made, 158 to missing) (0 real changes made) (0 real changes made) (163359 real changes made) (340407 real changes made) (339831 real changes made) (330677 real changes made) (317872 real changes made) (0 real changes made) Hours, Unions spouse was int now byte ym_file was float now int ym was float now int ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc80 was int now byte dind was float now byte file /homes/data/morg/annual/morg85.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- minsamp | 343591 6.006758 1.999991 4 8 hhid | 0 state | 343591 51.33941 26.06169 11 95 smsarank | 257359 3.511733 9.005105 0 57 hurespli | 342248 1.657474 .7885685 1 7 -------------+-------------------------------------------------------- schenr | 64899 1.623769 .4844428 1 2 schlvl | 24417 1.477987 .4995254 1 2 hhnum | 343591 1.088154 .3204148 1 8 activlwr | 343591 2.9089 2.275778 1 7 hourslw | 195489 38.83549 13.87874 1 99 -------------+-------------------------------------------------------- reasonlw | 49342 10.18935 3.892784 1 15 absentlw | 14543 3.554012 2.618309 1 8 classer | 260928 1.368845 .7266629 1 5 lineno | 343591 1.784584 1.061058 0 31 relahh | 343591 2.422956 1.297635 1 6 -------------+-------------------------------------------------------- age | 343591 42.56664 18.46448 16 99 marital | 343591 2.924937 2.507229 1 7 race | 343591 1.161241 .4468883 1 3 sex | 343591 1.531641 .4989986 1 2 veteran | 251916 5.286107 1.516428 1 6 -------------+-------------------------------------------------------- gradeat | 343591 12.36867 3.014508 0 18 gradecp | 343591 1.218882 .4134892 1 2 esr | 343591 2.629592 2.152968 1 7 studftpt | 24417 1.092722 .2900488 1 2 intmonth | 343591 6.498558 3.454322 1 12 -------------+-------------------------------------------------------- weight | 343591 1555.97 743.511 38.05 20548.99 smsastat | 315419 1.294415 .4557799 1 2 centcity | 213774 2.053655 .781938 1 3 ethnic | 342892 7.779298 1.128798 1 9 ptstat | 343591 .6217974 1.785371 0 6 -------------+-------------------------------------------------------- ftpt79 | 343591 1.043491 1.199024 0 5 agri | 343591 .0215954 .1453587 0 1 doinglw | 343019 2.979059 2.416207 1 8 hourslwa | 194990 38.79767 13.91569 0 99 uhours35 | 48687 1.70524 .4559397 1 2 -------------+-------------------------------------------------------- why35lw | 48820 10.18626 3.892225 1 15 class | 259797 1.978722 1.782954 1 8 uhours | 178925 37.88957 11.1269 0 99 paidhr | 178216 1.413089 .4923899 1 2 earnhr | 92890 700.7255 404.3421 1 9999 -------------+-------------------------------------------------------- uearnwk | 155730 333.2232 224.6136 0 999 earnwt | 343591 6227.852 2996.579 151.49 83988.15 spouse | 17710 49.44591 28.94375 0 99 eligible | 343591 1.475446 .4993975 1 2 uhourse | 180232 37.96892 10.96679 0 99 -------------+-------------------------------------------------------- paidhre | 180232 1.409123 .4916733 1 2 earnhre | 106495 709.4404 397.2761 50 9999 earnwke | 180232 337.6849 224.2307 0 999 unionmme | 180232 1.821425 .3829974 1 2 I25a | 343591 .0092668 .0958175 0 1 -------------+-------------------------------------------------------- I25b | 343591 .0109432 .1040361 0 1 I25c | 343591 .0375854 .1901916 0 1 I25d | 343591 .0748535 .2631552 0 1 uearnwke | 106495 267.6373 174.3618 0 999 unionmm | 177849 1.822068 .3824564 1 2 -------------+-------------------------------------------------------- unioncov | 147208 1.958148 .2002523 1 2 ind80 | 259089 552.5288 281.9046 10 991 occ80 | 259089 396.0338 244.8626 3 905 famnum | 343591 .8496934 .4115308 0 8 ownchild | 284127 .9246851 1.183464 0 8 -------------+-------------------------------------------------------- chldpres | 343591 2.049891 2.008151 0 8 pfamrel | 343591 1.79035 1.356084 0 5 recnum | 343591 248236.4 143386.4 4 496331 year | 343591 1985 0 1985 1985 ym_file | 343591 305.4986 3.454322 300 311 -------------+-------------------------------------------------------- ym | 343591 296.4783 6.933788 285 308 smsa70 | 28236 1.619422 .4855376 1 2 smsa80 | 59334 5.24566 1.894542 2 8 ch613 | 343591 .2109689 .4079969 0 1 ch1417 | 343591 .1839891 .3874759 0 1 -------------+-------------------------------------------------------- ch05 | 343591 .1595181 .3661591 0 1 docc80 | 259089 24.24333 12.20356 1 46 dind | 259089 29.85553 13.80779 1 52 . aef2 1986 86 84_88 dct_name aef84_88.dbd raw_name=../raw/morg86 (0 observations deleted) obs 488997 # of persons with age<=15 108922 # of non-interview records 42024 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 6,822 1.40 1.40 1 | 7,121 1.46 2.85 2 | 6,940 1.42 4.27 3 | 7,185 1.47 5.74 4 | 7,176 1.47 7.21 5 | 7,115 1.46 8.66 6 | 7,087 1.45 10.11 7 | 6,740 1.38 11.49 8 | 6,563 1.34 12.83 9 | 6,435 1.32 14.15 10 | 6,223 1.27 15.42 11 | 6,350 1.30 16.72 12 | 6,335 1.30 18.01 13 | 6,492 1.33 19.34 14 | 6,887 1.41 20.75 15 | 7,451 1.52 22.27 16 | 7,346 1.50 23.78 17 | 7,059 1.44 25.22 18 | 6,483 1.33 26.55 19 | 6,354 1.30 27.85 20 | 6,206 1.27 29.11 21 | 6,671 1.36 30.48 22 | 7,020 1.44 31.91 23 | 7,220 1.48 33.39 24 | 7,401 1.51 34.90 25 | 7,893 1.61 36.52 26 | 7,713 1.58 38.10 27 | 7,805 1.60 39.69 28 | 7,878 1.61 41.30 29 | 7,705 1.58 42.88 30 | 7,874 1.61 44.49 31 | 7,693 1.57 46.06 32 | 7,591 1.55 47.61 33 | 7,445 1.52 49.14 34 | 7,259 1.48 50.62 35 | 7,063 1.44 52.07 36 | 6,759 1.38 53.45 37 | 6,646 1.36 54.81 38 | 7,042 1.44 56.25 39 | 7,004 1.43 57.68 40 | 5,761 1.18 58.86 41 | 5,235 1.07 59.93 42 | 5,436 1.11 61.04 43 | 5,609 1.15 62.19 44 | 5,044 1.03 63.22 45 | 4,771 0.98 64.19 46 | 4,478 0.92 65.11 47 | 4,367 0.89 66.00 48 | 4,300 0.88 66.88 49 | 4,188 0.86 67.74 50 | 4,339 0.89 68.63 51 | 4,094 0.84 69.46 52 | 3,994 0.82 70.28 53 | 4,001 0.82 71.10 54 | 3,989 0.82 71.91 55 | 4,205 0.86 72.77 56 | 4,273 0.87 73.65 57 | 4,089 0.84 74.48 58 | 4,161 0.85 75.34 59 | 4,209 0.86 76.20 60 | 4,210 0.86 77.06 61 | 4,190 0.86 77.91 62 | 4,211 0.86 78.77 63 | 4,000 0.82 79.59 64 | 3,880 0.79 80.39 65 | 4,087 0.84 81.22 66 | 3,847 0.79 82.01 67 | 3,498 0.72 82.72 68 | 3,441 0.70 83.43 69 | 3,322 0.68 84.11 70 | 3,297 0.67 84.78 71 | 3,087 0.63 85.41 72 | 2,950 0.60 86.02 73 | 2,856 0.58 86.60 74 | 2,627 0.54 87.14 75 | 2,484 0.51 87.65 76 | 2,299 0.47 88.12 77 | 2,041 0.42 88.53 78 | 1,930 0.39 88.93 79 | 1,728 0.35 89.28 80 | 1,638 0.33 89.62 81 | 1,389 0.28 89.90 82 | 1,218 0.25 90.15 83 | 1,064 0.22 90.37 84 | 921 0.19 90.55 85 | 852 0.17 90.73 86 | 737 0.15 90.88 87 | 512 0.10 90.98 88 | 471 0.10 91.08 89 | 350 0.07 91.15 90 | 1,241 0.25 91.41 . | 42,024 8.59 100.00 ------------+----------------------------------- Total | 488,997 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- . | 42,024 100.00 100.00 ------------+----------------------------------- Total | 42,024 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 6,822 6.26 6.26 1 | 7,121 6.54 12.80 2 | 6,940 6.37 19.17 3 | 7,185 6.60 25.77 4 | 7,176 6.59 32.36 5 | 7,115 6.53 38.89 6 | 7,087 6.51 45.40 7 | 6,740 6.19 51.58 8 | 6,563 6.03 57.61 9 | 6,435 5.91 63.52 10 | 6,223 5.71 69.23 11 | 6,350 5.83 75.06 12 | 6,335 5.82 80.88 13 | 6,492 5.96 86.84 14 | 6,887 6.32 93.16 15 | 7,451 6.84 100.00 ------------+----------------------------------- Total | 108,922 100.00 (108922 observations deleted) (42024 observations deleted) obs 338051 after keeping age>15&age!=. infile successful no observations (0 real changes made) (0 real changes made) (0 real changes made) (169200 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (168851 real changes made) Geography smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (5614 real changes made, 5614 to missing) replace centcity = . if centcity==4 | centcity<=0 (61198 real changes made, 61198 to missing) (223096 real changes made, 223096 to missing) (319386 real changes made, 319386 to missing) (104502 real changes made, 104502 to missing) replace smsasize=. if smsasize<=0 (104502 missing values generated) drop smsasize Demography (59768 real changes made, 59768 to missing) (278283 real changes made) (0 real changes made) if 1986 > 1983 & 1986 < 1989 { (ch05: 278283 changes made) (ch613: 278283 changes made) (ch1417: 278283 changes made) if 1986 > 1983 & 1986 < 1994 { (338051 real changes made) (80608 real changes made) Employment docc80 (82997 missing values generated) recode docc80 (docc80: 255054 changes made) ** The renaming is part of the Census reweighting ; docc00 dind (82997 missing values generated) (dind: 255054 changes made) Wages (0 real changes made) (0 real changes made) (189 real changes made, 189 to missing) (0 real changes made) (0 real changes made) (158904 real changes made) (335643 real changes made) (335492 real changes made) (328854 real changes made) (318906 real changes made) (0 real changes made) Hours, Unions spouse was int now byte ym_file was float now int ym was float now int ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc80 was int now byte dind was float now byte file /homes/data/morg/annual/morg86.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- minsamp | 338051 5.997935 2.000002 4 8 hhid | 0 state | 338051 50.66852 25.97249 11 95 hurespli | 336885 1.651255 .7904182 1 7 schenr | 61760 1.616548 .4862308 1 2 -------------+-------------------------------------------------------- schlvl | 23682 1.453129 .4978088 1 2 hhnum | 338051 1.089841 .3228626 1 7 activlwr | 338051 2.898944 2.284779 1 7 hourslw | 194172 38.83633 13.87146 1 99 reasonlw | 49143 10.25247 3.869305 1 15 -------------+-------------------------------------------------------- absentlw | 13842 3.593339 2.6568 1 8 classer | 256859 1.361549 .7203403 1 5 lineno | 338051 1.777264 1.056413 0 36 relahh | 338051 2.421076 1.298227 1 6 age | 338051 42.7048 18.46196 16 90 -------------+-------------------------------------------------------- marital | 338051 2.937385 2.506602 1 7 race | 338051 1.16417 .451371 1 3 sex | 338051 1.532579 .4989382 1 2 veteran | 337634 5.487498 1.3231 1 6 gradeat | 338051 12.42094 2.998146 0 18 -------------+-------------------------------------------------------- gradecp | 338051 1.21597 .4114944 1 2 esr | 338051 2.6244 2.166289 1 7 studftpt | 23682 1.082003 .2743754 1 2 intmonth | 338051 6.474337 3.461136 1 12 weight | 338051 1602.599 765.836 102.63 10973.91 -------------+-------------------------------------------------------- cmsarank | 233549 42.25287 54.00693 1 252 pmsarank | 114955 1.76376 1.539188 1 12 icntcity | 18665 1.143477 .4425751 1 4 smsastat | 332437 1.262209 .4398364 1 2 centcity | 276853 2.027466 .7755566 1 3 -------------+-------------------------------------------------------- ethnic | 337490 7.776699 1.133001 1 9 ptstat | 338051 .6321679 1.80012 0 6 ftpt79 | 338051 1.051072 1.203647 0 5 agri | 338051 .0210442 .1435318 0 1 doinglw | 337575 2.965848 2.419125 1 8 -------------+-------------------------------------------------------- hourslwa | 193875 38.80847 13.9013 0 99 uhours35 | 48483 1.70831 .454545 1 2 why35lw | 48686 10.25334 3.867566 1 15 class | 256120 1.96497 1.771811 1 8 uhours | 178547 37.84776 11.10662 0 99 -------------+-------------------------------------------------------- paidhr | 178290 1.411038 .4920235 1 2 earnhr | 96731 720.1781 399.4528 1 9999 uearnwk | 160469 347.9379 231.057 1 999 earnwt | 338051 6412.018 3081.335 373.95 45215.87 spouse | 17614 49.33979 28.73872 0 99 -------------+-------------------------------------------------------- eligible | 338051 1.470059 .4991035 1 2 uhourse | 179147 37.91343 10.96731 0 99 paidhre | 179147 1.40723 .4913197 1 2 earnhre | 106193 727.3332 395.406 50 9999 earnwke | 179147 349.2177 231.4662 0 999 -------------+-------------------------------------------------------- unionmme | 179147 1.826885 .3783476 1 2 I25a | 338051 .0071232 .084098 0 1 I25b | 338051 .0075699 .0866752 0 1 I25c | 338051 .027206 .1626833 0 1 I25d | 338051 .0566335 .2311412 0 1 -------------+-------------------------------------------------------- uearnwke | 106193 274.7858 178.7272 0 999 unionmm | 177997 1.827227 .3780516 1 2 unioncov | 148266 1.961077 .1934128 1 2 ind80 | 255054 555.2598 280.846 10 991 occ80 | 255054 392.6732 245.7122 3 905 -------------+-------------------------------------------------------- famnum | 338051 .8469284 .415472 0 5 ownchild | 278283 .9203293 1.171213 0 8 chldpres | 338051 2.03695 2.004394 0 8 pfamrel | 338051 1.787121 1.364143 0 5 recnum | 338051 244667.5 141235.2 2 488996 -------------+-------------------------------------------------------- year | 338051 1986 0 1986 1986 ym_file | 338051 317.4743 3.461136 312 323 ym | 338051 308.4805 6.92402 297 320 smsa80 | 233549 5.24153 1.895538 2 8 ch613 | 338051 .207661 .4056333 0 1 -------------+-------------------------------------------------------- ch1417 | 338051 .1846289 .3879968 0 1 ch05 | 338051 .1590263 .3657012 0 1 docc80 | 255054 24.03524 12.24898 1 46 dind | 255054 29.98021 13.74031 1 52 . aef2 1987 87 84_88 dct_name aef84_88.dbd raw_name=../raw/morg87 (0 observations deleted) obs 487627 # of persons with age<=15 107665 # of non-interview records 42962 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 6,735 1.38 1.38 1 | 7,037 1.44 2.82 2 | 7,057 1.45 4.27 3 | 6,799 1.39 5.67 4 | 7,045 1.44 7.11 5 | 7,014 1.44 8.55 6 | 7,140 1.46 10.01 7 | 7,063 1.45 11.46 8 | 6,686 1.37 12.83 9 | 6,577 1.35 14.18 10 | 6,404 1.31 15.49 11 | 6,248 1.28 16.78 12 | 6,360 1.30 18.08 13 | 6,249 1.28 19.36 14 | 6,485 1.33 20.69 15 | 6,766 1.39 22.08 16 | 7,320 1.50 23.58 17 | 7,207 1.48 25.06 18 | 6,526 1.34 26.40 19 | 6,117 1.25 27.65 20 | 6,156 1.26 28.91 21 | 6,161 1.26 30.18 22 | 6,517 1.34 31.51 23 | 7,074 1.45 32.96 24 | 6,968 1.43 34.39 25 | 7,325 1.50 35.90 26 | 7,647 1.57 37.46 27 | 7,466 1.53 38.99 28 | 7,569 1.55 40.55 29 | 7,721 1.58 42.13 30 | 7,922 1.62 43.75 31 | 7,556 1.55 45.30 32 | 7,590 1.56 46.86 33 | 7,523 1.54 48.40 34 | 7,423 1.52 49.93 35 | 7,207 1.48 51.40 36 | 6,856 1.41 52.81 37 | 6,772 1.39 54.20 38 | 6,601 1.35 55.55 39 | 6,849 1.40 56.96 40 | 7,198 1.48 58.43 41 | 5,574 1.14 59.58 42 | 5,231 1.07 60.65 43 | 5,296 1.09 61.74 44 | 5,497 1.13 62.86 45 | 5,069 1.04 63.90 46 | 4,596 0.94 64.84 47 | 4,602 0.94 65.79 48 | 4,339 0.89 66.68 49 | 4,207 0.86 67.54 50 | 4,325 0.89 68.43 51 | 4,135 0.85 69.28 52 | 4,001 0.82 70.10 53 | 3,845 0.79 70.88 54 | 3,943 0.81 71.69 55 | 4,072 0.84 72.53 56 | 4,175 0.86 73.38 57 | 4,087 0.84 74.22 58 | 3,911 0.80 75.02 59 | 4,065 0.83 75.86 60 | 4,178 0.86 76.72 61 | 4,014 0.82 77.54 62 | 4,209 0.86 78.40 63 | 3,995 0.82 79.22 64 | 3,877 0.80 80.02 65 | 4,199 0.86 80.88 66 | 3,849 0.79 81.67 67 | 3,717 0.76 82.43 68 | 3,312 0.68 83.11 69 | 3,293 0.68 83.78 70 | 3,267 0.67 84.45 71 | 3,017 0.62 85.07 72 | 2,921 0.60 85.67 73 | 2,909 0.60 86.27 74 | 2,660 0.55 86.81 75 | 2,538 0.52 87.33 76 | 2,303 0.47 87.81 77 | 2,178 0.45 88.25 78 | 1,865 0.38 88.63 79 | 1,714 0.35 88.99 80 | 1,648 0.34 89.32 81 | 1,436 0.29 89.62 82 | 1,278 0.26 89.88 83 | 1,146 0.24 90.12 84 | 969 0.20 90.31 85 | 822 0.17 90.48 86 | 790 0.16 90.65 87 | 610 0.13 90.77 88 | 453 0.09 90.86 89 | 384 0.08 90.94 90 | 1,208 0.25 91.19 . | 42,962 8.81 100.00 ------------+----------------------------------- Total | 487,627 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- . | 42,962 100.00 100.00 ------------+----------------------------------- Total | 42,962 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 6,735 6.26 6.26 1 | 7,037 6.54 12.79 2 | 7,057 6.55 19.35 3 | 6,799 6.31 25.66 4 | 7,045 6.54 32.20 5 | 7,014 6.51 38.72 6 | 7,140 6.63 45.35 7 | 7,063 6.56 51.91 8 | 6,686 6.21 58.12 9 | 6,577 6.11 64.23 10 | 6,404 5.95 70.18 11 | 6,248 5.80 75.98 12 | 6,360 5.91 81.89 13 | 6,249 5.80 87.69 14 | 6,485 6.02 93.72 15 | 6,766 6.28 100.00 ------------+----------------------------------- Total | 107,665 100.00 (107665 observations deleted) (42962 observations deleted) obs 337000 after keeping age>15&age!=. infile successful no observations (0 real changes made) (0 real changes made) (0 real changes made) (169079 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (167921 real changes made) Geography smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (5427 real changes made, 5427 to missing) replace centcity = . if centcity==4 | centcity<=0 (61713 real changes made, 61713 to missing) (223694 real changes made, 223694 to missing) (318875 real changes made, 318875 to missing) (103786 real changes made, 103786 to missing) replace smsasize=. if smsasize<=0 (103786 missing values generated) drop smsasize Demography (59996 real changes made, 59996 to missing) (277004 real changes made) (0 real changes made) if 1987 > 1983 & 1987 < 1989 { (ch05: 277004 changes made) (ch613: 277004 changes made) (ch1417: 277004 changes made) if 1987 > 1983 & 1987 < 1994 { (337000 real changes made) (80318 real changes made) Employment docc80 (82398 missing values generated) recode docc80 (docc80: 254602 changes made) ** The renaming is part of the Census reweighting ; docc00 dind (82398 missing values generated) (dind: 254602 changes made) Wages (0 real changes made) (0 real changes made) (129 real changes made, 129 to missing) (0 real changes made) (0 real changes made) (156566 real changes made) (334718 real changes made) (334825 real changes made) (325003 real changes made) (312586 real changes made) (0 real changes made) Hours, Unions spouse was int now byte ym_file was float now int ym was float now int ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc80 was int now byte dind was float now byte file /homes/data/morg/annual/morg87.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- minsamp | 337000 5.993128 1.999991 4 8 hhid | 0 state | 337000 50.81561 25.88324 11 95 hurespli | 335630 1.640497 .7820937 1 7 schenr | 60046 1.603138 .4892511 1 2 -------------+-------------------------------------------------------- schlvl | 23830 1.450986 .4976023 1 2 hhnum | 337000 1.08854 .3178388 1 7 activlwr | 337000 2.892389 2.302566 1 7 hourslw | 195740 38.74444 13.88584 1 99 reasonlw | 53544 10.04159 3.797732 1 15 -------------+-------------------------------------------------------- absentlw | 13694 3.47948 2.612177 1 8 classer | 256162 1.360128 .7123716 1 5 lineno | 337000 1.766258 1.033067 0 32 relahh | 337000 2.418101 1.300159 1 6 age | 337000 42.88126 18.45139 16 90 -------------+-------------------------------------------------------- marital | 337000 2.939786 2.50625 1 7 race | 337000 1.165543 .4535547 1 3 sex | 337000 1.533329 .4988887 1 2 veteran | 336618 5.495505 1.314929 1 6 gradeat | 337000 12.46645 2.991089 0 18 -------------+-------------------------------------------------------- gradecp | 337000 1.215039 .4108497 1 2 esr | 337000 2.6217 2.185364 1 7 studftpt | 23830 1.087117 .2820125 1 2 intmonth | 337000 6.513285 3.454732 1 12 weight | 337000 1626.879 788.1528 127.31 10647.89 -------------+-------------------------------------------------------- cmsarank | 233214 42.76547 54.40907 1 252 pmsarank | 113306 1.755873 1.518415 1 12 icntcity | 18125 1.152662 .4597328 1 4 smsastat | 331573 1.260995 .439178 1 2 centcity | 275287 2.03027 .7730033 1 3 -------------+-------------------------------------------------------- ethnic | 336489 7.772058 1.139999 1 9 ptstat | 337000 .6339347 1.804296 0 6 ftpt79 | 337000 1.047576 1.200605 0 5 agri | 337000 .0204451 .1415174 0 1 doinglw | 336557 2.958215 2.434539 1 8 -------------+-------------------------------------------------------- hourslwa | 195538 38.70954 13.92817 0 99 uhours35 | 52889 1.649455 .4771453 1 2 why35lw | 53024 10.04389 3.796089 1 15 class | 255441 1.964168 1.761925 1 8 uhours | 179887 38.01874 11.1407 0 99 -------------+-------------------------------------------------------- paidhr | 179883 1.404418 .4907805 1 2 earnhr | 95725 740.7755 413.1646 1 9900 uearnwk | 156131 359.7606 237.3426 0 999 earnwt | 337000 6507.827 3167.933 417.75 43415.1 spouse | 17946 49.47125 28.83016 0 99 -------------+-------------------------------------------------------- eligible | 337000 1.464588 .4987451 1 2 uhourse | 180434 38.09249 11.00029 0 99 paidhre | 180434 1.400756 .490053 1 2 earnhre | 108124 750.4134 408.5974 50 9900 earnwke | 180434 362.3267 238.4399 0 999 -------------+-------------------------------------------------------- unionmme | 180434 1.83103 .3747268 1 2 I25a | 337000 .0067715 .0820102 0 1 I25b | 337000 .006454 .0800773 0 1 I25c | 337000 .0355994 .1852895 0 1 I25d | 337000 .0724451 .2592239 0 1 -------------+-------------------------------------------------------- uearnwke | 108124 284.5339 183.8061 0 999 unionmm | 179546 1.831247 .374535 1 2 unioncov | 150404 1.963877 .1865961 1 2 ind80 | 254602 558.9582 279.4016 10 991 occ80 | 254602 390.3029 246.056 3 905 -------------+-------------------------------------------------------- famnum | 337000 .8452196 .4156782 0 4 ownchild | 277004 .906023 1.165527 0 8 chldpres | 337000 2.020546 1.997076 0 8 pfamrel | 337000 1.787418 1.369653 0 5 recnum | 337000 243880.2 140741.5 1 487627 -------------+-------------------------------------------------------- year | 337000 1987 0 1987 1987 ym_file | 337000 329.5133 3.454732 324 335 ym | 337000 320.5339 6.928005 309 332 smsa80 | 233214 5.218602 1.891606 2 8 ch613 | 337000 .207 .4051561 0 1 -------------+-------------------------------------------------------- ch1417 | 337000 .179819 .3840372 0 1 ch05 | 337000 .1569258 .3637314 0 1 docc80 | 254602 23.89632 12.28068 1 46 dind | 254602 30.17024 13.64393 1 52 . aef2 1988 88 84_88 dct_name aef84_88.dbd raw_name=../raw/morg88 (0 observations deleted) obs 464755 # of persons with age<=15 101731 # of non-interview records 42203 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 6,340 1.36 1.36 1 | 6,476 1.39 2.76 2 | 6,582 1.42 4.17 3 | 6,476 1.39 5.57 4 | 6,528 1.40 6.97 5 | 6,811 1.47 8.44 6 | 6,638 1.43 9.87 7 | 6,718 1.45 11.31 8 | 6,540 1.41 12.72 9 | 6,343 1.36 14.08 10 | 6,176 1.33 15.41 11 | 6,137 1.32 16.73 12 | 5,976 1.29 18.02 13 | 6,034 1.30 19.32 14 | 5,906 1.27 20.59 15 | 6,050 1.30 21.89 16 | 6,490 1.40 23.29 17 | 6,777 1.46 24.74 18 | 6,181 1.33 26.07 19 | 5,712 1.23 27.30 20 | 5,655 1.22 28.52 21 | 5,696 1.23 29.75 22 | 5,784 1.24 30.99 23 | 6,209 1.34 32.33 24 | 6,555 1.41 33.74 25 | 6,750 1.45 35.19 26 | 6,965 1.50 36.69 27 | 7,107 1.53 38.22 28 | 7,039 1.51 39.73 29 | 7,099 1.53 41.26 30 | 7,495 1.61 42.87 31 | 7,456 1.60 44.48 32 | 7,211 1.55 46.03 33 | 6,997 1.51 47.53 34 | 7,023 1.51 49.04 35 | 7,071 1.52 50.56 36 | 6,619 1.42 51.99 37 | 6,614 1.42 53.41 38 | 6,430 1.38 54.80 39 | 6,226 1.34 56.14 40 | 6,509 1.40 57.54 41 | 6,632 1.43 58.96 42 | 5,146 1.11 60.07 43 | 4,984 1.07 61.14 44 | 4,948 1.06 62.21 45 | 5,279 1.14 63.34 46 | 4,769 1.03 64.37 47 | 4,384 0.94 65.31 48 | 4,347 0.94 66.25 49 | 4,043 0.87 67.12 50 | 4,202 0.90 68.02 51 | 3,869 0.83 68.85 52 | 3,855 0.83 69.68 53 | 3,824 0.82 70.51 54 | 3,615 0.78 71.28 55 | 3,709 0.80 72.08 56 | 3,766 0.81 72.89 57 | 3,802 0.82 73.71 58 | 3,887 0.84 74.55 59 | 3,727 0.80 75.35 60 | 3,964 0.85 76.20 61 | 3,764 0.81 77.01 62 | 3,789 0.82 77.83 63 | 3,890 0.84 78.66 64 | 3,648 0.78 79.45 65 | 3,886 0.84 80.29 66 | 3,798 0.82 81.10 67 | 3,643 0.78 81.89 68 | 3,536 0.76 82.65 69 | 3,186 0.69 83.33 70 | 3,254 0.70 84.03 71 | 2,950 0.63 84.67 72 | 2,817 0.61 85.27 73 | 2,762 0.59 85.87 74 | 2,591 0.56 86.43 75 | 2,511 0.54 86.97 76 | 2,309 0.50 87.46 77 | 2,031 0.44 87.90 78 | 1,943 0.42 88.32 79 | 1,658 0.36 88.67 80 | 1,618 0.35 89.02 81 | 1,389 0.30 89.32 82 | 1,245 0.27 89.59 83 | 1,080 0.23 89.82 84 | 956 0.21 90.03 85 | 853 0.18 90.21 86 | 676 0.15 90.36 87 | 620 0.13 90.49 88 | 474 0.10 90.59 89 | 347 0.07 90.67 90 | 1,175 0.25 90.92 . | 42,203 9.08 100.00 ------------+----------------------------------- Total | 464,755 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- . | 42,203 100.00 100.00 ------------+----------------------------------- Total | 42,203 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 6,340 6.23 6.23 1 | 6,476 6.37 12.60 2 | 6,582 6.47 19.07 3 | 6,476 6.37 25.43 4 | 6,528 6.42 31.85 5 | 6,811 6.70 38.55 6 | 6,638 6.53 45.07 7 | 6,718 6.60 51.67 8 | 6,540 6.43 58.10 9 | 6,343 6.24 64.34 10 | 6,176 6.07 70.41 11 | 6,137 6.03 76.44 12 | 5,976 5.87 82.32 13 | 6,034 5.93 88.25 14 | 5,906 5.81 94.05 15 | 6,050 5.95 100.00 ------------+----------------------------------- Total | 101,731 100.00 (101731 observations deleted) (42203 observations deleted) obs 320821 after keeping age>15&age!=. infile successful no observations (0 real changes made) (0 real changes made) (0 real changes made) (161061 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (159760 real changes made) Geography smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (5427 real changes made, 5427 to missing) replace centcity = . if centcity==4 | centcity<=0 (61499 real changes made, 61499 to missing) (220202 real changes made, 220202 to missing) (305127 real changes made, 305127 to missing) (103403 real changes made, 103403 to missing) replace smsasize=. if smsasize<=0 (103403 missing values generated) drop smsasize Demography (58612 real changes made, 58612 to missing) (262209 real changes made) (0 real changes made) if 1988 > 1983 & 1988 < 1989 { (ch05: 262209 changes made) (ch613: 262209 changes made) (ch1417: 262209 changes made) if 1988 > 1983 & 1988 < 1994 { (320821 real changes made) (75864 real changes made) Employment docc80 (78245 missing values generated) recode docc80 (docc80: 242576 changes made) ** The renaming is part of the Census reweighting ; docc00 dind (78245 missing values generated) (dind: 242576 changes made) Wages (0 real changes made) (0 real changes made) (133 real changes made, 133 to missing) (0 real changes made) (0 real changes made) (147703 real changes made) (318458 real changes made) (318666 real changes made) (308237 real changes made) (295818 real changes made) (0 real changes made) Hours, Unions spouse was int now byte ym_file was float now int ym was float now int ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc80 was int now byte dind was float now byte file /homes/data/morg/annual/morg88.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- minsamp | 320821 5.99189 1.999987 4 8 hhid | 0 state | 320821 50.61581 25.34102 11 95 hurespli | 319457 1.628075 .781754 1 7 schenr | 55059 1.600519 .4897961 1 2 -------------+-------------------------------------------------------- schlvl | 21995 1.462651 .4986144 1 2 hhnum | 320821 1.08477 .3119935 1 8 activlwr | 320821 2.88483 2.316998 1 7 hourslw | 188503 39.16508 13.94417 1 99 reasonlw | 47256 10.40069 3.811482 1 15 -------------+-------------------------------------------------------- absentlw | 12432 3.469514 2.645986 1 8 classer | 243861 1.360156 .7068174 1 5 lineno | 320821 1.752111 1.018233 0 30 relahh | 320821 2.413997 1.304434 1 6 age | 320821 43.17714 18.44137 16 90 -------------+-------------------------------------------------------- marital | 320821 2.929309 2.502842 1 7 race | 320821 1.163371 .451722 1 3 sex | 320821 1.531904 .4989819 1 2 veteran | 320476 5.50791 1.30066 1 6 gradeat | 320821 12.50949 2.983557 0 18 -------------+-------------------------------------------------------- gradecp | 320821 1.213895 .4100542 1 2 esr | 320821 2.62024 2.205779 1 7 studftpt | 21995 1.091021 .2876451 1 2 intmonth | 320821 6.440217 3.482284 1 12 weight | 320821 1726.314 984.2418 118.96 12757.97 -------------+-------------------------------------------------------- cmsarank | 217418 45.24634 55.40494 1 252 pmsarank | 100619 1.805345 1.576072 1 12 icntcity | 15694 1.146808 .44372 1 4 smsastat | 315394 1.272767 .4453826 1 2 centcity | 259322 2.060253 .7743451 1 3 -------------+-------------------------------------------------------- ethnic | 319967 7.78385 1.114728 1 9 ptstat | 320821 .6426076 1.817401 0 6 ftpt79 | 320821 1.042591 1.194696 0 5 agri | 320821 .0211863 .1440051 0 1 doinglw | 320373 2.949331 2.445982 1 8 -------------+-------------------------------------------------------- hourslwa | 188282 39.12394 13.9886 0 99 uhours35 | 46617 1.708175 .454607 1 2 why35lw | 46750 10.40171 3.80921 1 15 class | 243182 1.970779 1.762168 1 8 uhours | 172485 38.10206 11.11575 0 99 -------------+-------------------------------------------------------- paidhr | 172415 1.40185 .4902734 1 2 earnhr | 91418 762.4043 428.0574 1 9999 uearnwk | 148188 370.7305 242.9891 0 999 earnwt | 320821 6905.679 3949.607 357.98 50995.55 spouse | 16189 49.75335 28.89624 0 99 -------------+-------------------------------------------------------- eligible | 320821 1.460391 .4984294 1 2 uhourse | 173118 38.18686 10.963 0 99 paidhre | 173118 1.398145 .489517 1 2 earnhre | 104192 773.36 423.3943 50 9900 earnwke | 173118 373.3713 243.4652 0 999 -------------+-------------------------------------------------------- unionmme | 173118 1.835915 .3703534 1 2 I25a | 320821 .0073655 .0855059 0 1 I25b | 320821 .0067171 .0816826 0 1 I25c | 320821 .0392244 .1941286 0 1 I25d | 320821 .0779344 .2680688 0 1 -------------+-------------------------------------------------------- uearnwke | 104192 293.2954 188.3674 0 999 unionmm | 172193 1.836329 .3699778 1 2 unioncov | 145168 1.963732 .1869577 1 2 ind80 | 242576 559.9783 280.323 10 991 occ80 | 242576 387.9549 246.6491 3 905 -------------+-------------------------------------------------------- famnum | 320821 .8399793 .4185734 0 8 ownchild | 262209 .8850154 1.154143 0 8 chldpres | 320821 1.992606 1.992762 0 8 pfamrel | 320821 1.770919 1.370001 0 5 recnum | 320821 232422.1 134245.4 1 464750 -------------+-------------------------------------------------------- year | 320821 1988 0 1988 1988 ym_file | 320821 341.4402 3.482284 336 347 ym | 320821 332.4645 6.932964 321 344 smsa80 | 217418 5.080417 1.849605 2 8 ch613 | 320821 .2063362 .4046753 0 1 -------------+-------------------------------------------------------- ch1417 | 320821 .1702226 .3758289 0 1 ch05 | 320821 .1534095 .3603824 0 1 docc80 | 242576 23.78166 12.36716 1 46 dind | 242576 30.22198 13.69772 1 52 . aef2 1989 89 89_93 dct_name aef89_93.dbd raw_name=../raw/morg89 (0 observations deleted) obs 466762 # of persons with age<=15 102069 # of non-interview records 39982 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 6,572 1.41 1.41 1 | 6,451 1.38 2.79 2 | 6,590 1.41 4.20 3 | 6,629 1.42 5.62 4 | 6,546 1.40 7.02 5 | 6,664 1.43 8.45 6 | 6,709 1.44 9.89 7 | 6,668 1.43 11.32 8 | 6,636 1.42 12.74 9 | 6,531 1.40 14.14 10 | 6,322 1.35 15.49 11 | 6,085 1.30 16.80 12 | 6,098 1.31 18.10 13 | 5,795 1.24 19.35 14 | 5,769 1.24 20.58 15 | 6,004 1.29 21.87 16 | 6,049 1.30 23.16 17 | 6,190 1.33 24.49 18 | 6,453 1.38 25.87 19 | 5,947 1.27 27.15 20 | 5,749 1.23 28.38 21 | 5,618 1.20 29.58 22 | 5,812 1.25 30.83 23 | 6,071 1.30 32.13 24 | 6,349 1.36 33.49 25 | 6,835 1.46 34.95 26 | 6,880 1.47 36.43 27 | 7,125 1.53 37.95 28 | 7,303 1.56 39.52 29 | 7,210 1.54 41.06 30 | 7,327 1.57 42.63 31 | 7,449 1.60 44.23 32 | 7,614 1.63 45.86 33 | 7,213 1.55 47.40 34 | 7,241 1.55 48.96 35 | 7,164 1.53 50.49 36 | 7,027 1.51 52.00 37 | 6,596 1.41 53.41 38 | 6,484 1.39 54.80 39 | 6,520 1.40 56.19 40 | 6,540 1.40 57.60 41 | 6,367 1.36 58.96 42 | 6,577 1.41 60.37 43 | 5,208 1.12 61.48 44 | 5,002 1.07 62.56 45 | 4,990 1.07 63.63 46 | 5,286 1.13 64.76 47 | 4,782 1.02 65.78 48 | 4,469 0.96 66.74 49 | 4,193 0.90 67.64 50 | 4,134 0.89 68.52 51 | 4,094 0.88 69.40 52 | 3,894 0.83 70.24 53 | 3,843 0.82 71.06 54 | 3,769 0.81 71.87 55 | 3,627 0.78 72.64 56 | 3,750 0.80 73.45 57 | 3,674 0.79 74.23 58 | 3,637 0.78 75.01 59 | 3,902 0.84 75.85 60 | 3,859 0.83 76.68 61 | 3,841 0.82 77.50 62 | 3,783 0.81 78.31 63 | 3,689 0.79 79.10 64 | 3,751 0.80 79.90 65 | 3,850 0.82 80.73 66 | 3,666 0.79 81.51 67 | 3,569 0.76 82.28 68 | 3,568 0.76 83.04 69 | 3,325 0.71 83.75 70 | 3,344 0.72 84.47 71 | 3,045 0.65 85.12 72 | 2,883 0.62 85.74 73 | 2,754 0.59 86.33 74 | 2,645 0.57 86.90 75 | 2,482 0.53 87.43 76 | 2,303 0.49 87.92 77 | 2,073 0.44 88.37 78 | 1,929 0.41 88.78 79 | 1,826 0.39 89.17 80 | 1,675 0.36 89.53 81 | 1,419 0.30 89.83 82 | 1,285 0.28 90.11 83 | 1,080 0.23 90.34 84 | 950 0.20 90.54 85 | 870 0.19 90.73 86 | 682 0.15 90.88 87 | 567 0.12 91.00 88 | 455 0.10 91.10 89 | 360 0.08 91.17 90 | 1,219 0.26 91.43 . | 39,982 8.57 100.00 ------------+----------------------------------- Total | 466,762 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- . | 39,982 100.00 100.00 ------------+----------------------------------- Total | 39,982 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 6,572 6.44 6.44 1 | 6,451 6.32 12.76 2 | 6,590 6.46 19.22 3 | 6,629 6.49 25.71 4 | 6,546 6.41 32.12 5 | 6,664 6.53 38.65 6 | 6,709 6.57 45.23 7 | 6,668 6.53 51.76 8 | 6,636 6.50 58.26 9 | 6,531 6.40 64.66 10 | 6,322 6.19 70.85 11 | 6,085 5.96 76.81 12 | 6,098 5.97 82.79 13 | 5,795 5.68 88.47 14 | 5,769 5.65 94.12 15 | 6,004 5.88 100.00 ------------+----------------------------------- Total | 102,069 100.00 (102069 observations deleted) (39982 observations deleted) obs 324711 after keeping age>15&age!=. infile successful no observations (0 real changes made) (0 real changes made) (0 real changes made) (164056 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (160655 real changes made) Geography smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (5576 real changes made, 5576 to missing) replace centcity = . if centcity==4 | centcity<=0 (62099 real changes made, 62099 to missing) (222527 real changes made, 222527 to missing) (308970 real changes made, 308970 to missing) (104372 real changes made, 104372 to missing) (107765 real changes made, 107765 to missing) (219134 real changes made, 219134 to missing) replace smsasize=. if smsasize<=0 (104372 missing values generated) drop smsasize Demography (60600 real changes made, 60600 to missing) (264111 real changes made) (0 real changes made) if 1989 > 1983 & 1989 < 1989 { if 1989 > 1988 & 1989 < 1994 { (ch02: 264111 changes made) (ch35: 264111 changes made) (ch613: 264111 changes made) (ch1417: 264111 changes made) (20705 real changes made) if 1989 > 1983 & 1989 < 1994 { Employment docc80 (78270 missing values generated) recode docc80 (docc80: 246441 changes made) ** The renaming is part of the Census reweighting ; docc00 dind (78270 missing values generated) (dind: 246441 changes made) Wages (0 real changes made) (0 real changes made) (128 real changes made, 128 to missing) (0 real changes made) (0 real changes made) (146472 real changes made) (238649 real changes made) (0 real changes made) (0 real changes made) Hours, Unions spouse was int now byte ym_file was float now int ym was float now int ch613 was int now byte ch1417 was int now byte ch02 was int now byte ch35 was int now byte ch05 was int now byte docc80 was int now byte dind was float now byte file /homes/data/morg/annual/morg89.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- intmonth | 324711 6.558025 3.465807 1 12 hhnum | 324259 1.085102 .3129083 1 7 hurespli | 323250 1.620278 .7902826 1 7 minsamp | 324711 5.979052 1.999893 4 8 state | 324711 50.74402 25.50277 11 95 -------------+-------------------------------------------------------- stfips | 324711 29.0157 14.84256 1 56 centcity | 262612 2.061444 .772391 1 3 msafips | 216946 4414.211 2594.519 80 9340 spouse | 324711 27.93178 31.01633 0 90 pmsarank | 102184 1.800575 1.569549 1 12 -------------+-------------------------------------------------------- cmsarank | 220339 45.56204 55.654 1 252 cmsacode | 105577 50.87408 26.12653 7 91 smsastat | 319135 1.272295 .4451418 1 2 icntcity | 15741 1.149609 .4465504 1 4 hhid | 0 -------------+-------------------------------------------------------- sex | 324711 1.52896 .4991614 1 2 veteran | 322883 5.517897 1.28833 1 6 gradeat | 324711 12.58252 2.973199 0 18 gradecp | 324711 1.212888 .4093496 1 2 doinglw | 322461 2.932485 2.451314 1 8 -------------+-------------------------------------------------------- hourslwa | 191365 39.32763 14.03047 0 99 uhours35 | 46190 1.717645 .4501503 1 2 why35lw | 46338 10.59323 3.774355 1 15 class | 246626 1.95882 1.748508 1 8 uhours | 175729 38.23429 11.18046 0 99 -------------+-------------------------------------------------------- paidhr | 175672 1.396233 .4891152 1 2 earnhr | 93698 795.2665 445.4586 1 9999 uearnwk | 151816 398.3092 297.6555 0 1999 unionmm | 175492 1.83997 .366635 1 2 unioncov | 148576 1.964469 .1851174 1 2 -------------+-------------------------------------------------------- studftpt | 21618 1.089046 .284817 1 2 lineno | 324711 1.74149 1.013034 1 38 relaref | 324711 3.072594 2.193331 1 10 age | 324711 43.24206 18.35121 16 90 marital | 324711 3.088928 2.583611 1 7 -------------+-------------------------------------------------------- race | 324711 1.195232 .587468 1 5 activlwr | 322883 2.943766 2.460459 1 8 hourslw | 191498 39.36285 13.98892 1 99 reasonlw | 46430 10.57605 3.783237 1 15 absentlw | 12895 3.446762 2.617714 1 8 -------------+-------------------------------------------------------- ind80 | 246441 563.4341 278.7953 10 991 occ80 | 246441 386.0372 247.7934 3 905 classer | 247626 1.933803 1.714294 1 8 uhourse | 176411 38.32017 11.00662 1 99 paidhre | 176411 1.395763 .4890154 1 2 -------------+-------------------------------------------------------- unionmme | 176411 1.8398 .3667923 1 2 untype | 10906 2.883367 1.23771 1 5 agri | 246441 .0316181 .1749815 0 1 schenr | 53862 1.59114 .4916278 1 2 schlvl | 22022 1.48783 .4998632 1 2 -------------+-------------------------------------------------------- ethnic | 324711 7.771323 1.129784 1 10 lfsr89 | 322883 3.141921 2.792641 1 7 ftpt89 | 322883 2.050978 1.217081 1 7 eligible | 322883 1.453638 .4978467 1 2 classer2 | 247626 1.73275 1.407045 1 7 -------------+-------------------------------------------------------- earnhre | 106594 807.4631 448.7088 50 9999 earnwke | 176411 405.7716 294.9556 1 1923 weight | 322883 1731.828 974.7518 112.91 11616.91 earnwt | 322883 6927.335 3907.833 449.71 45979.63 famnum | 324711 .8359156 .4211231 0 6 -------------+-------------------------------------------------------- ownchild | 264111 .8765557 1.144185 0 8 chldpres | 324711 2.818552 3.400593 0 16 pfamrel | 324711 1.758576 1.375193 0 5 I25a | 322883 .0302153 .3463359 0 4 I25b | 322883 .0349043 .3595744 0 4 -------------+-------------------------------------------------------- I25c | 322883 .0029639 .0942497 0 3 I25d | 322883 .0722367 .5127784 0 4 recnum | 324711 232990.1 134744.2 1 466759 year | 324711 1989 0 1989 1989 ym_file | 324711 353.558 3.465807 348 359 -------------+-------------------------------------------------------- ym | 324711 344.6209 6.93219 333 356 smsa80 | 220339 5.079822 1.860874 2 8 ch613 | 324711 .2071072 .4052337 0 1 ch1417 | 324711 .1604381 .3670124 0 1 ch02 | 324711 .0921004 .289168 0 1 -------------+-------------------------------------------------------- ch35 | 324711 .0964858 .2952568 0 1 ch05 | 324711 .1558648 .3627276 0 1 docc80 | 246441 23.61972 12.40511 1 46 dind | 246441 30.4002 13.58575 1 52 . aef2 1990 90 89_93 dct_name aef89_93.dbd raw_name=../raw/morg90 (0 observations deleted) obs 490653 # of persons with age<=15 109432 # of non-interview records 40059 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 7,144 1.46 1.46 1 | 7,175 1.46 2.92 2 | 6,950 1.42 4.33 3 | 6,983 1.42 5.76 4 | 6,935 1.41 7.17 5 | 7,062 1.44 8.61 6 | 6,892 1.40 10.02 7 | 7,145 1.46 11.47 8 | 6,952 1.42 12.89 9 | 7,015 1.43 14.32 10 | 6,956 1.42 15.74 11 | 6,607 1.35 17.08 12 | 6,568 1.34 18.42 13 | 6,594 1.34 19.77 14 | 6,265 1.28 21.04 15 | 6,189 1.26 22.30 16 | 6,272 1.28 23.58 17 | 6,121 1.25 24.83 18 | 6,254 1.27 26.10 19 | 6,290 1.28 27.39 20 | 6,162 1.26 28.64 21 | 6,089 1.24 29.88 22 | 6,029 1.23 31.11 23 | 6,244 1.27 32.38 24 | 6,348 1.29 33.68 25 | 6,844 1.39 35.07 26 | 7,001 1.43 36.50 27 | 7,288 1.49 37.98 28 | 7,583 1.55 39.53 29 | 7,702 1.57 41.10 30 | 7,932 1.62 42.72 31 | 7,524 1.53 44.25 32 | 7,821 1.59 45.84 33 | 7,891 1.61 47.45 34 | 7,511 1.53 48.98 35 | 7,776 1.58 50.57 36 | 7,434 1.52 52.08 37 | 7,195 1.47 53.55 38 | 7,047 1.44 54.99 39 | 6,926 1.41 56.40 40 | 6,918 1.41 57.81 41 | 6,732 1.37 59.18 42 | 6,675 1.36 60.54 43 | 6,606 1.35 61.89 44 | 5,331 1.09 62.97 45 | 5,527 1.13 64.10 46 | 5,211 1.06 65.16 47 | 5,372 1.09 66.26 48 | 4,847 0.99 67.24 49 | 4,745 0.97 68.21 50 | 4,544 0.93 69.14 51 | 4,221 0.86 70.00 52 | 4,141 0.84 70.84 53 | 3,960 0.81 71.65 54 | 4,023 0.82 72.47 55 | 3,946 0.80 73.27 56 | 3,766 0.77 74.04 57 | 3,865 0.79 74.83 58 | 3,839 0.78 75.61 59 | 3,732 0.76 76.37 60 | 4,034 0.82 77.19 61 | 3,926 0.80 77.99 62 | 4,030 0.82 78.81 63 | 3,850 0.78 79.60 64 | 3,867 0.79 80.39 65 | 4,137 0.84 81.23 66 | 3,840 0.78 82.01 67 | 3,607 0.74 82.75 68 | 3,757 0.77 83.51 69 | 3,568 0.73 84.24 70 | 3,481 0.71 84.95 71 | 3,095 0.63 85.58 72 | 3,032 0.62 86.20 73 | 2,875 0.59 86.79 74 | 2,697 0.55 87.34 75 | 2,599 0.53 87.86 76 | 2,400 0.49 88.35 77 | 2,128 0.43 88.79 78 | 1,970 0.40 89.19 79 | 1,850 0.38 89.57 80 | 1,775 0.36 89.93 81 | 1,500 0.31 90.23 82 | 1,352 0.28 90.51 83 | 1,196 0.24 90.75 84 | 992 0.20 90.96 85 | 850 0.17 91.13 86 | 751 0.15 91.28 87 | 603 0.12 91.40 88 | 508 0.10 91.51 89 | 411 0.08 91.59 90 | 1,196 0.24 91.84 . | 40,059 8.16 100.00 ------------+----------------------------------- Total | 490,653 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- . | 40,059 100.00 100.00 ------------+----------------------------------- Total | 40,059 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 7,144 6.53 6.53 1 | 7,175 6.56 13.08 2 | 6,950 6.35 19.44 3 | 6,983 6.38 25.82 4 | 6,935 6.34 32.15 5 | 7,062 6.45 38.61 6 | 6,892 6.30 44.91 7 | 7,145 6.53 51.43 8 | 6,952 6.35 57.79 9 | 7,015 6.41 64.20 10 | 6,956 6.36 70.55 11 | 6,607 6.04 76.59 12 | 6,568 6.00 82.59 13 | 6,594 6.03 88.62 14 | 6,265 5.73 94.34 15 | 6,189 5.66 100.00 ------------+----------------------------------- Total | 109,432 100.00 (109432 observations deleted) (40059 observations deleted) obs 341162 after keeping age>15&age!=. infile successful no observations (0 real changes made) (0 real changes made) (0 real changes made) (170206 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (170956 real changes made) Geography smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (5682 real changes made, 5682 to missing) replace centcity = . if centcity==4 | centcity<=0 (62742 real changes made, 62742 to missing) (226144 real changes made, 226144 to missing) (322754 real changes made, 322754 to missing) (105424 real changes made, 105424 to missing) (108797 real changes made, 108797 to missing) (222771 real changes made, 222771 to missing) replace smsasize=. if smsasize<=0 (105424 missing values generated) drop smsasize Demography (65154 real changes made, 65154 to missing) (276008 real changes made) (0 real changes made) if 1990 > 1983 & 1990 < 1989 { if 1990 > 1988 & 1990 < 1994 { (ch02: 276008 changes made) (ch35: 276008 changes made) (ch613: 276008 changes made) (ch1417: 276008 changes made) (21198 real changes made) if 1990 > 1983 & 1990 < 1994 { (0 real changes made) (154 real changes made, 154 to missing) Employment docc80 (82702 missing values generated) recode docc80 (docc80: 258460 changes made) ** The renaming is part of the Census reweighting ; docc00 dind (82702 missing values generated) (dind: 258460 changes made) Wages (0 real changes made) (0 real changes made) (294 real changes made, 294 to missing) (1 real change made, 1 to missing) (0 real changes made) (154312 real changes made) (250631 real changes made) (0 real changes made) (0 real changes made) Hours, Unions spouse was int now byte ym_file was float now int ym was float now int ch613 was int now byte ch1417 was int now byte ch02 was int now byte ch35 was int now byte ch05 was int now byte docc80 was int now byte dind was float now byte file /homes/data/morg/annual/morg90.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- intmonth | 341162 6.506539 3.456717 1 12 hhnum | 340335 1.08588 .3153555 1 7 hurespli | 339911 1.627753 .8108299 1 7 minsamp | 341162 6.004397 1.999998 4 8 state | 341162 51.30998 26.11631 11 95 -------------+-------------------------------------------------------- stfips | 341162 28.62086 14.9768 1 56 centcity | 278420 2.034732 .7709405 1 3 msafips | 232365 4451.502 2552.692 80 9340 spouse | 341162 28.83777 31.49527 0 90 pmsarank | 115018 1.759838 1.526574 1 12 -------------+-------------------------------------------------------- cmsarank | 235738 43.37647 54.90896 1 252 cmsacode | 118391 51.71146 25.29707 7 91 smsastat | 335480 1.261542 .4394749 1 2 icntcity | 18408 1.157703 .4588332 1 4 hhid | 0 -------------+-------------------------------------------------------- sex | 341162 1.529098 .4991533 1 2 veteran | 339342 5.533338 1.270424 1 6 gradeat | 341162 12.61035 2.995828 0 18 gradecp | 341162 1.212292 .4089311 1 2 doinglw | 338892 2.9297 2.455532 1 8 -------------+-------------------------------------------------------- hourslwa | 201625 38.94237 13.93072 0 99 uhours35 | 49823 1.690464 .4623069 1 2 why35lw | 49946 10.36317 3.854578 1 15 class | 258601 1.958968 1.7465 1 8 uhours | 185430 38.1279 11.22103 0 99 -------------+-------------------------------------------------------- paidhr | 184783 1.40001 .4899013 1 2 earnhr | 97809 832.5557 470.2543 1 9999 uearnwk | 159182 419.1578 313.1426 0 1999 unionmm | 184504 1.838957 .3675712 1 2 unioncov | 156130 1.962762 .1893456 1 2 -------------+-------------------------------------------------------- studftpt | 22691 1.092107 .2891833 1 2 lineno | 341162 1.752437 1.036206 1 36 relaref | 341162 3.098293 2.232155 1 10 age | 341162 43.29662 18.23836 16 90 marital | 341162 3.118618 2.591215 1 7 -------------+-------------------------------------------------------- race | 341162 1.208707 .6170194 1 5 activlwr | 339342 2.940977 2.46467 1 8 hourslw | 200871 39.1483 13.67844 1 99 reasonlw | 50005 10.34025 3.86471 1 15 absentlw | 13699 3.550624 2.658271 1 8 -------------+-------------------------------------------------------- ind80 | 258460 566.7591 278.0044 10 991 occ80 | 258460 383.3288 247.3302 3 905 classer | 259664 1.933953 1.711869 1 8 uhourse | 185030 38.33359 10.85872 1 99 paidhre | 185030 1.400508 .4900027 1 2 -------------+-------------------------------------------------------- unionmme | 185030 1.838415 .3680703 1 2 untype | 12130 2.802885 1.246107 1 5 agri | 258460 .030291 .1713871 0 1 schenr | 55438 1.582362 .4931743 1 2 schlvl | 23153 1.487712 .4998598 1 2 -------------+-------------------------------------------------------- ethnic | 341008 7.722543 1.222069 1 9 lfsr89 | 339342 3.143404 2.790669 1 7 ftpt89 | 339342 2.058171 1.22892 1 7 eligible | 339342 1.454739 .497948 1 2 classer2 | 259664 1.732909 1.405264 1 7 -------------+-------------------------------------------------------- earnhre | 110923 848.0124 471.3108 50 9999 earnwke | 185030 428.2055 309.8502 1 1923 weight | 339342 1672.328 865.1148 144.03 10883.2 earnwt | 339342 6689.336 3469.397 464.4 43724 famnum | 341162 .83373 .4275344 0 5 -------------+-------------------------------------------------------- ownchild | 276008 .8868656 1.163229 0 8 chldpres | 341162 2.811462 3.418164 0 16 pfamrel | 341162 1.760589 1.388086 0 5 I25a | 339342 .0318027 .3552462 0 4 I25b | 339342 .0362555 .3668773 0 4 -------------+-------------------------------------------------------- I25c | 339342 .0036247 .1042155 0 3 I25d | 339342 .0764509 .5272203 0 4 recnum | 341162 245474.9 141772.2 1 490651 year | 341162 1990 0 1990 1990 ym_file | 341162 365.5065 3.456717 360 371 -------------+-------------------------------------------------------- ym | 341162 356.4933 6.918624 345 368 smsa80 | 235738 5.215493 1.913139 2 8 ch613 | 341162 .2107679 .4078545 0 1 ch1417 | 341162 .1556387 .362513 0 1 ch02 | 341162 .0939817 .2918037 0 1 -------------+-------------------------------------------------------- ch35 | 341162 .0957463 .2942434 0 1 ch05 | 341162 .1561164 .3629662 0 1 docc80 | 258460 23.47316 12.39081 1 46 dind | 258460 30.53298 13.55555 1 52 . aef2 1991 91 89_93 dct_name aef89_93.dbd raw_name=../raw/morg91 (0 observations deleted) obs 486031 # of persons with age<=15 108763 # of non-interview records 39619 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 6,771 1.39 1.39 1 | 7,122 1.47 2.86 2 | 7,046 1.45 4.31 3 | 7,054 1.45 5.76 4 | 6,866 1.41 7.17 5 | 7,036 1.45 8.62 6 | 7,026 1.45 10.07 7 | 6,833 1.41 11.47 8 | 7,046 1.45 12.92 9 | 6,826 1.40 14.33 10 | 6,979 1.44 15.76 11 | 6,920 1.42 17.19 12 | 6,454 1.33 18.51 13 | 6,440 1.33 19.84 14 | 6,302 1.30 21.13 15 | 6,042 1.24 22.38 16 | 6,195 1.27 23.65 17 | 6,031 1.24 24.89 18 | 5,772 1.19 26.08 19 | 5,843 1.20 27.28 20 | 6,104 1.26 28.54 21 | 6,261 1.29 29.83 22 | 6,045 1.24 31.07 23 | 5,886 1.21 32.28 24 | 6,135 1.26 33.54 25 | 6,347 1.31 34.85 26 | 6,804 1.40 36.25 27 | 6,868 1.41 37.66 28 | 7,277 1.50 39.16 29 | 7,436 1.53 40.69 30 | 7,705 1.59 42.28 31 | 7,695 1.58 43.86 32 | 7,596 1.56 45.42 33 | 7,645 1.57 46.99 34 | 7,743 1.59 48.59 35 | 7,601 1.56 50.15 36 | 7,480 1.54 51.69 37 | 7,169 1.48 53.17 38 | 7,100 1.46 54.63 39 | 6,970 1.43 56.06 40 | 7,069 1.45 57.51 41 | 6,532 1.34 58.86 42 | 6,432 1.32 60.18 43 | 6,617 1.36 61.54 44 | 6,597 1.36 62.90 45 | 5,436 1.12 64.02 46 | 5,299 1.09 65.11 47 | 5,120 1.05 66.16 48 | 5,257 1.08 67.24 49 | 4,673 0.96 68.21 50 | 4,655 0.96 69.16 51 | 4,171 0.86 70.02 52 | 4,182 0.86 70.88 53 | 4,069 0.84 71.72 54 | 4,002 0.82 72.54 55 | 3,844 0.79 73.33 56 | 3,814 0.78 74.12 57 | 3,643 0.75 74.87 58 | 3,739 0.77 75.64 59 | 3,742 0.77 76.41 60 | 3,761 0.77 77.18 61 | 3,852 0.79 77.97 62 | 3,810 0.78 78.76 63 | 3,771 0.78 79.53 64 | 3,579 0.74 80.27 65 | 4,012 0.83 81.10 66 | 3,793 0.78 81.88 67 | 3,741 0.77 82.65 68 | 3,535 0.73 83.37 69 | 3,534 0.73 84.10 70 | 3,465 0.71 84.81 71 | 3,230 0.66 85.48 72 | 2,978 0.61 86.09 73 | 2,880 0.59 86.68 74 | 2,648 0.54 87.23 75 | 2,510 0.52 87.74 76 | 2,403 0.49 88.24 77 | 2,198 0.45 88.69 78 | 2,039 0.42 89.11 79 | 1,864 0.38 89.49 80 | 1,769 0.36 89.86 81 | 1,564 0.32 90.18 82 | 1,314 0.27 90.45 83 | 1,268 0.26 90.71 84 | 1,066 0.22 90.93 85 | 924 0.19 91.12 86 | 716 0.15 91.27 87 | 636 0.13 91.40 88 | 544 0.11 91.51 89 | 388 0.08 91.59 90 | 1,256 0.26 91.85 . | 39,619 8.15 100.00 ------------+----------------------------------- Total | 486,031 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- . | 39,619 100.00 100.00 ------------+----------------------------------- Total | 39,619 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 6,771 6.23 6.23 1 | 7,122 6.55 12.77 2 | 7,046 6.48 19.25 3 | 7,054 6.49 25.74 4 | 6,866 6.31 32.05 5 | 7,036 6.47 38.52 6 | 7,026 6.46 44.98 7 | 6,833 6.28 51.26 8 | 7,046 6.48 57.74 9 | 6,826 6.28 64.02 10 | 6,979 6.42 70.43 11 | 6,920 6.36 76.80 12 | 6,454 5.93 82.73 13 | 6,440 5.92 88.65 14 | 6,302 5.79 94.44 15 | 6,042 5.56 100.00 ------------+----------------------------------- Total | 108,763 100.00 (108763 observations deleted) (39619 observations deleted) obs 337649 after keeping age>15&age!=. infile successful no observations (0 real changes made) (0 real changes made) (0 real changes made) (167000 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (170649 real changes made) Geography smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (5623 real changes made, 5623 to missing) replace centcity = . if centcity==4 | centcity<=0 (62073 real changes made, 62073 to missing) (223375 real changes made, 223375 to missing) (319429 real changes made, 319429 to missing) (104236 real changes made, 104236 to missing) (107635 real changes made, 107635 to missing) (219976 real changes made, 219976 to missing) replace smsasize=. if smsasize<=0 (104236 missing values generated) drop smsasize Demography (64845 real changes made, 64845 to missing) (272804 real changes made) (0 real changes made) if 1991 > 1983 & 1991 < 1989 { if 1991 > 1988 & 1991 < 1994 { (ch02: 272804 changes made) (ch35: 272804 changes made) (ch613: 272804 changes made) (ch1417: 272804 changes made) (21037 real changes made) if 1991 > 1983 & 1991 < 1994 { (0 real changes made) (179 real changes made, 179 to missing) Employment docc80 (83443 missing values generated) recode docc80 (docc80: 254206 changes made) ** The renaming is part of the Census reweighting ; docc00 dind (83443 missing values generated) (dind: 254206 changes made) Wages (0 real changes made) (0 real changes made) (370 real changes made, 370 to missing) (0 real changes made) (0 real changes made) (156272 real changes made) (246305 real changes made) (0 real changes made) (0 real changes made) Hours, Unions spouse was int now byte ym_file was float now int ym was float now int ch613 was int now byte ch1417 was int now byte ch02 was int now byte ch35 was int now byte ch05 was int now byte docc80 was int now byte dind was float now byte file /homes/data/morg/annual/morg91.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- intmonth | 337649 6.503073 3.458029 1 12 hhnum | 337016 1.086388 .3139366 1 5 hurespli | 336494 1.615889 .8193191 1 7 minsamp | 337649 6.021614 1.999886 4 8 state | 337649 51.27525 26.12097 11 95 -------------+-------------------------------------------------------- stfips | 337649 28.60664 14.96443 1 56 centcity | 275576 2.033711 .7685009 1 3 msafips | 230014 4438.119 2542.579 80 9340 spouse | 337649 28.8994 31.50009 0 90 pmsarank | 114274 1.767401 1.535019 1 12 -------------+-------------------------------------------------------- cmsarank | 233413 43.19714 54.79422 1 252 cmsacode | 117673 51.69593 25.27267 7 91 smsastat | 332026 1.259552 .4383895 1 2 icntcity | 18220 1.158617 .4546264 1 4 hhid | 0 -------------+-------------------------------------------------------- sex | 337649 1.529482 .4991308 1 2 veteran | 335832 5.542066 1.262833 1 6 gradeat | 337649 12.65607 2.975032 0 18 gradecp | 337649 1.210408 .4075989 1 2 doinglw | 335363 2.974112 2.47556 1 8 -------------+-------------------------------------------------------- hourslwa | 195944 38.84682 13.93847 0 99 uhours35 | 48739 1.70857 .4544257 1 2 why35lw | 48803 10.17974 4.110606 1 15 class | 254591 1.974838 1.76245 1 8 uhours | 179027 37.98362 11.27833 0 99 -------------+-------------------------------------------------------- paidhr | 178231 1.396508 .4891735 1 2 earnhr | 95065 865.8197 482.0997 1 9900 uearnwk | 153932 433.4079 323.846 0 1999 unionmm | 178102 1.838458 .3680314 1 2 unioncov | 150561 1.964201 .1857904 1 2 -------------+-------------------------------------------------------- studftpt | 22244 1.088878 .2845738 1 2 lineno | 337649 1.753501 1.044671 1 39 relaref | 337649 3.101703 2.240096 1 10 age | 337649 43.46972 18.2286 16 90 marital | 337649 3.125337 2.593143 1 7 -------------+-------------------------------------------------------- race | 337649 1.216701 .6348392 1 5 activlwr | 335832 2.98646 2.485559 1 8 hourslw | 195487 38.9973 13.75783 1 99 reasonlw | 48878 10.16013 4.118977 1 15 absentlw | 13433 3.737735 2.71029 1 8 -------------+-------------------------------------------------------- ind80 | 254206 569.7638 277.4106 10 991 occ80 | 254206 381.6629 246.8719 3 905 classer | 255591 1.947338 1.724716 1 8 uhourse | 179560 38.17531 10.90539 1 99 paidhre | 179560 1.398012 .4894893 1 2 -------------+-------------------------------------------------------- unionmme | 179560 1.83821 .368259 1 2 untype | 14612 2.707158 1.234359 1 5 agri | 254206 .0310811 .1735372 0 1 schenr | 53906 1.578581 .493791 1 2 schlvl | 22717 1.491262 .4999346 1 2 -------------+-------------------------------------------------------- ethnic | 337470 7.710454 1.246588 1 9 lfsr89 | 335832 3.180802 2.792125 1 7 ftpt89 | 335832 2.092856 1.289109 1 7 eligible | 335832 1.465328 .4987971 1 2 classer2 | 255591 1.746376 1.418425 1 7 -------------+-------------------------------------------------------- earnhre | 108093 880.1816 483.863 50 9999 earnwke | 179560 443.1502 320.4515 1 1923 weight | 335832 1705.538 897.7717 123.22 11491.65 earnwt | 335832 6822.174 3600.705 477.24 43891.27 famnum | 337649 .8344316 .4305264 0 5 -------------+-------------------------------------------------------- ownchild | 272804 .8852216 1.161482 0 8 chldpres | 337649 2.810395 3.422282 0 16 pfamrel | 337649 1.762771 1.393401 0 5 I25a | 335832 .0399366 .3976834 0 4 I25b | 335832 .045091 .410838 0 4 -------------+-------------------------------------------------------- I25c | 335832 .0036089 .1039897 0 3 I25d | 335832 .0850961 .5588011 0 4 recnum | 337649 243185 140443.5 1 486029 year | 337649 1991 0 1991 1991 ym_file | 337649 377.5031 3.458029 372 383 -------------+-------------------------------------------------------- ym | 337649 368.4382 6.91868 357 380 smsa80 | 233413 5.224323 1.916431 2 8 ch613 | 337649 .2111186 .408103 0 1 ch1417 | 337649 .1547583 .3616747 0 1 ch02 | 337649 .0926791 .2899826 0 1 -------------+-------------------------------------------------------- ch35 | 337649 .0959932 .2945823 0 1 ch05 | 337649 .1549834 .3618894 0 1 docc80 | 254206 23.41338 12.41949 1 46 dind | 254206 30.69841 13.48699 1 52 . aef2 1992 92 89_93 dct_name aef89_93.dbd raw_name=../raw/morg92 (0 observations deleted) obs 477234 # of persons with age<=15 106436 # of non-interview records 38614 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 6,378 1.34 1.34 1 | 6,856 1.44 2.77 2 | 6,859 1.44 4.21 3 | 6,932 1.45 5.66 4 | 6,747 1.41 7.08 5 | 6,761 1.42 8.49 6 | 6,903 1.45 9.94 7 | 6,766 1.42 11.36 8 | 6,567 1.38 12.73 9 | 6,715 1.41 14.14 10 | 6,665 1.40 15.54 11 | 6,757 1.42 16.95 12 | 6,802 1.43 18.38 13 | 6,298 1.32 19.70 14 | 6,341 1.33 21.03 15 | 6,089 1.28 22.30 16 | 5,898 1.24 23.54 17 | 5,947 1.25 24.78 18 | 5,449 1.14 25.93 19 | 5,390 1.13 27.06 20 | 5,588 1.17 28.23 21 | 6,002 1.26 29.48 22 | 6,245 1.31 30.79 23 | 5,967 1.25 32.04 24 | 5,849 1.23 33.27 25 | 6,063 1.27 34.54 26 | 6,198 1.30 35.84 27 | 6,589 1.38 37.22 28 | 6,973 1.46 38.68 29 | 7,172 1.50 40.18 30 | 7,388 1.55 41.73 31 | 7,305 1.53 43.26 32 | 7,667 1.61 44.87 33 | 7,466 1.56 46.43 34 | 7,344 1.54 47.97 35 | 7,619 1.60 49.57 36 | 7,366 1.54 51.11 37 | 7,244 1.52 52.63 38 | 7,018 1.47 54.10 39 | 7,119 1.49 55.59 40 | 6,979 1.46 57.05 41 | 6,506 1.36 58.42 42 | 6,467 1.36 59.77 43 | 6,256 1.31 61.08 44 | 6,290 1.32 62.40 45 | 6,605 1.38 63.79 46 | 5,261 1.10 64.89 47 | 4,966 1.04 65.93 48 | 5,115 1.07 67.00 49 | 5,075 1.06 68.06 50 | 4,748 0.99 69.06 51 | 4,318 0.90 69.96 52 | 4,221 0.88 70.85 53 | 4,076 0.85 71.70 54 | 4,013 0.84 72.54 55 | 3,964 0.83 73.37 56 | 3,698 0.77 74.15 57 | 3,690 0.77 74.92 58 | 3,459 0.72 75.65 59 | 3,603 0.75 76.40 60 | 3,818 0.80 77.20 61 | 3,533 0.74 77.94 62 | 3,744 0.78 78.73 63 | 3,638 0.76 79.49 64 | 3,498 0.73 80.22 65 | 3,793 0.79 81.02 66 | 3,632 0.76 81.78 67 | 3,636 0.76 82.54 68 | 3,531 0.74 83.28 69 | 3,327 0.70 83.98 70 | 3,432 0.72 84.70 71 | 3,280 0.69 85.38 72 | 3,046 0.64 86.02 73 | 2,790 0.58 86.61 74 | 2,664 0.56 87.16 75 | 2,458 0.52 87.68 76 | 2,344 0.49 88.17 77 | 2,134 0.45 88.62 78 | 2,056 0.43 89.05 79 | 1,910 0.40 89.45 80 | 1,806 0.38 89.83 81 | 1,575 0.33 90.16 82 | 1,391 0.29 90.45 83 | 1,240 0.26 90.71 84 | 1,073 0.22 90.93 85 | 912 0.19 91.12 86 | 801 0.17 91.29 87 | 629 0.13 91.42 88 | 541 0.11 91.54 89 | 471 0.10 91.64 90 | 1,305 0.27 91.91 . | 38,614 8.09 100.00 ------------+----------------------------------- Total | 477,234 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- . | 38,614 100.00 100.00 ------------+----------------------------------- Total | 38,614 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 6,378 5.99 5.99 1 | 6,856 6.44 12.43 2 | 6,859 6.44 18.88 3 | 6,932 6.51 25.39 4 | 6,747 6.34 31.73 5 | 6,761 6.35 38.08 6 | 6,903 6.49 44.57 7 | 6,766 6.36 50.92 8 | 6,567 6.17 57.09 9 | 6,715 6.31 63.40 10 | 6,665 6.26 69.67 11 | 6,757 6.35 76.01 12 | 6,802 6.39 82.40 13 | 6,298 5.92 88.32 14 | 6,341 5.96 94.28 15 | 6,089 5.72 100.00 ------------+----------------------------------- Total | 106,436 100.00 (106436 observations deleted) (38614 observations deleted) obs 332184 after keeping age>15&age!=. infile successful no observations (0 real changes made) (0 real changes made) (0 real changes made) (164942 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (167242 real changes made) Geography smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (5691 real changes made, 5691 to missing) replace centcity = . if centcity==4 | centcity<=0 (61363 real changes made, 61363 to missing) (219631 real changes made, 219631 to missing) (314667 real changes made, 314667 to missing) (103189 real changes made, 103189 to missing) (106447 real changes made, 106447 to missing) (216373 real changes made, 216373 to missing) replace smsasize=. if smsasize<=0 (103189 missing values generated) drop smsasize Demography (64704 real changes made, 64704 to missing) (267480 real changes made) (0 real changes made) if 1992 > 1983 & 1992 < 1989 { if 1992 > 1988 & 1992 < 1994 { (ch02: 267480 changes made) (ch35: 267480 changes made) (ch613: 267480 changes made) (ch1417: 267480 changes made) (20838 real changes made) if 1992 > 1983 & 1992 < 1994 { (0 real changes made) (0 real changes made) (186 real changes made, 186 to missing) Employment docc80 (82024 missing values generated) recode docc80 (docc80: 250160 changes made) ** The renaming is part of the Census reweighting ; docc00 dind (82024 missing values generated) (dind: 250160 changes made) Wages (0 real changes made) (0 real changes made) (269 real changes made, 269 to missing) (4 real changes made, 4 to missing) (0 real changes made) (153740 real changes made) (242608 real changes made) (0 real changes made) (0 real changes made) Hours, Unions spouse was int now byte ym_file was float now int ym was float now int ch613 was int now byte ch1417 was int now byte ch02 was int now byte ch35 was int now byte ch05 was int now byte docc80 was int now byte dind was float now byte file /homes/data/morg/annual/morg92.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- intmonth | 332184 6.497188 3.458479 1 12 hhnum | 331839 1.085707 .310436 1 7 hurespli | 331126 1.613401 .8239439 1 7 minsamp | 332184 6.013848 1.999955 4 8 state | 332184 51.02402 26.05261 11 95 -------------+-------------------------------------------------------- stfips | 332184 28.71667 14.89539 1 56 centcity | 270821 2.039543 .7674166 1 3 msafips | 225737 4422.466 2536.677 80 9340 spouse | 332184 28.81754 31.48181 0 90 pmsarank | 112553 1.768962 1.53027 1 12 -------------+-------------------------------------------------------- cmsarank | 228995 43.16512 54.72898 1 252 cmsacode | 115811 51.63736 25.26662 7 91 smsastat | 326493 1.261301 .4393443 1 2 icntcity | 17517 1.158931 .4474902 1 4 hhid | 0 -------------+-------------------------------------------------------- sex | 332184 1.529198 .4991475 1 2 veteran | 330588 5.547101 1.258491 1 6 grade92 | 332184 39.33651 2.865005 31 46 doinglw | 330095 3.003587 2.505253 1 8 hourslwa | 191721 38.65221 13.93642 0 99 -------------+-------------------------------------------------------- uhours35 | 52980 1.638599 .4804108 1 2 why35lw | 53087 9.839659 4.002498 1 15 class | 250685 1.975284 1.764543 1 8 uhours | 176153 38.0352 11.22964 0 99 paidhr | 175464 1.393101 .4884402 1 2 -------------+-------------------------------------------------------- earnhr | 93710 890.1521 498.195 1 9999 uearnwk | 151047 446.5899 331.8399 0 1999 unionmm | 175243 1.841432 .3652742 1 2 unioncov | 148083 1.968484 .1747085 1 2 studftpt | 21986 1.093105 .2905857 1 2 -------------+-------------------------------------------------------- lineno | 332184 1.743398 1.022752 1 23 relaref | 332184 3.098147 2.245254 1 10 age | 332184 43.68915 18.21175 16 90 marital | 332184 3.132427 2.592091 1 7 race | 332184 1.222031 .6460509 1 5 -------------+-------------------------------------------------------- activlwr | 330588 3.01694 2.515749 1 8 hourslw | 191640 38.72876 13.84356 1 99 reasonlw | 53193 9.822176 4.009719 1 15 absentlw | 13428 3.772118 2.7211 1 8 ind80 | 250160 574.2401 277.5533 10 991 -------------+-------------------------------------------------------- occ80 | 250160 380.2511 245.4008 3 905 classer | 251654 1.935205 1.714863 1 8 uhourse | 176848 38.19998 10.93639 1 99 paidhre | 176848 1.39491 .4888327 1 2 unionmme | 176848 1.841542 .365171 1 2 -------------+-------------------------------------------------------- untype | 15646 2.688099 1.220259 1 5 agri | 250160 .0301887 .1711065 0 1 schenr | 51978 1.56901 .4952195 1 2 schlvl | 22402 1.500803 .5000105 1 2 ethnic | 331998 7.707504 1.252466 1 9 -------------+-------------------------------------------------------- lfsr89 | 330588 3.176183 2.784549 1 7 ftpt89 | 330588 2.110355 1.313832 1 7 eligible | 330588 1.46505 .4987778 1 2 classer2 | 251654 1.735864 1.410831 1 7 earnhre | 107005 903.5207 493.4699 50 9999 -------------+-------------------------------------------------------- earnwke | 176848 455.1987 328.3264 1 1923 weight | 330588 1749.658 937.3007 120.87 12974.61 earnwt | 330588 6998.653 3757.724 473.47 52445.14 famnum | 332184 .8328758 .4339489 0 6 ownchild | 267480 .8752243 1.150948 0 8 -------------+-------------------------------------------------------- chldpres | 332184 2.779324 3.400725 0 16 pfamrel | 332184 1.761099 1.400576 0 5 I25a | 330588 .0345082 .3699222 0 4 I25b | 330588 .0396627 .3855052 0 4 I25c | 330588 .0028132 .0918238 0 3 -------------+-------------------------------------------------------- I25d | 330588 .0807803 .5444979 0 4 recnum | 332184 238598.4 137894 1 477234 year | 332184 1992 0 1992 1992 ym_file | 332184 389.4972 3.458479 384 395 ym | 332184 380.4556 6.931876 369 392 -------------+-------------------------------------------------------- smsa80 | 228995 5.223559 1.915979 2 8 ch613 | 332184 .2080142 .4058877 0 1 ch1417 | 332184 .154005 .3609541 0 1 ch02 | 332184 .0898568 .285977 0 1 ch35 | 332184 .0950016 .2932175 0 1 -------------+-------------------------------------------------------- ch05 | 332184 .1525871 .3595896 0 1 docc80 | 250160 23.35335 12.37055 1 46 dind | 250160 30.94212 13.44207 1 52 . aef2 1993 93 89_93 dct_name aef89_93.dbd raw_name=../raw/morg93 (0 observations deleted) obs 472016 # of persons with age<=15 105299 # of non-interview records 38632 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 6,358 1.35 1.35 1 | 6,607 1.40 2.75 2 | 6,948 1.47 4.22 3 | 6,826 1.45 5.66 4 | 6,870 1.46 7.12 5 | 6,686 1.42 8.54 6 | 6,671 1.41 9.95 7 | 6,664 1.41 11.36 8 | 6,630 1.40 12.77 9 | 6,543 1.39 14.15 10 | 6,632 1.41 15.56 11 | 6,415 1.36 16.92 12 | 6,654 1.41 18.33 13 | 6,598 1.40 19.72 14 | 6,106 1.29 21.02 15 | 6,091 1.29 22.31 16 | 6,013 1.27 23.58 17 | 5,633 1.19 24.78 18 | 5,467 1.16 25.93 19 | 5,069 1.07 27.01 20 | 5,207 1.10 28.11 21 | 5,543 1.17 29.29 22 | 5,829 1.23 30.52 23 | 5,882 1.25 31.77 24 | 5,964 1.26 33.03 25 | 5,927 1.26 34.29 26 | 5,956 1.26 35.55 27 | 6,149 1.30 36.85 28 | 6,694 1.42 38.27 29 | 6,802 1.44 39.71 30 | 7,322 1.55 41.26 31 | 7,122 1.51 42.77 32 | 7,473 1.58 44.35 33 | 7,283 1.54 45.90 34 | 7,175 1.52 47.42 35 | 7,398 1.57 48.98 36 | 7,266 1.54 50.52 37 | 7,190 1.52 52.05 38 | 7,098 1.50 53.55 39 | 6,864 1.45 55.00 40 | 7,001 1.48 56.49 41 | 6,560 1.39 57.88 42 | 6,382 1.35 59.23 43 | 6,220 1.32 60.55 44 | 6,117 1.30 61.84 45 | 6,317 1.34 63.18 46 | 6,224 1.32 64.50 47 | 5,036 1.07 65.57 48 | 4,820 1.02 66.59 49 | 4,985 1.06 67.64 50 | 5,260 1.11 68.76 51 | 4,618 0.98 69.74 52 | 4,225 0.90 70.63 53 | 3,988 0.84 71.48 54 | 3,951 0.84 72.31 55 | 3,888 0.82 73.14 56 | 3,684 0.78 73.92 57 | 3,572 0.76 74.67 58 | 3,655 0.77 75.45 59 | 3,437 0.73 76.18 60 | 3,519 0.75 76.92 61 | 3,644 0.77 77.69 62 | 3,514 0.74 78.44 63 | 3,638 0.77 79.21 64 | 3,481 0.74 79.95 65 | 3,703 0.78 80.73 66 | 3,606 0.76 81.50 67 | 3,500 0.74 82.24 68 | 3,478 0.74 82.97 69 | 3,267 0.69 83.67 70 | 3,416 0.72 84.39 71 | 3,181 0.67 85.06 72 | 3,178 0.67 85.74 73 | 2,900 0.61 86.35 74 | 2,610 0.55 86.90 75 | 2,713 0.57 87.48 76 | 2,227 0.47 87.95 77 | 2,192 0.46 88.41 78 | 2,100 0.44 88.86 79 | 1,921 0.41 89.27 80 | 1,758 0.37 89.64 81 | 1,569 0.33 89.97 82 | 1,463 0.31 90.28 83 | 1,351 0.29 90.57 84 | 1,082 0.23 90.80 85 | 953 0.20 91.00 86 | 803 0.17 91.17 87 | 654 0.14 91.31 88 | 588 0.12 91.43 89 | 460 0.10 91.53 90 | 1,350 0.29 91.82 . | 38,632 8.18 100.00 ------------+----------------------------------- Total | 472,016 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- . | 38,632 100.00 100.00 ------------+----------------------------------- Total | 38,632 100.00 Age | Freq. Percent Cum. ------------+----------------------------------- 0 | 6,358 6.04 6.04 1 | 6,607 6.27 12.31 2 | 6,948 6.60 18.91 3 | 6,826 6.48 25.39 4 | 6,870 6.52 31.92 5 | 6,686 6.35 38.27 6 | 6,671 6.34 44.60 7 | 6,664 6.33 50.93 8 | 6,630 6.30 57.23 9 | 6,543 6.21 63.44 10 | 6,632 6.30 69.74 11 | 6,415 6.09 75.83 12 | 6,654 6.32 82.15 13 | 6,598 6.27 88.42 14 | 6,106 5.80 94.22 15 | 6,091 5.78 100.00 ------------+----------------------------------- Total | 105,299 100.00 (105299 observations deleted) (38632 observations deleted) obs 328085 after keeping age>15&age!=. infile successful no observations (0 real changes made) (0 real changes made) (0 real changes made) (163478 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (164607 real changes made) Geography smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (5600 real changes made, 5600 to missing) replace centcity = . if centcity==4 | centcity<=0 (60686 real changes made, 60686 to missing) (217275 real changes made, 217275 to missing) (310766 real changes made, 310766 to missing) (102816 real changes made, 102816 to missing) (106017 real changes made, 106017 to missing) (214074 real changes made, 214074 to missing) replace smsasize=. if smsasize<=0 (102816 missing values generated) drop smsasize Demography (64625 real changes made, 64625 to missing) (263460 real changes made) (0 real changes made) if 1993 > 1983 & 1993 < 1989 { if 1993 > 1988 & 1993 < 1994 { (ch02: 263460 changes made) (ch35: 263460 changes made) (ch613: 263460 changes made) (ch1417: 263460 changes made) (20602 real changes made) if 1993 > 1983 & 1993 < 1994 { (0 real changes made) (0 real changes made) (274 real changes made, 274 to missing) Employment docc80 (82443 missing values generated) recode docc80 (docc80: 245642 changes made) ** The renaming is part of the Census reweighting ; docc00 dind (82443 missing values generated) (dind: 245642 changes made) Wages (0 real changes made) (0 real changes made) (174 real changes made, 174 to missing) (1 real change made, 1 to missing) (0 real changes made) (151922 real changes made) (238428 real changes made) (0 real changes made) (0 real changes made) Hours, Unions spouse was int now byte ym_file was float now int ym was float now int ch613 was int now byte ch1417 was int now byte ch02 was int now byte ch35 was int now byte ch05 was int now byte docc80 was int now byte dind was float now byte file /homes/data/morg/annual/morg93.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- intmonth | 328085 6.493473 3.454551 1 12 hhnum | 327739 1.084082 .3074319 1 7 hurespli | 326800 1.599067 .8271617 1 7 minsamp | 328085 6.006882 1.999991 4 8 state | 328085 50.99566 26.0027 11 95 -------------+-------------------------------------------------------- stfips | 328085 28.6916 14.89029 1 56 centcity | 267399 2.04549 .7680071 1 3 msafips | 222068 4422.927 2542.033 80 9340 spouse | 328085 28.76294 31.52115 0 90 pmsarank | 110810 1.761763 1.515316 1 12 -------------+-------------------------------------------------------- cmsarank | 225269 43.06108 54.62925 1 252 cmsacode | 114011 51.44726 25.24713 7 91 smsastat | 322485 1.264257 .4409376 1 2 icntcity | 17319 1.155898 .4471797 1 4 hhid | 0 -------------+-------------------------------------------------------- sex | 328085 1.53075 .4990543 1 2 veteran | 326517 5.555891 1.247842 1 6 grade92 | 328085 39.39729 2.855713 31 46 doinglw | 325960 3.027267 2.530032 1 8 hourslwa | 189167 39.17036 13.91672 0 99 -------------+-------------------------------------------------------- uhours35 | 47485 1.696262 .4598757 1 2 why35lw | 47635 10.15337 4.05454 1 15 class | 245999 1.983691 1.768913 1 8 uhours | 173182 38.21328 11.13179 0 99 paidhr | 172937 1.392785 .488371 1 2 -------------+-------------------------------------------------------- earnhr | 91446 912.724 515.767 1 9999 uearnwk | 146828 460.4223 341.8794 0 1999 unionmm | 172802 1.842189 .3645644 1 2 unioncov | 146016 1.970202 .1700305 1 2 studftpt | 21396 1.09212 .2892021 1 2 -------------+-------------------------------------------------------- lineno | 328085 1.733429 1.01524 1 36 relaref | 328085 3.085828 2.243243 1 10 age | 328085 43.95019 18.24052 16 90 marital | 328085 3.133642 2.588896 1 7 race | 328085 1.234183 .6710871 1 5 -------------+-------------------------------------------------------- activlwr | 326517 3.041162 2.540762 1 8 hourslw | 189354 39.203 13.88066 1 99 reasonlw | 47849 10.13118 4.065747 1 15 absentlw | 12805 3.6549 2.698855 1 8 ind80 | 245642 577.3268 276.5838 10 991 -------------+-------------------------------------------------------- occ80 | 245642 378.4367 245.7107 3 905 classer | 247113 1.94248 1.718647 1 8 uhourse | 174595 38.27757 10.98457 1 99 paidhre | 174595 1.395155 .4888853 1 2 unionmme | 174595 1.842292 .3644679 1 2 -------------+-------------------------------------------------------- untype | 14268 2.760583 1.228221 1 5 agri | 245642 .0293679 .168836 0 1 schenr | 50276 1.564981 .4957644 1 2 schlvl | 21871 1.491884 .4999456 1 2 ethnic | 327811 7.704134 1.259929 1 9 -------------+-------------------------------------------------------- lfsr89 | 326517 3.190379 2.794535 1 7 ftpt89 | 326517 2.090418 1.293029 1 7 eligible | 326517 1.465281 .4987939 1 2 classer2 | 247113 1.741988 1.414651 1 7 earnhre | 105602 928.0515 517.1191 50 9999 -------------+-------------------------------------------------------- earnwke | 174595 468.9893 338.1808 1 1923 weight | 326517 1790.145 975.159 108.06 15077.71 earnwt | 326517 7160.603 3907.99 400.57 58618.42 famnum | 328085 .8311505 .4362089 0 6 ownchild | 263460 .874034 1.154 0 8 -------------+-------------------------------------------------------- chldpres | 328085 2.763884 3.394483 0 16 pfamrel | 328085 1.758703 1.406292 0 5 I25a | 326517 .0360533 .3780392 0 4 I25b | 326517 .0394711 .3847751 0 4 I25c | 326517 .0027104 .090133 0 3 -------------+-------------------------------------------------------- I25d | 326517 .0898483 .5743412 0 4 recnum | 328085 236199.1 136369.3 1 472016 year | 328085 1993 0 1993 1993 ym_file | 328085 401.4935 3.454551 396 407 ym | 328085 392.4728 6.906897 381 404 -------------+-------------------------------------------------------- smsa80 | 225269 5.226139 1.913564 2 8 ch613 | 328085 .2063337 .4046735 0 1 ch1417 | 328085 .1525519 .3595556 0 1 ch02 | 328085 .0897237 .2857859 0 1 ch35 | 328085 .0952893 .2936146 0 1 -------------+-------------------------------------------------------- ch05 | 328085 .1525184 .3595232 0 1 docc80 | 245642 23.2442 12.40883 1 46 dind | 245642 31.07605 13.39511 1 52 . aef2 1994 94 94_97 dct_name aef94_97.dbd raw_name=../raw/morg94 (1 observation deleted) obs 461490 # of persons with age<=15 142256 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 40,053 8.68 8.68 0 | 5,943 1.29 9.97 1 | 6,252 1.35 11.32 2 | 6,422 1.39 12.71 3 | 6,715 1.46 14.17 4 | 6,667 1.44 15.61 5 | 6,657 1.44 17.06 6 | 6,420 1.39 18.45 7 | 6,499 1.41 19.85 8 | 6,294 1.36 21.22 9 | 6,456 1.40 22.62 10 | 6,393 1.39 24.00 11 | 6,360 1.38 25.38 12 | 6,257 1.36 26.74 13 | 6,420 1.39 28.13 14 | 6,415 1.39 29.52 15 | 6,033 1.31 30.83 16 | 5,866 1.27 32.10 17 | 5,837 1.26 33.36 18 | 5,188 1.12 34.49 19 | 5,063 1.10 35.58 20 | 4,945 1.07 36.65 21 | 5,146 1.12 37.77 22 | 5,279 1.14 38.91 23 | 5,787 1.25 40.17 24 | 5,805 1.26 41.42 25 | 5,718 1.24 42.66 26 | 5,788 1.25 43.92 27 | 5,731 1.24 45.16 28 | 6,077 1.32 46.48 29 | 6,371 1.38 47.86 30 | 6,726 1.46 49.31 31 | 6,726 1.46 50.77 32 | 6,863 1.49 52.26 33 | 7,092 1.54 53.80 34 | 7,165 1.55 55.35 35 | 6,996 1.52 56.86 36 | 6,983 1.51 58.38 37 | 7,074 1.53 59.91 38 | 6,915 1.50 61.41 39 | 6,764 1.47 62.87 40 | 6,791 1.47 64.35 41 | 6,558 1.42 65.77 42 | 6,436 1.39 67.16 43 | 6,134 1.33 68.49 44 | 6,001 1.30 69.79 45 | 6,117 1.33 71.12 46 | 6,063 1.31 72.43 47 | 6,041 1.31 73.74 48 | 5,004 1.08 74.82 49 | 4,702 1.02 75.84 50 | 4,818 1.04 76.89 51 | 4,937 1.07 77.96 52 | 4,298 0.93 78.89 53 | 4,101 0.89 79.78 54 | 3,758 0.81 80.59 55 | 3,844 0.83 81.42 56 | 3,709 0.80 82.23 57 | 3,475 0.75 82.98 58 | 3,436 0.74 83.73 59 | 3,441 0.75 84.47 60 | 3,363 0.73 85.20 61 | 3,298 0.71 85.91 62 | 3,375 0.73 86.65 63 | 3,409 0.74 87.38 64 | 3,446 0.75 88.13 65 | 3,421 0.74 88.87 66 | 3,360 0.73 89.60 67 | 3,438 0.74 90.35 68 | 3,262 0.71 91.05 69 | 3,213 0.70 91.75 70 | 3,299 0.71 92.46 71 | 3,094 0.67 93.13 72 | 3,014 0.65 93.79 73 | 2,905 0.63 94.42 74 | 2,762 0.60 95.01 75 | 2,466 0.53 95.55 76 | 2,395 0.52 96.07 77 | 2,112 0.46 96.53 78 | 2,027 0.44 96.97 79 | 1,919 0.42 97.38 80 | 1,749 0.38 97.76 81 | 1,583 0.34 98.10 82 | 1,348 0.29 98.39 83 | 1,274 0.28 98.67 84 | 1,123 0.24 98.91 85 | 908 0.20 99.11 86 | 796 0.17 99.28 87 | 664 0.14 99.43 88 | 532 0.12 99.54 89 | 448 0.10 99.64 90 | 1,662 0.36 100.00 ------------+----------------------------------- Total | 461,490 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 40,053 28.16 28.16 0 | 5,943 4.18 32.33 1 | 6,252 4.39 36.73 2 | 6,422 4.51 41.24 3 | 6,715 4.72 45.96 4 | 6,667 4.69 50.65 5 | 6,657 4.68 55.33 6 | 6,420 4.51 59.84 7 | 6,499 4.57 64.41 8 | 6,294 4.42 68.84 9 | 6,456 4.54 73.37 10 | 6,393 4.49 77.87 11 | 6,360 4.47 82.34 12 | 6,257 4.40 86.74 13 | 6,420 4.51 91.25 14 | 6,415 4.51 95.76 15 | 6,033 4.24 100.00 ------------+----------------------------------- Total | 142,256 100.00 (142256 observations deleted) (0 observations deleted) obs 319234 after keeping age>15&age!=. infile successful no observations (319234 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (158198 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (161036 real changes made) Geography smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (5731 real changes made, 5731 to missing) (319234 real changes made) (319234 real changes made) (238899 real changes made, 238899 to missing) (53295 real changes made, 53295 to missing) (238899 real changes made, 238899 to missing) (284577 real changes made, 284577 to missing) replace centcity = . if centcity==4 | centcity<=0 (58826 real changes made, 58826 to missing) (302611 real changes made, 302611 to missing) (25094 real changes made, 25094 to missing) (102413 real changes made, 102413 to missing) (291371 real changes made, 291371 to missing) (0 real changes made) replace smsasize=. if smsasize<=0 (263993 missing values generated) drop smsasize Demography (137866 real changes made, 137866 to missing) if 1994 > 1983 & 1994 < 1989 { (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (646 real changes made, 646 to missing) (1518 real changes made, 1518 to missing) Employment (2216 real changes made, 2216 to missing) (311193 real changes made, 311193 to missing) (148430 real changes made, 148430 to missing) (98902 real changes made, 98902 to missing) (98902 real changes made, 98902 to missing) (98902 real changes made, 98902 to missing) docc80 (98902 missing values generated) recode docc80 (docc80: 220332 changes made) ** The renaming is part of the Census reweighting ; docc00 dind (98902 missing values generated) (dind: 220332 changes made) Wages (148430 real changes made, 148430 to missing) (0 real changes made) (214472 real changes made, 214472 to missing) (0 real changes made) (0 real changes made) (148430 real changes made) (213474 real changes made) (98902 real changes made, 98902 to missing) (307289 real changes made, 307289 to missing) (122969 real changes made) (148430 real changes made) (0 real changes made) (122969 real changes made, 122969 to missing) (1518 real changes made, 1518 to missing) (317684 real changes made, 317684 to missing) Hours, Unions (303165 real changes made, 303165 to missing) (309905 real changes made, 309905 to missing) (297245 real changes made, 297245 to missing) (270589 real changes made, 270589 to missing) (297245 real changes made, 297245 to missing) (1518 real changes made, 1518 to missing) (132298 real changes made, 132298 to missing) (31 real changes made) (14588 real changes made, 14588 to missing) (267892 real changes made, 267892 to missing) (148430 real changes made, 148430 to missing) (175112 real changes made, 175112 to missing) spouse was int now byte ym_file was float now int ym was float now int docc80 was int now byte dind was float now byte hhid was str15 now str12 file /homes/data/morg/annual/morg94.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hurespli | 319234 1.59088 .7972991 0 14 intmonth | 319234 6.48794 3.454723 1 12 minsamp | 319234 6.01778 1.999924 4 8 hrsample | 0 serial | 0 -------------+-------------------------------------------------------- hhnum | 319234 1.077686 .291013 1 5 state | 319234 51.01258 26.05296 11 95 stfips | 319234 28.66119 14.89851 1 56 county | 319234 6.677375 27.93961 -1 252 centcity | 260408 2.041834 .7654405 1 3 -------------+-------------------------------------------------------- msafips | 216821 4419.707 2545.354 80 9340 pmsarank | 27040 1.774519 1.527274 1 12 cmsarank | 55241 42.91276 54.06513 1 252 cmsacode | 27863 51.30176 25.19262 7 91 smsastat | 313503 1.261436 .4394177 1 2 -------------+-------------------------------------------------------- icntcity | 16623 1.160922 .4572005 1 4 hhid | 0 spouse | 181368 1.561339 .6800466 1 16 sex | 319234 1.530752 .4990542 1 2 veteran | 317716 5.564038 1.238336 1 6 -------------+-------------------------------------------------------- grade92 | 319234 39.45939 2.851063 31 46 famnum | 319234 .8286304 .4401223 0 5 selfproxy | 317018 1.494451 .5107992 1 3 why3594 | 51342 14.80151 6.794771 1 23 class94 | 220332 4.134983 1.224878 1 8 -------------+-------------------------------------------------------- unioncov | 144122 1.976527 .1514012 1 2 studftpt | 21989 1.106599 .3086094 1 2 relref94 | 319234 2.752692 2.258558 1 12 age | 319234 44.118 18.26458 16 90 pfamrel | 319234 1.410313 1.018726 0 4 -------------+-------------------------------------------------------- marital | 319234 3.141326 2.588014 1 7 race | 319234 1.260026 .7328593 1 5 hourslw | 186854 38.95744 14.24816 1 99 reason94 | 16069 5.533201 2.983082 1 13 absent94 | 9329 6.086504 3.321231 4 14 -------------+-------------------------------------------------------- dwrsn | 8041 7.51312 3.098163 1 11 ind80 | 220332 578.7263 277.2676 10 991 occ80 | 220332 372.2304 247.4334 3 905 uhourse | 181677 38.95988 12.07523 0 99 laydur | 1550 7.914194 10.94271 1 112 -------------+-------------------------------------------------------- paidhre | 170804 1.385729 .4867684 1 2 unionmme | 170804 1.843786 .3630593 1 2 ethnic | 318588 7.693237 1.244482 1 9 lfsr94 | 317716 2.82767 2.365349 1 7 untype | 11945 3.456174 1.629828 1 6 -------------+-------------------------------------------------------- ftpt94 | 317716 2.776775 2.564107 1 12 agri | 220332 .0311258 .1736579 0 1 eligible | 319234 1.464957 .4987712 1 2 otc | 170804 1.8097 .3925389 1 2 ernpdh2 | 319234 -.1773871 1.266532 -3 2 -------------+-------------------------------------------------------- earnhre | 104762 975.5642 640.126 23 9999 earnwke | 170804 483.9214 357.9731 0 1923 schenr | 48645 1.54797 .4976987 1 2 schlvl | 21989 1.489927 .4999099 1 2 weight | 319234 1849.563 1039.374 0 20892.63 -------------+-------------------------------------------------------- earnwt | 319234 7406.083 4162.328 0 77523.12 I25a | 319234 .1512151 2.292532 0 43 I25b | 319234 1.475914 7.722591 0 42 penatvty | 319234 82.10492 85.40056 57 555 pemntvty | 319234 94.39796 102.7209 57 555 -------------+-------------------------------------------------------- pefntvty | 319234 95.82803 105.1672 57 555 prcitshp | 319234 1.366496 1.086229 1 5 prcitflg | 319234 .3208618 3.017868 0 41 peinusyr | 34657 6.858153 3.748517 1 13 hrlonglk | 319234 1.986931 .1611423 0 2 -------------+-------------------------------------------------------- lineno | 319234 1.741231 1.022043 1 16 recnum | 319234 231392.4 133279.6 1 461489 year | 319234 1994 0 1994 1994 ym_file | 319234 413.4879 3.454723 408 419 ym | 319234 404.4346 6.931493 393 416 -------------+-------------------------------------------------------- smsa80 | 55241 5.223005 1.907405 2 8 docc80 | 220332 22.89489 12.58579 1 46 dind | 220332 31.11363 13.46221 1 52 . aef2 1995 95 94_97 dct_name aef94_97.dbd raw_name=../raw/morg95 (0 observations deleted) obs 455079 # of persons with age<=15 140728 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 39,697 8.72 8.72 0 | 5,609 1.23 9.96 1 | 6,030 1.33 11.28 2 | 6,129 1.35 12.63 3 | 6,353 1.40 14.02 4 | 6,732 1.48 15.50 5 | 6,604 1.45 16.95 6 | 6,477 1.42 18.38 7 | 6,458 1.42 19.80 8 | 6,371 1.40 21.20 9 | 6,280 1.38 22.58 10 | 6,445 1.42 23.99 11 | 6,323 1.39 25.38 12 | 6,407 1.41 26.79 13 | 6,362 1.40 28.19 14 | 6,276 1.38 29.57 15 | 6,175 1.36 30.92 16 | 5,999 1.32 32.24 17 | 5,800 1.27 33.52 18 | 5,419 1.19 34.71 19 | 4,872 1.07 35.78 20 | 4,713 1.04 36.81 21 | 4,873 1.07 37.88 22 | 4,971 1.09 38.98 23 | 5,130 1.13 40.10 24 | 5,707 1.25 41.36 25 | 5,809 1.28 42.63 26 | 5,646 1.24 43.88 27 | 5,567 1.22 45.10 28 | 5,773 1.27 46.37 29 | 5,911 1.30 47.67 30 | 6,447 1.42 49.08 31 | 6,586 1.45 50.53 32 | 6,579 1.45 51.98 33 | 6,849 1.51 53.48 34 | 7,038 1.55 55.03 35 | 7,225 1.59 56.61 36 | 6,784 1.49 58.11 37 | 6,872 1.51 59.62 38 | 6,920 1.52 61.14 39 | 6,867 1.51 62.65 40 | 6,927 1.52 64.17 41 | 6,536 1.44 65.60 42 | 6,399 1.41 67.01 43 | 6,110 1.34 68.35 44 | 6,107 1.34 69.69 45 | 5,979 1.31 71.01 46 | 5,944 1.31 72.31 47 | 5,906 1.30 73.61 48 | 6,026 1.32 74.94 49 | 4,805 1.06 75.99 50 | 4,708 1.03 77.03 51 | 4,598 1.01 78.04 52 | 4,829 1.06 79.10 53 | 4,295 0.94 80.04 54 | 3,953 0.87 80.91 55 | 3,808 0.84 81.75 56 | 3,686 0.81 82.56 57 | 3,648 0.80 83.36 58 | 3,340 0.73 84.09 59 | 3,343 0.73 84.83 60 | 3,411 0.75 85.58 61 | 3,082 0.68 86.25 62 | 3,250 0.71 86.97 63 | 3,112 0.68 87.65 64 | 3,136 0.69 88.34 65 | 3,359 0.74 89.08 66 | 3,089 0.68 89.76 67 | 3,172 0.70 90.46 68 | 3,209 0.71 91.16 69 | 3,103 0.68 91.84 70 | 3,072 0.68 92.52 71 | 3,083 0.68 93.19 72 | 2,867 0.63 93.82 73 | 2,831 0.62 94.45 74 | 2,694 0.59 95.04 75 | 2,609 0.57 95.61 76 | 2,255 0.50 96.11 77 | 2,119 0.47 96.57 78 | 1,957 0.43 97.00 79 | 1,820 0.40 97.40 80 | 1,751 0.38 97.79 81 | 1,595 0.35 98.14 82 | 1,457 0.32 98.46 83 | 1,176 0.26 98.72 84 | 1,081 0.24 98.95 85 | 953 0.21 99.16 86 | 748 0.16 99.33 87 | 680 0.15 99.48 88 | 530 0.12 99.59 89 | 413 0.09 99.69 90 | 1,433 0.31 100.00 ------------+----------------------------------- Total | 455,079 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 39,697 28.21 28.21 0 | 5,609 3.99 32.19 1 | 6,030 4.28 36.48 2 | 6,129 4.36 40.83 3 | 6,353 4.51 45.35 4 | 6,732 4.78 50.13 5 | 6,604 4.69 54.82 6 | 6,477 4.60 59.43 7 | 6,458 4.59 64.02 8 | 6,371 4.53 68.54 9 | 6,280 4.46 73.01 10 | 6,445 4.58 77.59 11 | 6,323 4.49 82.08 12 | 6,407 4.55 86.63 13 | 6,362 4.52 91.15 14 | 6,276 4.46 95.61 15 | 6,175 4.39 100.00 ------------+----------------------------------- Total | 140,728 100.00 (140728 observations deleted) (0 observations deleted) obs 314351 after keeping age>15&age!=. infile successful no observations (211516 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (158308 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (156043 real changes made) Geography smsasize = . if smsasize <=0 (101766 real changes made) (211516 real changes made) (211516 real changes made) (28928 real changes made, 28928 to missing) (0 real changes made) gen smsa80 (211516 missing values generated) rep smsa80 (77011 real changes made, 77011 to missing) replace county (211516 real changes made, 211516 to missing) drop county inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (82212 real changes made, 82212 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (118271 real changes made, 118271 to missing) (300708 real changes made, 300708 to missing) (149656 real changes made, 149656 to missing) (276489 real changes made, 276489 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (135991 real changes made, 135991 to missing) if 1995 > 1983 & 1995 < 1989 { (0 real changes made) (261246 real changes made, 261246 to missing) (53105 real changes made, 53105 to missing) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (833 real changes made, 833 to missing) (1512 real changes made, 1512 to missing) Employment (2231 real changes made, 2231 to missing) (307207 real changes made, 307207 to missing) (144044 real changes made, 144044 to missing) (97330 real changes made, 97330 to missing) (97330 real changes made, 97330 to missing) (97330 real changes made, 97330 to missing) docc80 (97330 missing values generated) recode docc80 (docc80: 217021 changes made) ** The renaming is part of the Census reweighting ; docc00 dind (97330 missing values generated) (dind: 217021 changes made) Wages (144044 real changes made, 144044 to missing) (0 real changes made) (209451 real changes made, 209451 to missing) (0 real changes made) (0 real changes made) (144044 real changes made) (210500 real changes made) (97330 real changes made, 97330 to missing) (303501 real changes made, 303501 to missing) (119594 real changes made) (144044 real changes made) (1 real change made, 1 to missing) (119594 real changes made, 119594 to missing) (1512 real changes made, 1512 to missing) (312748 real changes made, 312748 to missing) (270337 real changes made, 270337 to missing) (243977 real changes made, 243977 to missing) (9209 real changes made, 9209 to missing) (14407 real changes made, 14407 to missing) Hours, Unions (298941 real changes made, 298941 to missing) (305346 real changes made, 305346 to missing) (292738 real changes made, 292738 to missing) (267156 real changes made, 267156 to missing) (292738 real changes made, 292738 to missing) (1512 real changes made, 1512 to missing) (128599 real changes made, 128599 to missing) (29 real changes made) (15016 real changes made, 15016 to missing) (264977 real changes made, 264977 to missing) (144044 real changes made, 144044 to missing) (169589 real changes made, 169589 to missing) spouse was int now byte ym_file was float now int ym was float now int smsa80 was float now byte docc80 was int now byte dind was float now byte file /homes/data/morg/annual/morg95.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hurespli | 314351 1.599626 .8273512 0 16 intmonth | 314351 6.459327 3.446737 1 12 minsamp | 314351 5.985589 1.999951 4 8 hrsample | 0 serial | 0 -------------+-------------------------------------------------------- hhnum | 314351 1.061148 .2582601 1 8 state | 314351 51.10553 26.00006 11 95 stfips | 314351 28.72409 14.95112 1 56 centcity | 196080 2.018676 .7546611 1 3 msafips | 164695 4432.164 2544.958 80 9360 -------------+-------------------------------------------------------- cmsacode | 37862 52.55478 27.24881 7 97 smsastat | 232139 1.248558 .4321779 1 2 smsa93 | 73907 5.309078 1.680211 2 7 icntcity | 13643 1.177674 .4993266 1 4 hhid | 0 -------------+-------------------------------------------------------- spouse | 178360 1.559806 .6664706 1 14 sex | 314351 1.529873 .4991076 1 2 veteran | 312839 5.576891 1.221982 1 6 grade92 | 314351 39.50774 2.859428 31 46 famnum | 314351 .8264042 .4383511 0 5 -------------+-------------------------------------------------------- selfproxy | 312120 1.493826 .5090629 1 3 why3594 | 49374 14.73792 6.933514 1 23 class94 | 217021 4.128255 1.210992 1 8 unioncov | 144762 1.978413 .1453317 1 2 studftpt | 21613 1.100264 .3003583 1 2 -------------+-------------------------------------------------------- relref94 | 53105 2.766444 2.296346 1 12 relref95 | 261246 2.898992 2.868839 1 18 age | 314351 44.11763 18.15374 16 90 pfamrel | 314351 1.40932 1.021177 0 4 marital | 314351 3.147179 2.590233 1 7 -------------+-------------------------------------------------------- race | 314351 1.289177 .7960335 1 5 hourslw | 185671 39.11012 14.17672 1 99 reason94 | 15410 5.200584 2.893293 1 13 absent94 | 9005 6.03176 3.335539 4 14 dwrsn | 7144 7.621781 3.006551 1 11 -------------+-------------------------------------------------------- ind80 | 217021 580.0291 276.9189 10 991 occ80 | 217021 368.2459 249.0915 3 905 uhourse | 179741 39.09786 11.93249 0 99 laydur | 1603 7.441672 10.64509 1 114 paidhre | 170307 1.383578 .4862585 1 2 -------------+-------------------------------------------------------- unionmme | 170307 1.850006 .3570664 1 2 ethnic | 313518 7.682299 1.255157 1 9 lfsr94 | 312839 2.802365 2.354497 1 7 untype | 10850 3.472811 1.649388 1 6 ftpt94 | 312839 2.736996 2.51753 1 12 -------------+-------------------------------------------------------- agri | 217021 .0300478 .1707192 0 1 eligible | 314351 1.458227 .4982527 1 2 otc | 170307 1.819555 .3845586 1 2 ernpdh2 | 314351 -.1873606 1.271573 -3 2 earnhre | 104899 991.3914 601.0681 20 9900 -------------+-------------------------------------------------------- earnwke | 170307 498.6546 365.7329 0 1923 schenr | 47195 1.542049 .498234 1 2 schlvl | 21613 1.47092 .4991652 1 2 weight | 314351 1895.181 1043.936 0 14211.12 earnwt | 314351 7614.107 4169.327 134.0936 56722.81 -------------+-------------------------------------------------------- I25a | 314351 .1899183 2.563101 0 43 I25b | 314351 2.198215 9.344298 0 42 I25c | 34805 .2526361 .4345302 0 1 I25d | 55967 .2329408 .4227086 0 1 penatvty | 314351 80.86875 78.57915 57 555 -------------+-------------------------------------------------------- pemntvty | 314351 91.04422 91.46981 57 555 pefntvty | 314351 91.89685 92.77311 57 555 prcitshp | 314351 1.38381 1.112335 1 5 prcitflg | 314351 .2822418 3.003631 0 41 peinusyr | 314351 .7975511 2.57967 0 13 -------------+-------------------------------------------------------- hrlonglk | 314351 1.991455 .1304462 0 2 lineno | 314351 1.736988 1.010136 1 16 recnum | 314351 227441 131438.6 1 455077 year | 314351 1995 0 1995 1995 ym_file | 314351 425.4593 3.446737 420 431 -------------+-------------------------------------------------------- ym | 314351 416.5026 6.917992 405 428 smsa80 | 25824 24.12097 10.05618 11 43 docc80 | 217021 22.63339 12.67543 1 46 dind | 217021 31.16404 13.46016 1 52 . aef2 1996 96 94_97 dct_name aef94_97.dbd raw_name=../raw/morg96 (1 observation deleted) obs 402380 # of persons with age<=15 124524 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 35,181 8.74 8.74 0 | 4,995 1.24 9.98 1 | 5,215 1.30 11.28 2 | 5,407 1.34 12.62 3 | 5,588 1.39 14.01 4 | 5,605 1.39 15.41 5 | 5,942 1.48 16.88 6 | 5,869 1.46 18.34 7 | 5,647 1.40 19.74 8 | 5,703 1.42 21.16 9 | 5,576 1.39 22.55 10 | 5,571 1.38 23.93 11 | 5,688 1.41 25.35 12 | 5,673 1.41 26.76 13 | 5,603 1.39 28.15 14 | 5,603 1.39 29.54 15 | 5,658 1.41 30.95 16 | 5,511 1.37 32.32 17 | 5,256 1.31 33.62 18 | 4,738 1.18 34.80 19 | 4,518 1.12 35.92 20 | 4,242 1.05 36.98 21 | 4,247 1.06 38.03 22 | 4,170 1.04 39.07 23 | 4,466 1.11 40.18 24 | 4,681 1.16 41.34 25 | 5,191 1.29 42.63 26 | 5,097 1.27 43.90 27 | 4,924 1.22 45.12 28 | 4,859 1.21 46.33 29 | 4,987 1.24 47.57 30 | 5,350 1.33 48.90 31 | 5,615 1.40 50.29 32 | 5,755 1.43 51.72 33 | 5,869 1.46 53.18 34 | 6,032 1.50 54.68 35 | 6,249 1.55 56.24 36 | 6,234 1.55 57.78 37 | 6,066 1.51 59.29 38 | 6,151 1.53 60.82 39 | 6,035 1.50 62.32 40 | 6,205 1.54 63.86 41 | 5,884 1.46 65.33 42 | 5,692 1.41 66.74 43 | 5,602 1.39 68.13 44 | 5,410 1.34 69.48 45 | 5,455 1.36 70.83 46 | 5,224 1.30 72.13 47 | 5,089 1.26 73.40 48 | 5,212 1.30 74.69 49 | 5,279 1.31 76.00 50 | 4,149 1.03 77.03 51 | 3,883 0.97 78.00 52 | 3,985 0.99 78.99 53 | 4,101 1.02 80.01 54 | 3,657 0.91 80.92 55 | 3,456 0.86 81.78 56 | 3,342 0.83 82.61 57 | 3,089 0.77 83.37 58 | 3,097 0.77 84.14 59 | 2,938 0.73 84.87 60 | 3,005 0.75 85.62 61 | 2,878 0.72 86.34 62 | 2,754 0.68 87.02 63 | 2,794 0.69 87.71 64 | 2,738 0.68 88.40 65 | 2,864 0.71 89.11 66 | 2,934 0.73 89.84 67 | 2,681 0.67 90.50 68 | 2,726 0.68 91.18 69 | 2,725 0.68 91.86 70 | 2,709 0.67 92.53 71 | 2,557 0.64 93.17 72 | 2,566 0.64 93.80 73 | 2,430 0.60 94.41 74 | 2,356 0.59 94.99 75 | 2,378 0.59 95.58 76 | 2,173 0.54 96.12 77 | 1,790 0.44 96.57 78 | 1,832 0.46 97.02 79 | 1,607 0.40 97.42 80 | 1,513 0.38 97.80 81 | 1,305 0.32 98.12 82 | 1,282 0.32 98.44 83 | 1,126 0.28 98.72 84 | 928 0.23 98.95 85 | 822 0.20 99.16 86 | 704 0.17 99.33 87 | 591 0.15 99.48 88 | 484 0.12 99.60 89 | 387 0.10 99.70 90 | 1,225 0.30 100.00 ------------+----------------------------------- Total | 402,380 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 35,181 28.25 28.25 0 | 4,995 4.01 32.26 1 | 5,215 4.19 36.45 2 | 5,407 4.34 40.79 3 | 5,588 4.49 45.28 4 | 5,605 4.50 49.78 5 | 5,942 4.77 54.55 6 | 5,869 4.71 59.27 7 | 5,647 4.53 63.80 8 | 5,703 4.58 68.38 9 | 5,576 4.48 72.86 10 | 5,571 4.47 77.33 11 | 5,688 4.57 81.90 12 | 5,673 4.56 86.46 13 | 5,603 4.50 90.96 14 | 5,603 4.50 95.46 15 | 5,658 4.54 100.00 ------------+----------------------------------- Total | 124,524 100.00 (124524 observations deleted) (0 observations deleted) obs 277856 after keeping age>15&age!=. infile successful no observations (0 real changes made) (0 real changes made) (0 real changes made) (139474 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (138382 real changes made) Geography (77545 real changes made, 77545 to missing) smsasize = . if smsasize <=0 inlisting 96 97 (275120 real changes made) replace smsastat = . if smsastat==3 | smsastat<0 (823 real changes made, 823 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (42423 real changes made, 42423 to missing) (259704 real changes made, 259704 to missing) (77890 real changes made, 77890 to missing) (180515 real changes made, 180515 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (120926 real changes made, 120926 to missing) if 1996 > 1983 & 1996 < 1989 { (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (1015 real changes made, 1015 to missing) (1246 real changes made, 1246 to missing) Employment (1882 real changes made, 1882 to missing) (271784 real changes made, 271784 to missing) (125666 real changes made, 125666 to missing) (85414 real changes made, 85414 to missing) (85414 real changes made, 85414 to missing) (85414 real changes made, 85414 to missing) docc80 (85414 missing values generated) recode docc80 (docc80: 192442 changes made) ** The renaming is part of the Census reweighting ; docc00 dind (85414 missing values generated) (dind: 192442 changes made) Wages (125666 real changes made, 125666 to missing) (0 real changes made) (183931 real changes made, 183931 to missing) (0 real changes made) (0 real changes made) (125667 real changes made) (186404 real changes made) (85414 real changes made, 85414 to missing) (268504 real changes made, 268504 to missing) (104435 real changes made) (125666 real changes made) (0 real changes made) (104435 real changes made, 104435 to missing) (1246 real changes made, 1246 to missing) (276421 real changes made, 276421 to missing) (183870 real changes made, 183870 to missing) (125666 real changes made, 125666 to missing) Hours, Unions (263578 real changes made, 263578 to missing) (269658 real changes made, 269658 to missing) (258235 real changes made, 258235 to missing) (236244 real changes made, 236244 to missing) (258235 real changes made, 258235 to missing) (1246 real changes made, 1246 to missing) (112633 real changes made, 112633 to missing) (20 real changes made) (14986 real changes made, 14986 to missing) (233851 real changes made, 233851 to missing) (125666 real changes made, 125666 to missing) (147736 real changes made, 147736 to missing) spouse was int now byte ym_file was float now int ym was float now int docc80 was int now byte dind was float now byte file /homes/data/morg/annual/morg96.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hurespli | 277856 1.604759 .8477666 0 16 intmonth | 277856 6.536602 3.458798 1 12 minsamp | 277856 5.99214 1.999988 4 8 hrsample | 0 serial | 0 -------------+-------------------------------------------------------- hhnum | 277856 1.058743 .2510864 1 5 state | 277856 53.27262 26.07671 11 95 stfips | 277856 28.34307 15.4556 1 56 county | 277856 24.86882 59.09806 0 810 centcity | 235433 2.003283 .7459852 1 3 -------------+-------------------------------------------------------- msafips | 199966 4507.596 2519.146 80 9360 cmsacode | 97341 53.51734 26.82367 7 97 smsastat | 277033 1.237863 .4257758 1 2 smsa93 | 200311 5.204642 1.681441 2 7 icntcity | 18152 1.190227 .5380229 1 4 -------------+-------------------------------------------------------- hhid | 0 spouse | 156930 1.560549 .664958 1 15 sex | 277856 1.52967 .4991198 1 2 veteran | 276610 5.586711 1.209324 1 6 grade92 | 277856 39.52208 2.855723 31 46 -------------+-------------------------------------------------------- famnum | 277856 .823315 .4417725 0 5 selfproxy | 275974 1.49284 .5086724 1 3 why3594 | 44005 14.70644 6.872433 1 23 class94 | 192442 4.129343 1.197261 1 8 unioncov | 130120 1.979427 .1419514 1 2 -------------+-------------------------------------------------------- studftpt | 19621 1.092605 .2898853 1 2 relref95 | 277856 2.925184 2.925088 1 18 age | 277856 44.18312 18.13822 16 90 pfamrel | 277856 1.401575 1.021741 0 4 marital | 277856 3.161123 2.593398 1 7 -------------+-------------------------------------------------------- race | 277856 1.231033 .6462387 1 4 hourslw | 165144 39.1337 14.19478 1 99 reason94 | 14278 5.582785 3.12791 1 13 absent94 | 8198 6.129178 3.387722 4 14 dwrsn | 6072 7.560112 3.085774 1 11 -------------+-------------------------------------------------------- ind80 | 192442 580.1935 276.8235 10 991 occ80 | 192442 366.6342 248.9975 4 905 uhourse | 158435 39.1856 11.88232 0 99 laydur | 1435 7.710105 10.38168 1 113 paidhre | 152190 1.382436 .4859839 1 2 -------------+-------------------------------------------------------- unionmme | 152190 1.854984 .3521182 1 2 ethnic | 276841 7.655185 1.307621 1 9 lfsr94 | 276610 2.779516 2.343772 1 7 untype | 9352 3.498931 1.65911 1 6 ftpt94 | 276610 2.737265 2.50568 1 12 -------------+-------------------------------------------------------- agri | 192442 .0313757 .1743313 0 1 eligible | 277856 1.452274 .4977179 1 2 otc | 152190 1.827926 .3774463 1 2 ernpdh2 | 277856 -.1964867 1.273302 -3 2 earnhre | 93925 1006.895 588.2619 10 9975 -------------+-------------------------------------------------------- earnwke | 152190 508.9036 371.295 0 1923 schenr | 41612 1.528477 .4991944 1 2 schlvl | 19621 1.461139 .4985002 1 2 weight | 277856 2165.769 1046.214 0 12347.75 earnwt | 277856 8697.715 4174.887 246.4069 49442.13 -------------+-------------------------------------------------------- I25a | 277856 .1833108 2.523838 0 43 I25b | 277856 2.322491 9.589426 0 42 I25c | 93986 .2431958 .4290146 0 1 I25d | 152190 .2215586 .4152969 0 1 penatvty | 277856 79.63104 72.25778 57 555 -------------+-------------------------------------------------------- pemntvty | 277856 87.7158 80.41492 57 555 pefntvty | 277856 88.02839 80.40359 57 555 prcitshp | 277856 1.385102 1.109077 1 5 prcitflg | 277856 .1667842 2.1367 0 41 peinusyr | 277856 .8424112 2.705196 0 14 -------------+-------------------------------------------------------- hrlonglk | 277856 1.990592 .1368469 0 2 lineno | 277856 1.737882 1.013409 1 16 recnum | 277856 201395.7 116300 1 402375 year | 277856 1996 0 1996 1996 ym_file | 277856 437.5366 3.458798 432 443 -------------+-------------------------------------------------------- ym | 277856 428.5602 6.927237 417 440 docc80 | 192442 22.55874 12.71377 1 46 dind | 192442 31.12334 13.49404 1 52 . aef2 1997 97 94_97 dct_name aef94_97.dbd raw_name=../raw/morg97 (0 observations deleted) obs 405270 # of persons with age<=15 124615 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 35,518 8.76 8.76 0 | 4,845 1.20 9.96 1 | 5,183 1.28 11.24 2 | 5,321 1.31 12.55 3 | 5,346 1.32 13.87 4 | 5,632 1.39 15.26 5 | 5,757 1.42 16.68 6 | 5,916 1.46 18.14 7 | 5,952 1.47 19.61 8 | 5,780 1.43 21.04 9 | 5,770 1.42 22.46 10 | 5,608 1.38 23.84 11 | 5,593 1.38 25.22 12 | 5,664 1.40 26.62 13 | 5,535 1.37 27.99 14 | 5,617 1.39 29.37 15 | 5,578 1.38 30.75 16 | 5,628 1.39 32.14 17 | 5,422 1.34 33.48 18 | 4,980 1.23 34.70 19 | 4,593 1.13 35.84 20 | 4,561 1.13 36.96 21 | 4,324 1.07 38.03 22 | 4,278 1.06 39.09 23 | 4,283 1.06 40.14 24 | 4,465 1.10 41.24 25 | 4,808 1.19 42.43 26 | 5,114 1.26 43.69 27 | 5,116 1.26 44.95 28 | 5,096 1.26 46.21 29 | 5,076 1.25 47.46 30 | 5,328 1.31 48.78 31 | 5,356 1.32 50.10 32 | 5,526 1.36 51.46 33 | 5,662 1.40 52.86 34 | 5,926 1.46 54.32 35 | 6,070 1.50 55.82 36 | 6,165 1.52 57.34 37 | 6,272 1.55 58.89 38 | 6,262 1.55 60.44 39 | 6,024 1.49 61.92 40 | 6,243 1.54 63.46 41 | 6,170 1.52 64.98 42 | 5,766 1.42 66.41 43 | 5,793 1.43 67.84 44 | 5,534 1.37 69.20 45 | 5,520 1.36 70.56 46 | 5,247 1.29 71.86 47 | 5,150 1.27 73.13 48 | 4,987 1.23 74.36 49 | 5,112 1.26 75.62 50 | 5,277 1.30 76.92 51 | 4,150 1.02 77.95 52 | 3,839 0.95 78.90 53 | 3,880 0.96 79.85 54 | 3,983 0.98 80.84 55 | 3,743 0.92 81.76 56 | 3,418 0.84 82.60 57 | 3,214 0.79 83.40 58 | 3,068 0.76 84.15 59 | 3,048 0.75 84.90 60 | 3,018 0.74 85.65 61 | 2,956 0.73 86.38 62 | 2,864 0.71 87.09 63 | 2,787 0.69 87.77 64 | 2,745 0.68 88.45 65 | 2,775 0.68 89.13 66 | 2,821 0.70 89.83 67 | 2,912 0.72 90.55 68 | 2,732 0.67 91.22 69 | 2,642 0.65 91.88 70 | 2,724 0.67 92.55 71 | 2,547 0.63 93.18 72 | 2,526 0.62 93.80 73 | 2,446 0.60 94.40 74 | 2,310 0.57 94.97 75 | 2,300 0.57 95.54 76 | 2,154 0.53 96.07 77 | 1,975 0.49 96.56 78 | 1,719 0.42 96.98 79 | 1,697 0.42 97.40 80 | 1,536 0.38 97.78 81 | 1,373 0.34 98.12 82 | 1,206 0.30 98.42 83 | 1,103 0.27 98.69 84 | 953 0.24 98.92 85 | 852 0.21 99.14 86 | 736 0.18 99.32 87 | 647 0.16 99.48 88 | 497 0.12 99.60 89 | 412 0.10 99.70 90 | 1,213 0.30 100.00 ------------+----------------------------------- Total | 405,270 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 35,518 28.50 28.50 0 | 4,845 3.89 32.39 1 | 5,183 4.16 36.55 2 | 5,321 4.27 40.82 3 | 5,346 4.29 45.11 4 | 5,632 4.52 49.63 5 | 5,757 4.62 54.25 6 | 5,916 4.75 59.00 7 | 5,952 4.78 63.77 8 | 5,780 4.64 68.41 9 | 5,770 4.63 73.04 10 | 5,608 4.50 77.54 11 | 5,593 4.49 82.03 12 | 5,664 4.55 86.57 13 | 5,535 4.44 91.02 14 | 5,617 4.51 95.52 15 | 5,578 4.48 100.00 ------------+----------------------------------- Total | 124,615 100.00 (124615 observations deleted) (0 observations deleted) obs 280655 after keeping age>15&age!=. infile successful no observations (0 real changes made) (0 real changes made) (0 real changes made) (140702 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (139953 real changes made) Geography (78074 real changes made, 78074 to missing) smsasize = . if smsasize <=0 inlisting 96 97 (277921 real changes made) replace smsastat = . if smsastat==3 | smsastat<0 (811 real changes made, 811 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (42776 real changes made, 42776 to missing) (262230 real changes made, 262230 to missing) (78477 real changes made, 78477 to missing) (182495 real changes made, 182495 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (124120 real changes made, 124120 to missing) if 1997 > 1983 & 1997 < 1989 { (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (1374 real changes made, 1374 to missing) (1251 real changes made, 1251 to missing) Employment (1909 real changes made, 1909 to missing) (275025 real changes made, 275025 to missing) (125700 real changes made, 125700 to missing) (85868 real changes made, 85868 to missing) (85868 real changes made, 85868 to missing) (85868 real changes made, 85868 to missing) docc80 (85868 missing values generated) recode docc80 (docc80: 194787 changes made) ** The renaming is part of the Census reweighting ; docc00 dind (85868 missing values generated) (dind: 194787 changes made) Wages (125700 real changes made, 125700 to missing) (0 real changes made) (185143 real changes made, 185143 to missing) (0 real changes made) (0 real changes made) (125700 real changes made) (188999 real changes made) (85868 real changes made, 85868 to missing) (271913 real changes made, 271913 to missing) (103984 real changes made) (125700 real changes made) (0 real changes made) (103984 real changes made, 103984 to missing) (1251 real changes made, 1251 to missing) (279343 real changes made, 279343 to missing) (185083 real changes made, 185083 to missing) (125700 real changes made, 125700 to missing) Hours, Unions (266951 real changes made, 266951 to missing) (272828 real changes made, 272828 to missing) (260195 real changes made, 260195 to missing) (238325 real changes made, 238325 to missing) (260195 real changes made, 260195 to missing) (1251 real changes made, 1251 to missing) (111811 real changes made, 111811 to missing) (27 real changes made) (15191 real changes made, 15191 to missing) (237148 real changes made, 237148 to missing) (125700 real changes made, 125700 to missing) (147393 real changes made, 147393 to missing) spouse was int now byte ym_file was float now int ym was float now int docc80 was int now byte dind was float now byte file /homes/data/morg/annual/morg97.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hurespli | 280655 1.562413 .8210612 0 14 intmonth | 280655 6.509565 3.458554 1 12 minsamp | 280655 5.994662 1.999996 4 8 hrsample | 0 serial | 0 -------------+-------------------------------------------------------- hhnum | 280655 1.056197 .2461274 1 6 state | 280655 53.49705 26.11888 11 95 stfips | 280655 28.25623 15.46019 1 56 county | 280655 24.77107 58.65231 0 810 centcity | 237879 2.003653 .7447449 1 3 -------------+-------------------------------------------------------- msafips | 202178 4508.599 2517.473 80 9360 cmsacode | 98160 53.3567 26.82772 7 97 smsastat | 279844 1.237293 .4254241 1 2 smsa93 | 202581 5.202146 1.679399 2 7 icntcity | 18425 1.189199 .5409045 1 4 -------------+-------------------------------------------------------- hhid | 0 spouse | 156535 1.561491 .6699321 1 15 sex | 280655 1.527773 .499229 1 2 veteran | 279404 5.598639 1.194248 1 6 grade92 | 280655 39.56016 2.843473 31 46 -------------+-------------------------------------------------------- famnum | 280655 .8198571 .4431056 0 5 selfproxy | 278746 1.49356 .5074591 1 3 why3594 | 43507 14.82623 6.939713 1 23 class94 | 194787 4.137355 1.190961 1 8 unioncov | 133262 1.980685 .1376314 1 2 -------------+-------------------------------------------------------- studftpt | 20460 1.094184 .2920914 1 2 relref95 | 280655 2.957321 2.971916 1 18 age | 280655 44.22219 18.1364 16 90 pfamrel | 280655 1.400709 1.029195 0 4 marital | 280655 3.198439 2.602719 1 7 -------------+-------------------------------------------------------- prpertyp | 280655 2.004457 .0666151 2 3 race | 280655 1.234476 .6506424 1 4 hourslw | 168770 39.31299 14.03181 1 99 reason94 | 13704 5.339171 2.964254 1 13 absent94 | 7827 6.076147 3.362665 4 14 -------------+-------------------------------------------------------- dwrsn | 5630 7.717584 3.052829 1 11 ind80 | 194787 581.8828 276.1969 10 991 occ80 | 194787 364.6048 249.3395 4 905 uhourse | 161480 39.18818 11.72508 0 99 laydur | 1312 7.515244 10.24504 1 117 -------------+-------------------------------------------------------- paidhre | 154955 1.383227 .4861745 1 2 unionmme | 154955 1.860005 .3469835 1 2 ethnic | 279281 7.641601 1.329397 1 9 lfsr94 | 279404 2.755247 2.338796 1 7 untype | 8742 3.526081 1.65506 1 6 -------------+-------------------------------------------------------- ftpt94 | 279404 2.70189 2.459613 1 12 agri | 194787 .0297145 .169799 0 1 eligible | 280655 1.447881 .4972771 1 2 otc | 154955 1.832455 .3734633 1 2 ernpdh2 | 280655 -.1987743 1.276137 -3 2 -------------+-------------------------------------------------------- earnhre | 95512 1037.832 599.8736 2 9999 earnwke | 154955 527.6555 382.3305 0 1923 schenr | 42330 1.516655 .4997284 1 2 schlvl | 20460 1.463196 .4986558 1 2 weight | 280655 2171.349 1046.714 0 13425.66 -------------+-------------------------------------------------------- earnwt | 280655 8719.135 4180.092 276.7857 52310.04 I25a | 280655 .2019027 2.651631 0 43 I25b | 280655 2.428804 9.794201 0 42 I25c | 95572 .2436592 .4292917 0 1 I25d | 154955 .2216514 .4153591 0 1 -------------+-------------------------------------------------------- penatvty | 280655 80.01663 72.04598 57 555 pemntvty | 280655 87.9521 79.6842 57 555 pefntvty | 280655 88.16775 79.43415 57 555 prcitshp | 280655 1.391409 1.114438 1 5 prcitflg | 280655 .1307263 1.874894 0 41 -------------+-------------------------------------------------------- peinusyr | 280655 .8948781 2.831101 0 14 hrlonglk | 280655 1.991819 .1276513 0 2 lineno | 280655 1.743771 1.021692 1 16 recnum | 280655 202892 116990.1 1 405269 year | 280655 1997 0 1997 1997 -------------+-------------------------------------------------------- ym_file | 280655 449.5096 3.458554 444 455 ym | 280655 440.5256 6.911598 429 452 docc80 | 194787 22.42661 12.73607 1 46 dind | 194787 31.18692 13.46024 1 52 . aef2 1998 98 98_02 dct_name aef98_02.dbd raw_name=../raw/morg98 (0 observations deleted) obs 404257 # of persons with age<=15 123865 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 36,218 8.96 8.96 0 | 4,900 1.21 10.17 1 | 5,093 1.26 11.43 2 | 5,040 1.25 12.68 3 | 5,365 1.33 14.00 4 | 5,200 1.29 15.29 5 | 5,606 1.39 16.68 6 | 5,764 1.43 18.10 7 | 5,758 1.42 19.53 8 | 5,918 1.46 20.99 9 | 5,620 1.39 22.38 10 | 5,684 1.41 23.79 11 | 5,492 1.36 25.15 12 | 5,605 1.39 26.53 13 | 5,563 1.38 27.91 14 | 5,453 1.35 29.26 15 | 5,586 1.38 30.64 16 | 5,567 1.38 32.02 17 | 5,398 1.34 33.35 18 | 4,983 1.23 34.59 19 | 4,506 1.11 35.70 20 | 4,431 1.10 36.80 21 | 4,435 1.10 37.89 22 | 4,206 1.04 38.93 23 | 4,327 1.07 40.00 24 | 4,323 1.07 41.07 25 | 4,507 1.11 42.19 26 | 4,663 1.15 43.34 27 | 5,006 1.24 44.58 28 | 5,091 1.26 45.84 29 | 5,071 1.25 47.09 30 | 5,150 1.27 48.37 31 | 5,203 1.29 49.65 32 | 5,249 1.30 50.95 33 | 5,526 1.37 52.32 34 | 5,905 1.46 53.78 35 | 5,994 1.48 55.26 36 | 5,830 1.44 56.71 37 | 5,965 1.48 58.18 38 | 6,063 1.50 59.68 39 | 6,120 1.51 61.19 40 | 6,170 1.53 62.72 41 | 6,049 1.50 64.22 42 | 6,060 1.50 65.72 43 | 5,741 1.42 67.14 44 | 5,860 1.45 68.59 45 | 5,535 1.37 69.96 46 | 5,443 1.35 71.30 47 | 5,178 1.28 72.58 48 | 5,193 1.28 73.87 49 | 5,032 1.24 75.11 50 | 5,246 1.30 76.41 51 | 5,170 1.28 77.69 52 | 4,062 1.00 78.69 53 | 3,865 0.96 79.65 54 | 3,834 0.95 80.60 55 | 4,159 1.03 81.63 56 | 3,671 0.91 82.53 57 | 3,358 0.83 83.37 58 | 3,181 0.79 84.15 59 | 3,048 0.75 84.91 60 | 3,114 0.77 85.68 61 | 2,954 0.73 86.41 62 | 2,974 0.74 87.14 63 | 2,842 0.70 87.85 64 | 2,669 0.66 88.51 65 | 2,792 0.69 89.20 66 | 2,695 0.67 89.86 67 | 2,749 0.68 90.54 68 | 2,760 0.68 91.23 69 | 2,578 0.64 91.86 70 | 2,665 0.66 92.52 71 | 2,552 0.63 93.15 72 | 2,436 0.60 93.76 73 | 2,431 0.60 94.36 74 | 2,282 0.56 94.92 75 | 2,259 0.56 95.48 76 | 2,102 0.52 96.00 77 | 1,940 0.48 96.48 78 | 1,873 0.46 96.94 79 | 1,690 0.42 97.36 80 | 1,568 0.39 97.75 81 | 1,405 0.35 98.10 82 | 1,224 0.30 98.40 83 | 1,091 0.27 98.67 84 | 1,010 0.25 98.92 85 | 839 0.21 99.13 86 | 719 0.18 99.31 87 | 593 0.15 99.45 88 | 549 0.14 99.59 89 | 401 0.10 99.69 90 | 1,262 0.31 100.00 ------------+----------------------------------- Total | 404,257 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 36,218 29.24 29.24 0 | 4,900 3.96 33.20 1 | 5,093 4.11 37.31 2 | 5,040 4.07 41.38 3 | 5,365 4.33 45.71 4 | 5,200 4.20 49.91 5 | 5,606 4.53 54.43 6 | 5,764 4.65 59.09 7 | 5,758 4.65 63.73 8 | 5,918 4.78 68.51 9 | 5,620 4.54 73.05 10 | 5,684 4.59 77.64 11 | 5,492 4.43 82.07 12 | 5,605 4.53 86.60 13 | 5,563 4.49 91.09 14 | 5,453 4.40 95.49 15 | 5,586 4.51 100.00 ------------+----------------------------------- Total | 123,865 100.00 (123865 observations deleted) (0 observations deleted) obs 280392 after keeping age>15&age!=. infile successful no observations (0 real changes made) (0 real changes made) (0 real changes made) (141003 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (139389 real changes made) Geography (77399 real changes made, 77399 to missing) smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (811 real changes made, 811 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (42773 real changes made, 42773 to missing) (261970 real changes made, 261970 to missing) (77799 real changes made, 77799 to missing) (182324 real changes made, 182324 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (124343 real changes made, 124343 to missing) if 1998 > 1983 & 1998 < 1989 { (0 real changes made) (0 real changes made) (189778 real changes made, 189778 to missing) (271442 real changes made, 271442 to missing) (208739 real changes made, 208739 to missing) (238533 real changes made, 238533 to missing) (267588 real changes made, 267588 to missing) (266661 real changes made, 266661 to missing) (280392 missing values generated) (1123 real changes made) (2507 real changes made) (4594 real changes made) (9857 real changes made) (8318 real changes made) (12900 real changes made) (12821 real changes made) (3986 real changes made) (203 real changes made) (21 real changes made) (72 real changes made) (655 real changes made) (1057 real changes made) (2385 real changes made) (3130 real changes made) (1427 real changes made) (81664 real changes made) (10277 real changes made) (19689 real changes made) (29414 real changes made) (9429 real changes made) (2844 real changes made) (29055 real changes made) (5095 real changes made) (7709 real changes made) (1696 real changes made) (12035 real changes made) (6429 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (1781 real changes made, 1781 to missing) (1171 real changes made, 1171 to missing) Employment (1946 real changes made, 1946 to missing) (275299 real changes made, 275299 to missing) (123402 real changes made, 123402 to missing) (85012 real changes made, 85012 to missing) (85012 real changes made, 85012 to missing) (85012 real changes made, 85012 to missing) docc80 (85012 missing values generated) recode docc80 (docc80: 195380 changes made) ** The renaming is part of the Census reweighting ; docc00 dind (85012 missing values generated) (dind: 195380 changes made) Wages (123402 real changes made, 123402 to missing) (0 real changes made) (184445 real changes made, 184445 to missing) (0 real changes made) (0 real changes made) (123402 real changes made) (189698 real changes made) (85012 real changes made, 85012 to missing) (272379 real changes made, 272379 to missing) (102055 real changes made) (123402 real changes made) (0 real changes made) (102055 real changes made, 102055 to missing) (1171 real changes made, 1171 to missing) (279154 real changes made, 279154 to missing) (184372 real changes made, 184372 to missing) (123402 real changes made, 123402 to missing) Hours, Unions (263541 real changes made, 263541 to missing) (272611 real changes made, 272611 to missing) (259816 real changes made, 259816 to missing) (238402 real changes made, 238402 to missing) (259816 real changes made, 259816 to missing) (1171 real changes made, 1171 to missing) (109836 real changes made, 109836 to missing) (99 real changes made) (15306 real changes made, 15306 to missing) (233467 real changes made, 233467 to missing) (123402 real changes made, 123402 to missing) (145124 real changes made, 145124 to missing) spouse was int now byte hourslw was int now byte ym_file was float now int ym was float now int docc80 was int now byte dind was float now byte file /homes/data/morg/annual/morg98.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hhid | 0 intmonth | 280392 6.510692 3.456178 1 12 hurespli | 280392 1.540565 .8676575 0 13 minsamp | 280392 5.988488 1.99997 4 8 hrlonglk | 280392 1.991662 .1288689 0 2 -------------+-------------------------------------------------------- hrsample | 0 serial | 0 hhnum | 280392 1.05793 .2508091 1 6 state | 280392 53.53248 26.12936 11 95 stfips | 280392 28.247 15.45211 1 56 -------------+-------------------------------------------------------- cmsacode | 98068 53.46612 26.81658 7 97 msafips | 202593 4513.267 2517.221 80 9360 county | 280392 24.90922 58.55026 0 810 centcity | 237619 2.003152 .7421608 1 3 smsastat | 279581 1.235409 .4242552 1 2 -------------+-------------------------------------------------------- icntcity | 18422 1.188905 .5396505 1 4 smsa93 | 202993 5.195031 1.681316 2 7 relref95 | 280392 2.952702 2.967109 1 18 age | 280392 44.42307 18.0935 16 90 spouse | 156049 1.557915 .6565164 1 15 -------------+-------------------------------------------------------- sex | 280392 1.526491 .4992986 1 2 veteran | 279221 5.605452 1.187244 1 6 race | 280392 1.237357 .6583332 1 4 ethnic | 278611 7.631877 1.345716 1 9 grade92 | 280392 39.61597 2.839531 31 46 -------------+-------------------------------------------------------- lineno | 280392 1.734201 1.003492 1 16 famnum | 280392 .8160433 .4427707 0 4 pfamrel | 280392 1.396834 1.031189 0 4 marital | 280392 3.205576 2.605291 1 7 prpertyp | 280392 2.004176 .0644893 2 3 -------------+-------------------------------------------------------- penatvty | 280392 80.83045 73.14627 57 555 pemntvty | 280392 88.80481 80.71373 57 555 pefntvty | 280392 88.93425 80.41014 57 555 prcitshp | 280392 1.401695 1.126103 1 5 prcitflg | 280392 .1307527 1.883312 0 41 -------------+-------------------------------------------------------- peinusyr | 280392 .95971 2.995619 0 15 selfproxy | 278446 1.492049 .5077641 1 3 lfsr94 | 279221 2.725852 2.328977 1 7 absent94 | 7781 5.949492 3.261191 4 14 uhourse | 163031 39.22312 11.65956 0 99 -------------+-------------------------------------------------------- reason94 | 16851 5.407098 2.562863 1 13 hourslw | 170556 39.04228 14.05205 1 99 laydur | 1238 7.25525 10.84309 1 116 dwrsn | 5093 7.72099 3.014124 1 11 why3594 | 46925 14.27207 7.069656 1 23 -------------+-------------------------------------------------------- untype | 8013 3.529889 1.661136 1 6 ftpt94 | 279221 2.709664 2.42678 1 12 class94 | 195380 4.132363 1.180634 1 8 ind80 | 195380 584.2959 274.766 10 991 occ80 | 195380 361.1335 248.4527 4 905 -------------+-------------------------------------------------------- agri | 195380 .0290818 .1680363 0 1 eligible | 280392 1.440105 .4964005 1 2 otc | 156990 1.832098 .3737808 1 2 ernpdh2 | 280392 -.1821486 1.287146 -3 2 paidhre | 156990 1.388369 .4873807 1 2 -------------+-------------------------------------------------------- earnhre | 95947 1083.531 631.37 25 9999 earnwke | 156990 560.8707 436.1196 0 2884 unionmme | 156990 1.861634 .3452843 1 2 unioncov | 135268 1.982309 .1318255 1 2 studftpt | 20576 1.090202 .2864782 1 2 -------------+-------------------------------------------------------- schenr | 41990 1.509979 .4999064 1 2 schlvl | 20576 1.461849 .4985545 1 2 earnwt | 280392 8782.849 4299.018 0 59131.54 weight | 280392 2195.712 1067.924 0 15050.86 I25d | 156990 .2364291 .42489 0 1 -------------+-------------------------------------------------------- I25c | 96020 .2584462 .4377828 0 1 I25a | 280392 .2254023 2.798935 0 43 I25b | 280392 2.720409 10.32749 0 42 qstnum | 0 occurnum | 0 -------------+-------------------------------------------------------- ged | 90614 1.098771 .2983554 1 2 gedhigr | 8950 6.257207 1.417525 1 8 yrcoll | 71653 2.649338 1.007919 1 5 grprof | 41859 1.694116 .4607864 1 2 gr6cor | 12804 1.397923 .4894884 1 2 -------------+-------------------------------------------------------- ms123 | 13731 2.150462 .612277 1 3 cmpwgt | 280392 2195.804 1069.981 0 14574.05 recnum | 280392 202332.9 116758.3 5 404256 year | 280392 1998 0 1998 1998 ym_file | 280392 461.5107 3.456178 456 467 -------------+-------------------------------------------------------- ym | 280392 452.5452 6.919419 441 464 ihigrdc | 280392 12.83164 3.069173 0 18 docc80 | 195380 22.25457 12.74363 1 46 dind | 195380 31.26444 13.41739 1 52 . aef2 1999 99 98_02 dct_name aef98_02.dbd raw_name=../raw/morg99 (0 observations deleted) obs 406961 # of persons with age<=15 124245 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 37,134 9.12 9.12 0 | 4,618 1.13 10.26 1 | 4,942 1.21 11.47 2 | 5,181 1.27 12.75 3 | 5,194 1.28 14.02 4 | 5,277 1.30 15.32 5 | 5,357 1.32 16.64 6 | 5,563 1.37 18.00 7 | 5,557 1.37 19.37 8 | 5,886 1.45 20.82 9 | 5,884 1.45 22.26 10 | 5,693 1.40 23.66 11 | 5,665 1.39 25.05 12 | 5,626 1.38 26.43 13 | 5,632 1.38 27.82 14 | 5,563 1.37 29.19 15 | 5,473 1.34 30.53 16 | 5,618 1.38 31.91 17 | 5,575 1.37 33.28 18 | 5,149 1.27 34.55 19 | 4,683 1.15 35.70 20 | 4,343 1.07 36.76 21 | 4,380 1.08 37.84 22 | 4,312 1.06 38.90 23 | 4,241 1.04 39.94 24 | 4,337 1.07 41.01 25 | 4,270 1.05 42.06 26 | 4,401 1.08 43.14 27 | 4,698 1.15 44.29 28 | 5,230 1.29 45.58 29 | 5,083 1.25 46.83 30 | 5,311 1.31 48.13 31 | 5,024 1.23 49.37 32 | 5,097 1.25 50.62 33 | 5,343 1.31 51.93 34 | 5,569 1.37 53.30 35 | 5,938 1.46 54.76 36 | 5,871 1.44 56.20 37 | 5,828 1.43 57.63 38 | 6,119 1.50 59.14 39 | 5,976 1.47 60.61 40 | 6,260 1.54 62.14 41 | 6,018 1.48 63.62 42 | 5,998 1.47 65.10 43 | 6,057 1.49 66.58 44 | 5,819 1.43 68.01 45 | 5,862 1.44 69.46 46 | 5,544 1.36 70.82 47 | 5,435 1.34 72.15 48 | 5,253 1.29 73.44 49 | 5,196 1.28 74.72 50 | 5,194 1.28 76.00 51 | 5,161 1.27 77.26 52 | 5,167 1.27 78.53 53 | 3,930 0.97 79.50 54 | 3,831 0.94 80.44 55 | 3,964 0.97 81.42 56 | 4,080 1.00 82.42 57 | 3,538 0.87 83.29 58 | 3,366 0.83 84.11 59 | 3,153 0.77 84.89 60 | 3,101 0.76 85.65 61 | 3,129 0.77 86.42 62 | 2,939 0.72 87.14 63 | 2,964 0.73 87.87 64 | 2,779 0.68 88.55 65 | 2,658 0.65 89.21 66 | 2,660 0.65 89.86 67 | 2,582 0.63 90.49 68 | 2,771 0.68 91.18 69 | 2,736 0.67 91.85 70 | 2,576 0.63 92.48 71 | 2,572 0.63 93.11 72 | 2,488 0.61 93.72 73 | 2,426 0.60 94.32 74 | 2,328 0.57 94.89 75 | 2,189 0.54 95.43 76 | 2,107 0.52 95.95 77 | 1,983 0.49 96.44 78 | 1,928 0.47 96.91 79 | 1,772 0.44 97.34 80 | 1,542 0.38 97.72 81 | 1,379 0.34 98.06 82 | 1,288 0.32 98.38 83 | 1,091 0.27 98.65 84 | 977 0.24 98.89 85 | 926 0.23 99.11 86 | 709 0.17 99.29 87 | 632 0.16 99.44 88 | 501 0.12 99.57 89 | 441 0.11 99.68 90 | 1,320 0.32 100.00 ------------+----------------------------------- Total | 406,961 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 37,134 29.89 29.89 0 | 4,618 3.72 33.60 1 | 4,942 3.98 37.58 2 | 5,181 4.17 41.75 3 | 5,194 4.18 45.93 4 | 5,277 4.25 50.18 5 | 5,357 4.31 54.49 6 | 5,563 4.48 58.97 7 | 5,557 4.47 63.44 8 | 5,886 4.74 68.18 9 | 5,884 4.74 72.91 10 | 5,693 4.58 77.50 11 | 5,665 4.56 82.06 12 | 5,626 4.53 86.58 13 | 5,632 4.53 91.12 14 | 5,563 4.48 95.59 15 | 5,473 4.41 100.00 ------------+----------------------------------- Total | 124,245 100.00 (124245 observations deleted) (0 observations deleted) obs 282716 after keeping age>15&age!=. infile successful no observations (19 real changes made, 19 to missing) (0 real changes made) (0 real changes made) (142070 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (140646 real changes made) Geography (77453 real changes made, 77453 to missing) smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (839 real changes made, 839 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (43251 real changes made, 43251 to missing) (264391 real changes made, 264391 to missing) (77841 real changes made, 77841 to missing) (183897 real changes made, 183897 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (125265 real changes made, 125265 to missing) if 1999 > 1983 & 1999 < 1989 { (0 real changes made) (16877 real changes made, 16877 to missing) (252052 real changes made, 252052 to missing) (252052 missing values generated) (252052 missing values generated) (252052 missing values generated) (252052 missing values generated) (ch02: 12843 changes made) (ch35: 14402 changes made) (ch613: 14402 changes made) (ch1417: 14402 changes made) (252052 missing values generated) (2576 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (191807 real changes made, 191807 to missing) (273956 real changes made, 273956 to missing) (209722 real changes made, 209722 to missing) (239645 real changes made, 239645 to missing) (270119 real changes made, 270119 to missing) (268311 real changes made, 268311 to missing) (282716 missing values generated) (1049 real changes made) (2358 real changes made) (4622 real changes made) (9436 real changes made) (7980 real changes made) (12663 real changes made) (12954 real changes made) (3734 real changes made) (151 real changes made) (17 real changes made) (67 real changes made) (676 real changes made) (1075 real changes made) (2526 real changes made) (3117 real changes made) (1131 real changes made) (82149 real changes made) (10426 real changes made) (19343 real changes made) (30350 real changes made) (9461 real changes made) (3414 real changes made) (30474 real changes made) (4543 real changes made) (8054 real changes made) (1664 real changes made) (12741 real changes made) (6541 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (48 real changes made, 48 to missing) (2373 real changes made, 2373 to missing) (1039 real changes made, 1039 to missing) Employment (1790 real changes made, 1790 to missing) (277923 real changes made, 277923 to missing) (123338 real changes made, 123338 to missing) (85734 real changes made, 85734 to missing) (85734 real changes made, 85734 to missing) (85734 real changes made, 85734 to missing) docc80 (85734 missing values generated) recode docc80 (docc80: 196982 changes made) ** The renaming is part of the Census reweighting ; docc00 dind (85734 missing values generated) (dind: 196982 changes made) Wages (123338 real changes made, 123338 to missing) (0 real changes made) (185852 real changes made, 185852 to missing) (0 real changes made) (0 real changes made) (123338 real changes made) (191425 real changes made) (85734 real changes made, 85734 to missing) (275208 real changes made, 275208 to missing) (102339 real changes made) (123338 real changes made) (0 real changes made) (102339 real changes made, 102339 to missing) (1039 real changes made, 1039 to missing) (281534 real changes made, 281534 to missing) (185768 real changes made, 185768 to missing) (123354 real changes made, 123354 to missing) Hours, Unions (269010 real changes made, 269010 to missing) (275071 real changes made, 275071 to missing) (261780 real changes made, 261780 to missing) (240262 real changes made, 240262 to missing) (261780 real changes made, 261780 to missing) (1039 real changes made, 1039 to missing) (109984 real changes made, 109984 to missing) (125 real changes made) (14989 real changes made, 14989 to missing) (239107 real changes made, 239107 to missing) (123338 real changes made, 123338 to missing) (145478 real changes made, 145478 to missing) spouse was int now byte hourslw was int now byte ym_file was float now int ym was float now int ch02 was int now byte ch35 was int now byte ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc80 was int now byte dind was float now byte file /homes/data/morg/annual/morg99.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hhid | 0 intmonth | 282716 6.516543 3.459193 1 12 hurespli | 282697 1.575924 .8572948 1 16 minsamp | 282716 5.989926 1.999978 4 8 hrlonglk | 282716 1.99248 .1224064 0 2 -------------+-------------------------------------------------------- hrsample | 0 serial | 0 hhnum | 282716 1.056771 .2514892 1 8 state | 282716 53.71741 26.15743 11 95 stfips | 282716 28.23214 15.48779 1 56 -------------+-------------------------------------------------------- cmsacode | 98819 53.32955 26.8635 7 97 msafips | 204875 4515.2 2514.014 80 9360 county | 282716 24.69728 57.90431 0 810 centcity | 239465 2.003633 .7394308 1 3 smsastat | 281877 1.233793 .4232431 1 2 -------------+-------------------------------------------------------- icntcity | 18325 1.192196 .5505987 1 4 smsa93 | 205263 5.190224 1.677819 2 7 relref95 | 282716 2.957618 2.96577 1 18 age | 282716 44.57365 18.08916 16 90 spouse | 157451 1.562905 .6776086 1 16 -------------+-------------------------------------------------------- sex | 282716 1.525863 .4993315 1 2 veteran | 281677 5.612787 1.181777 1 6 race | 282716 1.236679 .6584639 1 4 ethnic | 280295 7.610963 1.381035 1 9 grade92 | 282716 39.67131 2.826221 31 46 -------------+-------------------------------------------------------- lineno | 282716 1.742643 1.024224 1 16 famnum | 282716 .8158222 .4424301 0 5 pfamrel | 282716 1.399107 1.034005 0 4 marital | 282716 3.202808 2.605275 1 7 prpertyp | 282716 2.003675 .0605109 2 3 -------------+-------------------------------------------------------- penatvty | 282716 81.72864 75.59748 57 555 pemntvty | 282716 89.5657 83.00373 57 555 pefntvty | 282716 89.81316 83.03272 57 555 prcitshp | 282716 1.407858 1.133903 1 5 prcitflg | 282716 .2259688 2.519864 0 41 -------------+-------------------------------------------------------- peinusyr | 282716 1.012978 3.125941 0 15 selfproxy | 280926 1.528855 .5527818 1 3 lfsr94 | 281677 2.721216 2.33083 1 7 absent94 | 7645 5.991236 3.284687 4 14 uhourse | 165388 39.24185 11.61259 0 99 -------------+-------------------------------------------------------- reason94 | 13706 5.470232 2.942974 1 13 hourslw | 172732 39.34251 13.89411 1 99 laydur | 1182 7.254653 10.3743 1 104 dwrsn | 4793 7.771333 3.001439 1 11 why3594 | 43609 14.97489 6.909971 1 23 -------------+-------------------------------------------------------- untype | 7508 3.524774 1.658479 1 6 ftpt94 | 281677 2.659028 2.388736 1 12 class94 | 196982 4.121808 1.172142 1 8 ind80 | 196982 586.5637 274.4856 10 991 occ80 | 196982 358.8854 249.0033 4 905 -------------+-------------------------------------------------------- agri | 196982 .0282107 .1655747 0 1 eligible | 282716 1.436261 .4959216 1 2 otc | 159378 1.833936 .3721395 1 2 ernpdh2 | 282716 -.1801667 1.291114 -3 2 paidhre | 159378 1.39171 .488134 1 2 -------------+-------------------------------------------------------- earnhre | 96864 1119.055 642.9707 13 9999 earnwke | 159362 585.781 451.3443 0 2884 unionmme | 159378 1.861085 .3458589 1 2 unioncov | 137238 1.982745 .1302194 1 2 studftpt | 20936 1.087791 .282998 1 2 -------------+-------------------------------------------------------- schenr | 42454 1.506854 .4999589 1 2 schlvl | 20936 1.458254 .4982661 1 2 earnwt | 282716 8818.163 4368.855 0 63090.11 weight | 282716 2204.541 1084.39 0 16789.5 chldpres | 30664 2.399263 3.400875 0 15 -------------+-------------------------------------------------------- ownchild | 30664 .8890882 1.155008 0 11 I25d | 159362 .2761574 .447097 0 1 I25c | 96948 .3003259 .4584021 0 1 I25a | 282716 .2784243 3.112804 0 43 I25b | 282716 3.186183 11.10782 0 42 -------------+-------------------------------------------------------- qstnum | 0 occurnum | 0 ged | 90909 1.09636 .2950861 1 2 gedhigr | 8760 6.220091 1.336502 1 8 yrcoll | 72994 2.672494 1.022634 1 5 -------------+-------------------------------------------------------- grprof | 43071 1.707529 .4549026 1 2 gr6cor | 12597 1.360641 .4802057 1 2 ms123 | 14405 2.166748 .6082758 1 3 cmpwgt | 282716 2204.694 1087.23 0 16914.11 recnum | 282716 203849.2 117604 1 406961 -------------+-------------------------------------------------------- year | 282716 1999 0 1999 1999 ym_file | 282716 473.5165 3.459193 468 479 ym | 282716 464.5468 6.917622 453 476 ch02 | 30664 .1199126 .3248646 0 1 ch35 | 30664 .1278046 .3338775 0 1 -------------+-------------------------------------------------------- ch613 | 30664 .2745239 .4462813 0 1 ch1417 | 30664 .1601552 .3667559 0 1 ch05 | 30664 .2039199 .4029167 0 1 ihigrdc | 282716 12.89302 3.050173 0 18 docc80 | 196982 22.11541 12.78054 1 46 -------------+-------------------------------------------------------- dind | 196982 31.36509 13.4271 1 52 . aef2 2000 00 98_02 dct_name aef98_02.dbd raw_name=../raw/morg00 (0 observations deleted) obs 406625 # of persons with age<=15 123389 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 36,203 8.90 8.90 0 | 4,683 1.15 10.05 1 | 5,087 1.25 11.31 2 | 5,151 1.27 12.57 3 | 5,221 1.28 13.86 4 | 5,252 1.29 15.15 5 | 5,363 1.32 16.47 6 | 5,462 1.34 17.81 7 | 5,610 1.38 19.19 8 | 5,660 1.39 20.58 9 | 5,857 1.44 22.02 10 | 5,858 1.44 23.46 11 | 5,648 1.39 24.85 12 | 5,627 1.38 26.24 13 | 5,526 1.36 27.59 14 | 5,612 1.38 28.98 15 | 5,569 1.37 30.34 16 | 5,440 1.34 31.68 17 | 5,441 1.34 33.02 18 | 5,069 1.25 34.27 19 | 4,779 1.18 35.44 20 | 4,702 1.16 36.60 21 | 4,423 1.09 37.69 22 | 4,461 1.10 38.78 23 | 4,449 1.09 39.88 24 | 4,369 1.07 40.95 25 | 4,588 1.13 42.08 26 | 4,426 1.09 43.17 27 | 4,434 1.09 44.26 28 | 4,709 1.16 45.42 29 | 5,186 1.28 46.69 30 | 5,457 1.34 48.03 31 | 5,163 1.27 49.30 32 | 5,085 1.25 50.56 33 | 4,959 1.22 51.77 34 | 5,248 1.29 53.07 35 | 5,704 1.40 54.47 36 | 5,793 1.42 55.89 37 | 5,868 1.44 57.34 38 | 5,820 1.43 58.77 39 | 6,134 1.51 60.28 40 | 6,305 1.55 61.83 41 | 6,054 1.49 63.32 42 | 5,895 1.45 64.76 43 | 5,979 1.47 66.24 44 | 6,018 1.48 67.72 45 | 5,891 1.45 69.16 46 | 5,627 1.38 70.55 47 | 5,530 1.36 71.91 48 | 5,354 1.32 73.22 49 | 5,162 1.27 74.49 50 | 5,264 1.29 75.79 51 | 4,964 1.22 77.01 52 | 5,076 1.25 78.26 53 | 5,090 1.25 79.51 54 | 3,982 0.98 80.49 55 | 3,860 0.95 81.44 56 | 3,822 0.94 82.38 57 | 3,876 0.95 83.33 58 | 3,482 0.86 84.19 59 | 3,285 0.81 85.00 60 | 3,178 0.78 85.78 61 | 3,025 0.74 86.52 62 | 3,077 0.76 87.28 63 | 2,765 0.68 87.96 64 | 2,791 0.69 88.64 65 | 2,878 0.71 89.35 66 | 2,562 0.63 89.98 67 | 2,521 0.62 90.60 68 | 2,516 0.62 91.22 69 | 2,665 0.66 91.88 70 | 2,639 0.65 92.52 71 | 2,488 0.61 93.14 72 | 2,435 0.60 93.74 73 | 2,321 0.57 94.31 74 | 2,272 0.56 94.87 75 | 2,290 0.56 95.43 76 | 2,084 0.51 95.94 77 | 1,965 0.48 96.42 78 | 1,928 0.47 96.90 79 | 1,878 0.46 97.36 80 | 1,560 0.38 97.74 81 | 1,300 0.32 98.06 82 | 1,253 0.31 98.37 83 | 1,138 0.28 98.65 84 | 963 0.24 98.89 85 | 868 0.21 99.10 86 | 739 0.18 99.28 87 | 585 0.14 99.43 88 | 508 0.12 99.55 89 | 445 0.11 99.66 90 | 1,376 0.34 100.00 ------------+----------------------------------- Total | 406,625 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 36,203 29.34 29.34 0 | 4,683 3.80 33.14 1 | 5,087 4.12 37.26 2 | 5,151 4.17 41.43 3 | 5,221 4.23 45.66 4 | 5,252 4.26 49.92 5 | 5,363 4.35 54.27 6 | 5,462 4.43 58.69 7 | 5,610 4.55 63.24 8 | 5,660 4.59 67.83 9 | 5,857 4.75 72.57 10 | 5,858 4.75 77.32 11 | 5,648 4.58 81.90 12 | 5,627 4.56 86.46 13 | 5,526 4.48 90.94 14 | 5,612 4.55 95.49 15 | 5,569 4.51 100.00 ------------+----------------------------------- Total | 123,389 100.00 (123389 observations deleted) (0 observations deleted) obs 283236 after keeping age>15&age!=. infile successful no observations total obs pre-revise 2000 283236 file /homes/data/morg/annual/rw/annual.dta saved (259098 observations deleted) 1 jan obs 24138 (note: you are using old merge syntax; see [D] merge for new syntax) (127449 observations deleted) file /homes/data/morg/annual/rw/jan.dta saved (258977 observations deleted) 2 feb obs 24259 (note: you are using old merge syntax; see [D] merge for new syntax) (126222 observations deleted) file /homes/data/morg/annual/rw/feb.dta saved (259756 observations deleted) 3 mar obs 23480 (note: you are using old merge syntax; see [D] merge for new syntax) (126673 observations deleted) file /homes/data/morg/annual/rw/mar.dta saved (259784 observations deleted) 4 apr obs 23452 (note: you are using old merge syntax; see [D] merge for new syntax) (127495 observations deleted) file /homes/data/morg/annual/rw/apr.dta saved (259859 observations deleted) 5 may obs 23377 (note: you are using old merge syntax; see [D] merge for new syntax) (127513 observations deleted) file /homes/data/morg/annual/rw/may.dta saved (259858 observations deleted) 6 jun obs 23378 (note: you are using old merge syntax; see [D] merge for new syntax) (128017 observations deleted) file /homes/data/morg/annual/rw/jun.dta saved (259670 observations deleted) 7 jul obs 23566 (note: you are using old merge syntax; see [D] merge for new syntax) (127434 observations deleted) file /homes/data/morg/annual/rw/jul.dta saved (259798 observations deleted) 8 aug obs 23438 (note: you are using old merge syntax; see [D] merge for new syntax) (127194 observations deleted) file /homes/data/morg/annual/rw/aug.dta saved (259527 observations deleted) 9 sep obs 23709 (note: you are using old merge syntax; see [D] merge for new syntax) (127006 observations deleted) file /homes/data/morg/annual/rw/sep.dta saved (259673 observations deleted) 10 oct obs 23563 (note: you are using old merge syntax; see [D] merge for new syntax) (126989 observations deleted) file /homes/data/morg/annual/rw/oct.dta saved (259662 observations deleted) 11 nov obs 23574 (note: you are using old merge syntax; see [D] merge for new syntax) (127098 observations deleted) file /homes/data/morg/annual/rw/nov.dta saved (259934 observations deleted) 12 dec obs 23302 (note: you are using old merge syntax; see [D] merge for new syntax) (125513 observations deleted) file /homes/data/morg/annual/rw/dec.dta saved using jan (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) total obs post-revise283236 start renaming (85067 real changes made, 85067 to missing) (85067 real changes made, 85067 to missing) done renaming drop 2000 rename 2001-2002 (33 real changes made, 33 to missing) (0 real changes made) (0 real changes made) (139302 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (143934 real changes made) Geography (77322 real changes made, 77322 to missing) smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (852 real changes made, 852 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (43018 real changes made, 43018 to missing) (264837 real changes made, 264837 to missing) (77740 real changes made, 77740 to missing) (184188 real changes made, 184188 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (126457 real changes made, 126457 to missing) if 2000 > 1983 & 2000 < 1989 { (0 real changes made) (100972 real changes made, 100972 to missing) (100972 real changes made, 100972 to missing) (100972 missing values generated) (100972 missing values generated) (100972 missing values generated) (100972 missing values generated) (ch02: 76362 changes made) (ch35: 86239 changes made) (ch613: 86239 changes made) (ch1417: 86239 changes made) (100972 missing values generated) (15709 real changes made) (0 real changes made) (192775 real changes made, 192775 to missing) (274670 real changes made, 274670 to missing) (209242 real changes made, 209242 to missing) (239605 real changes made, 239605 to missing) (271156 real changes made, 271156 to missing) (268589 real changes made, 268589 to missing) (283236 missing values generated) (1028 real changes made) (2445 real changes made) (4650 real changes made) (9127 real changes made) (8099 real changes made) (12339 real changes made) (12709 real changes made) (3679 real changes made) (85 real changes made) (21 real changes made) (72 real changes made) (670 real changes made) (1036 real changes made) (2484 real changes made) (3056 real changes made) (1142 real changes made) (81895 real changes made) (10277 real changes made) (19747 real changes made) (30900 real changes made) (9722 real changes made) (3348 real changes made) (31551 real changes made) (4438 real changes made) (7642 real changes made) (1638 real changes made) (13009 real changes made) (6427 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (2 real changes made, 2 to missing) (2929 real changes made, 2929 to missing) (987 real changes made, 987 to missing) Employment (1786 real changes made, 1786 to missing) (278603 real changes made, 278603 to missing) (122110 real changes made, 122110 to missing) (85067 real changes made, 85067 to missing) (85067 real changes made, 85067 to missing) (85067 real changes made, 85067 to missing) (0 real changes made) (85067 real changes made, 85067 to missing) (0 real changes made) docc80 (85067 missing values generated) recode docc80 (docc80: 198169 changes made) ** The renaming is part of the Census reweighting ; docc00 (85067 missing values generated) recode docc00 (docc00: 198169 changes made) dind (85067 missing values generated) (dind: 198169 changes made) (85067 missing values generated) (dind02: 197984 changes made) Wages (122110 real changes made, 122110 to missing) (0 real changes made) (185958 real changes made, 185958 to missing) (0 real changes made) (0 real changes made) (122110 real changes made) (192661 real changes made) (85067 real changes made, 85067 to missing) (276076 real changes made, 276076 to missing) (101586 real changes made) (122110 real changes made) (0 real changes made) (101586 real changes made, 101586 to missing) (987 real changes made, 987 to missing) (282014 real changes made, 282014 to missing) (185897 real changes made, 185897 to missing) (122110 real changes made, 122110 to missing) Hours, Unions (270975 real changes made, 270975 to missing) (275430 real changes made, 275430 to missing) (262559 real changes made, 262559 to missing) (240282 real changes made, 240282 to missing) (262559 real changes made, 262559 to missing) (987 real changes made, 987 to missing) (109392 real changes made, 109392 to missing) (117 real changes made) (14859 real changes made, 14859 to missing) (241941 real changes made, 241941 to missing) (122110 real changes made, 122110 to missing) (143799 real changes made, 143799 to missing) spouse was int now byte hourslw was int now byte ym_file was float now int ym was float now int ch02 was int now byte ch35 was int now byte ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc80 was int now byte docc00 was int now byte dind was float now byte dind02 was float now int file /homes/data/morg/annual/morg00.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hhid | 0 intmonth | 283236 6.476832 3.460435 1 12 hurespli | 283203 1.594157 .9162152 0 16 minsamp | 283236 6.032708 1.999736 4 8 hrlonglk | 283236 1.991569 .129581 0 2 -------------+-------------------------------------------------------- hrsample | 0 serial | 0 hhnum | 283236 1.058891 .2602512 1 6 state | 283236 53.70691 26.11832 11 95 stfips | 283236 28.15619 15.51706 1 56 -------------+-------------------------------------------------------- cmsacode | 99048 53.29648 26.87102 7 97 msafips | 205496 4514.077 2516.585 80 9360 county | 283236 25.03965 58.78853 0 810 centcity | 240218 2.001698 .7387176 1 3 smsastat | 282384 1.232832 .4226368 1 2 -------------+-------------------------------------------------------- icntcity | 18399 1.195772 .5516497 1 4 smsa93 | 205914 5.189123 1.678874 2 7 relref95 | 283236 2.999541 3.027968 1 18 age | 283236 44.59 18.06354 16 90 spouse | 156779 1.574133 .7030455 1 14 -------------+-------------------------------------------------------- sex | 283236 1.524887 .4993811 1 2 veteran | 282249 5.626978 1.162609 1 6 race | 283236 1.244386 .6681178 1 4 ethnic | 280305 7.579683 1.437342 1 9 grade92 | 283236 39.69388 2.824576 31 46 -------------+-------------------------------------------------------- lineno | 283236 1.763254 1.074018 1 16 famnum | 283236 .8151965 .4481475 0 5 pfamrel | 283236 1.39555 1.039131 0 4 marital | 283236 3.221487 2.610469 1 7 prpertyp | 283236 2.003485 .0589287 2 3 -------------+-------------------------------------------------------- penatvty | 283236 83.63301 79.09822 57 555 pemntvty | 283236 91.56287 86.68612 57 555 pefntvty | 283236 91.90597 86.98824 57 555 prcitshp | 283236 1.432629 1.166463 1 5 prcitflg | 283236 .3038244 2.883262 0 41 -------------+-------------------------------------------------------- peinusyr | 283236 1.141882 3.416134 0 16 selfproxy | 281450 1.524448 .5456674 1 3 lfsr94 | 282249 2.709483 2.328973 1 7 absent94 | 7806 5.861773 3.183273 4 14 uhourse | 166791 39.31194 11.41515 0 99 -------------+-------------------------------------------------------- reason94 | 12261 5.060354 2.859422 1 13 hourslw | 173844 39.51043 13.66376 1 99 laydur | 1222 6.521277 8.523175 1 104 dwrsn | 4633 7.890784 2.96237 1 11 why3594 | 41295 15.13217 6.990793 1 23 -------------+-------------------------------------------------------- untype | 7160 3.48324 1.658175 1 6 ftpt94 | 282249 2.621979 2.350801 1 12 class94p | 198169 4.111682 1.163595 1 8 ind80 | 198169 586.3137 274.826 10 991 occ80 | 198169 359.355 249.375 4 905 -------------+-------------------------------------------------------- agri | 198169 .0277945 .1643839 0 1 eligible | 283236 1.431125 .4952343 1 2 otc | 161126 1.836072 .370211 1 2 ernpdh2 | 283236 -.167401 1.299856 -3 2 paidhre | 161126 1.395883 .489041 1 2 -------------+-------------------------------------------------------- earnhre | 97278 1163.501 664.3041 26 9999 earnwke | 161126 611.312 468.6841 0 2884 unionmme | 161126 1.865391 .3413065 1 2 unioncov | 139437 1.983182 .1285882 1 2 studftpt | 20677 1.090245 .2865397 1 2 -------------+-------------------------------------------------------- schenr | 42954 1.518625 .4996588 1 2 schlvl | 20677 1.466073 .4988597 1 2 earnwtp | 283236 8884.441 4384.026 0 69739.87 weightp | 283236 2221.11 1089.794 0 17535.55 chldpres | 182264 2.404035 3.396959 0 15 -------------+-------------------------------------------------------- ownchild | 182264 .8843381 1.140639 0 11 I25d | 161126 .2984435 .4575765 0 1 I25c | 97339 .3227997 .4675492 0 1 I25a | 283236 .3001949 3.224869 0 43 I25b | 283236 3.505624 11.60462 0 42 -------------+-------------------------------------------------------- qstnum | 0 occurnum | 0 ged | 90461 1.094693 .2927917 1 2 gedhigr | 8566 6.261382 1.272263 1 8 yrcoll | 73994 2.677231 1.015205 1 5 -------------+-------------------------------------------------------- grprof | 43631 1.723133 .4474555 1 2 gr6cor | 12080 1.367384 .4821123 1 2 ms123 | 14647 2.168362 .6030793 1 3 cmpwgt | 283236 2221.343 1091.779 0 17375.14 recnum | 283236 203419.7 117415.5 2 406625 -------------+-------------------------------------------------------- year | 283236 2000 0 2000 2000 ind02 | 198169 6008.809 2748.416 170 9890 class94 | 198169 4.118026 1.171242 1 8 occ00 | 198169 4434.438 2599.379 10 9840 earnwt | 283236 9006.341 4381.413 0 70707.88 -------------+-------------------------------------------------------- weight | 283236 2251.585 1089.09 0 17820.54 ym_file | 283236 485.4768 3.460435 480 491 ym | 283236 476.3787 6.905721 465 488 ch02 | 182264 .1227999 .3282083 0 1 ch35 | 182264 .1289668 .3351641 0 1 -------------+-------------------------------------------------------- ch613 | 182264 .2742835 .4461537 0 1 ch1417 | 182264 .16007 .366672 0 1 ch05 | 182264 .2089881 .406587 0 1 ihigrdc | 283236 12.91365 3.039973 0 18 docc80 | 198169 22.13205 12.78299 1 46 -------------+-------------------------------------------------------- docc00 | 198169 13.09036 6.678656 1 23 dind | 198169 31.37533 13.43522 1 52 dind02 | 198169 35.79405 206.9883 1 6790 . aef2 2001 01 98_02 dct_name aef98_02.dbd raw_name=../raw/morg01 (0 observations deleted) obs 435602 # of persons with age<=15 132566 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 40,765 9.36 9.36 0 | 4,716 1.08 10.44 1 | 5,463 1.25 11.70 2 | 5,423 1.24 12.94 3 | 5,481 1.26 14.20 4 | 5,419 1.24 15.44 5 | 5,458 1.25 16.70 6 | 5,688 1.31 18.00 7 | 5,899 1.35 19.36 8 | 5,948 1.37 20.72 9 | 6,112 1.40 22.12 10 | 6,188 1.42 23.54 11 | 6,214 1.43 24.97 12 | 6,044 1.39 26.36 13 | 5,949 1.37 27.72 14 | 5,823 1.34 29.06 15 | 5,976 1.37 30.43 16 | 5,934 1.36 31.80 17 | 5,766 1.32 33.12 18 | 5,376 1.23 34.35 19 | 5,010 1.15 35.50 20 | 4,926 1.13 36.63 21 | 4,944 1.13 37.77 22 | 4,767 1.09 38.86 23 | 4,623 1.06 39.92 24 | 4,814 1.11 41.03 25 | 4,712 1.08 42.11 26 | 4,755 1.09 43.20 27 | 4,684 1.08 44.28 28 | 4,810 1.10 45.38 29 | 4,993 1.15 46.53 30 | 5,682 1.30 47.83 31 | 5,604 1.29 49.12 32 | 5,430 1.25 50.37 33 | 5,230 1.20 51.57 34 | 5,482 1.26 52.83 35 | 5,698 1.31 54.13 36 | 6,020 1.38 55.52 37 | 6,227 1.43 56.94 38 | 6,195 1.42 58.37 39 | 6,263 1.44 59.80 40 | 6,817 1.56 61.37 41 | 6,455 1.48 62.85 42 | 6,304 1.45 64.30 43 | 6,463 1.48 65.78 44 | 6,401 1.47 67.25 45 | 6,401 1.47 68.72 46 | 6,212 1.43 70.15 47 | 5,890 1.35 71.50 48 | 5,833 1.34 72.84 49 | 5,727 1.31 74.15 50 | 5,556 1.28 75.43 51 | 5,470 1.26 76.68 52 | 5,297 1.22 77.90 53 | 5,291 1.21 79.12 54 | 5,394 1.24 80.35 55 | 4,222 0.97 81.32 56 | 4,085 0.94 82.26 57 | 4,063 0.93 83.19 58 | 4,071 0.93 84.13 59 | 3,709 0.85 84.98 60 | 3,434 0.79 85.77 61 | 3,347 0.77 86.54 62 | 3,114 0.71 87.25 63 | 3,149 0.72 87.97 64 | 2,919 0.67 88.64 65 | 3,062 0.70 89.35 66 | 2,926 0.67 90.02 67 | 2,714 0.62 90.64 68 | 2,610 0.60 91.24 69 | 2,566 0.59 91.83 70 | 2,795 0.64 92.47 71 | 2,730 0.63 93.10 72 | 2,623 0.60 93.70 73 | 2,512 0.58 94.28 74 | 2,401 0.55 94.83 75 | 2,328 0.53 95.36 76 | 2,210 0.51 95.87 77 | 2,119 0.49 96.36 78 | 1,983 0.46 96.81 79 | 1,976 0.45 97.27 80 | 1,845 0.42 97.69 81 | 1,573 0.36 98.05 82 | 1,231 0.28 98.33 83 | 1,226 0.28 98.61 84 | 1,074 0.25 98.86 85 | 992 0.23 99.09 86 | 800 0.18 99.27 87 | 685 0.16 99.43 88 | 546 0.13 99.55 89 | 433 0.10 99.65 90 | 1,507 0.35 100.00 ------------+----------------------------------- Total | 435,602 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 40,765 30.75 30.75 0 | 4,716 3.56 34.31 1 | 5,463 4.12 38.43 2 | 5,423 4.09 42.52 3 | 5,481 4.13 46.65 4 | 5,419 4.09 50.74 5 | 5,458 4.12 54.86 6 | 5,688 4.29 59.15 7 | 5,899 4.45 63.60 8 | 5,948 4.49 68.09 9 | 6,112 4.61 72.70 10 | 6,188 4.67 77.37 11 | 6,214 4.69 82.05 12 | 6,044 4.56 86.61 13 | 5,949 4.49 91.10 14 | 5,823 4.39 95.49 15 | 5,976 4.51 100.00 ------------+----------------------------------- Total | 132,566 100.00 (132566 observations deleted) (0 observations deleted) obs 303036 after keeping age>15&age!=. infile successful no observations total obs pre-revise 2001 303036 file /homes/data/morg/annual/rw/annual.dta saved (279404 observations deleted) 1 jan obs 23632 (note: you are using old merge syntax; see [D] merge for new syntax) (124875 observations deleted) file /homes/data/morg/annual/rw/jan.dta saved (279455 observations deleted) 2 feb obs 23581 (note: you are using old merge syntax; see [D] merge for new syntax) (124184 observations deleted) file /homes/data/morg/annual/rw/feb.dta saved (280298 observations deleted) 3 mar obs 22738 (note: you are using old merge syntax; see [D] merge for new syntax) (124008 observations deleted) file /homes/data/morg/annual/rw/mar.dta saved (280587 observations deleted) 4 apr obs 22449 (note: you are using old merge syntax; see [D] merge for new syntax) (124399 observations deleted) file /homes/data/morg/annual/rw/apr.dta saved (280419 observations deleted) 5 may obs 22617 (note: you are using old merge syntax; see [D] merge for new syntax) (124564 observations deleted) file /homes/data/morg/annual/rw/may.dta saved (280445 observations deleted) 6 jun obs 22591 (note: you are using old merge syntax; see [D] merge for new syntax) (125024 observations deleted) file /homes/data/morg/annual/rw/jun.dta saved (275493 observations deleted) 7 jul obs 27543 (note: you are using old merge syntax; see [D] merge for new syntax) (147563 observations deleted) file /homes/data/morg/annual/rw/jul.dta saved (275658 observations deleted) 8 aug obs 27378 (note: you are using old merge syntax; see [D] merge for new syntax) (149145 observations deleted) file /homes/data/morg/annual/rw/aug.dta saved (275476 observations deleted) 9 sep obs 27560 (note: you are using old merge syntax; see [D] merge for new syntax) (148656 observations deleted) file /homes/data/morg/annual/rw/sep.dta saved (275072 observations deleted) 10 oct obs 27964 (note: you are using old merge syntax; see [D] merge for new syntax) (148542 observations deleted) file /homes/data/morg/annual/rw/oct.dta saved (275172 observations deleted) 11 nov obs 27864 (note: you are using old merge syntax; see [D] merge for new syntax) (148458 observations deleted) file /homes/data/morg/annual/rw/nov.dta saved (275917 observations deleted) 12 dec obs 27119 (note: you are using old merge syntax; see [D] merge for new syntax) (148115 observations deleted) file /homes/data/morg/annual/rw/dec.dta saved using jan (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) total obs post-revise303036 start renaming (90979 real changes made, 90979 to missing) (90979 real changes made, 90979 to missing) done renaming drop 2000 rename 2001-2002 (154695 real changes made, 154695 to missing) (131503 real changes made, 131503 to missing) (22 real changes made, 22 to missing) (0 real changes made) (0 real changes made) (150546 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (152490 real changes made) Geography (85050 real changes made, 85050 to missing) smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (1156 real changes made, 1156 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (48199 real changes made, 48199 to missing) (284706 real changes made, 284706 to missing) (85659 real changes made, 85659 to missing) (199884 real changes made, 199884 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (136307 real changes made, 136307 to missing) if 2001 > 1983 & 2001 < 1989 { (0 real changes made) (109001 real changes made, 109001 to missing) (109001 real changes made, 109001 to missing) (109001 missing values generated) (109001 missing values generated) (109001 missing values generated) (109001 missing values generated) (ch02: 80923 changes made) (ch35: 91203 changes made) (ch613: 91203 changes made) (ch1417: 91203 changes made) (109001 missing values generated) (16194 real changes made) (0 real changes made) (207024 real changes made, 207024 to missing) (293949 real changes made, 293949 to missing) (223011 real changes made, 223011 to missing) (255892 real changes made, 255892 to missing) (290111 real changes made, 290111 to missing) (286829 real changes made, 286829 to missing) (303036 missing values generated) (1077 real changes made) (2444 real changes made) (4705 real changes made) (9164 real changes made) (8247 real changes made) (13178 real changes made) (13351 real changes made) (4424 real changes made) (66 real changes made) (23 real changes made) (77 real changes made) (707 real changes made) (1075 real changes made) (2563 real changes made) (3342 real changes made) (1234 real changes made) (86925 real changes made) (11147 real changes made) (21233 real changes made) (33786 real changes made) (10212 real changes made) (3647 real changes made) (34219 real changes made) (4758 real changes made) (8167 real changes made) (1750 real changes made) (14457 real changes made) (7058 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (1 real change made, 1 to missing) (3732 real changes made, 3732 to missing) (1084 real changes made, 1084 to missing) Employment (1955 real changes made, 1955 to missing) (297981 real changes made, 297981 to missing) (131503 real changes made, 131503 to missing) (90979 real changes made, 90979 to missing) (90979 real changes made, 90979 to missing) (90979 real changes made, 90979 to missing) (0 real changes made) (90979 real changes made, 90979 to missing) (0 real changes made) docc80 (90979 missing values generated) recode docc80 (docc80: 212057 changes made) ** The renaming is part of the Census reweighting ; docc00 (90979 missing values generated) recode docc00 (docc00: 212057 changes made) dind (90979 missing values generated) (dind: 212057 changes made) (90979 missing values generated) (dind02: 211884 changes made) Wages (131503 real changes made, 131503 to missing) (0 real changes made) (199278 real changes made, 199278 to missing) (0 real changes made) (0 real changes made) (131503 real changes made) (206254 real changes made) (90979 real changes made, 90979 to missing) (294191 real changes made, 294191 to missing) (109939 real changes made) (131503 real changes made) (1 real change made, 1 to missing) (109939 real changes made, 109939 to missing) (1084 real changes made, 1084 to missing) (301493 real changes made, 301493 to missing) (199221 real changes made, 199221 to missing) (131503 real changes made, 131503 to missing) Hours, Unions (287908 real changes made, 287908 to missing) (294863 real changes made, 294863 to missing) (280468 real changes made, 280468 to missing) (257090 real changes made, 257090 to missing) (280468 real changes made, 280468 to missing) (1084 real changes made, 1084 to missing) (118112 real changes made, 118112 to missing) (98 real changes made) (16501 real changes made, 16501 to missing) (256571 real changes made, 256571 to missing) (131635 real changes made, 131635 to missing) (154578 real changes made, 154578 to missing) spouse was int now byte hourslw was int now byte ym_file was float now int ym was float now int ch02 was int now byte ch35 was int now byte ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc80 was int now byte docc00 was int now byte dind was float now byte dind02 was float now int file /homes/data/morg/annual/morg01.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hhid | 0 intmonth | 303036 6.76115 3.453879 1 12 hurespli | 303014 1.560476 .9066651 1 16 minsamp | 303036 6.01283 1.999962 4 8 hrlonglk | 303036 1.991348 .1312633 0 2 -------------+-------------------------------------------------------- hrsample | 0 serial | 0 hhnum | 303036 1.053881 .2458239 1 5 state | 303036 53.13874 26.26598 11 95 stfips | 303036 28.38441 15.57693 1 56 -------------+-------------------------------------------------------- cmsacode | 103152 54.08135 27.37933 7 97 msafips | 217377 4542.155 2520.257 80 9360 county | 303036 24.24006 58.95164 0 810 centcity | 254837 2.015002 .7416406 1 3 smsastat | 301880 1.238585 .4262191 1 2 -------------+-------------------------------------------------------- icntcity | 18330 1.194599 .5478304 1 4 smsa93 | 217986 5.152345 1.68328 2 7 relref95 | 303036 3.000333 3.029933 1 18 age | 303036 44.76226 18.07107 16 90 spouse | 166729 1.574603 .7077778 1 16 -------------+-------------------------------------------------------- sex | 303036 1.524522 .4993991 1 2 veteran | 301952 5.638158 1.147559 1 6 race | 303036 1.249112 .6770799 1 4 ethnic | 299303 7.594715 1.413463 1 9 grade92 | 303036 39.74659 2.807199 31 46 -------------+-------------------------------------------------------- lineno | 303036 1.755201 1.063482 1 16 famnum | 303036 .8106925 .4507635 0 5 pfamrel | 303036 1.387195 1.040904 0 4 marital | 303036 3.237153 2.612449 1 7 prpertyp | 303036 2.003577 .0597022 2 3 -------------+-------------------------------------------------------- penatvty | 303036 83.6717 79.4242 57 555 pemntvty | 303036 91.43968 86.94061 57 555 pefntvty | 303036 91.80912 87.34506 57 555 prcitshp | 303036 1.430642 1.162982 1 5 prcitflg | 303036 .3251693 2.980711 0 41 -------------+-------------------------------------------------------- peinusyr | 303036 1.186938 3.539238 0 16 selfproxy | 301081 1.525244 .5496366 1 3 lfsr94 | 301952 2.720413 2.327779 1 7 absent94 | 8173 5.963416 3.287907 4 14 uhourse | 176596 39.12898 11.30675 0 99 -------------+-------------------------------------------------------- reason94 | 15128 5.282853 3.012443 1 13 hourslw | 184924 39.04949 13.57864 1 99 laydur | 1543 7.075826 9.422499 1 108 dwrsn | 5055 7.875964 2.993306 1 11 why3594 | 46465 14.77654 7.077184 1 23 -------------+-------------------------------------------------------- untype | 8845 3.304353 1.654205 1 6 ftpt94 | 301952 2.673269 2.414177 1 12 class94p | 212057 4.105509 1.159684 1 8 ind80 | 212057 589.2268 274.8199 10 991 occ80 | 212057 356.7999 248.9908 4 905 -------------+-------------------------------------------------------- agri | 212057 .0273653 .1631458 0 1 eligible | 303036 1.433952 .4956192 1 2 otc | 171533 1.83546 .3707657 1 2 ernpdh2 | 303036 -.1645349 1.298028 -3 2 paidhre | 171533 1.394781 .4888051 1 2 -------------+-------------------------------------------------------- earnhre | 103757 1219.402 694.819 21 9999 earnwke | 171533 638.2783 487.2534 0 2884 unionmep | 171533 1.864796 .3419427 1 2 unioncop | 148341 1.983673 .1267311 1 2 studftpt | 22568 1.091368 .2881385 1 2 -------------+-------------------------------------------------------- schenr | 45946 1.508815 .4999277 1 2 schlvl | 22568 1.474521 .4993615 1 2 earnwtp | 303036 8389.673 4593.082 0 69992.41 weightp | 303036 2097.418 1142.642 0 16672.63 chldpres | 194035 2.385508 3.389457 0 15 -------------+-------------------------------------------------------- ownchild | 194035 .8769913 1.136154 0 11 I25d | 171533 .3094623 .4622733 0 1 I25c | 103815 .3374753 .4728508 0 1 I25a | 303036 .3226778 3.368543 0 43 I25b | 303036 3.527205 11.63747 0 42 -------------+-------------------------------------------------------- qstnum | 0 occurnum | 0 ged | 96012 1.094644 .2927247 1 2 gedhigr | 9087 6.293606 1.24611 1 8 yrcoll | 80025 2.674839 1.013258 1 5 -------------+-------------------------------------------------------- grprof | 47144 1.72584 .4460947 1 2 gr6cor | 12925 1.368124 .4823139 1 2 ms123 | 16207 2.170852 .5980299 1 3 cmpwgt | 303036 2097.528 1144.664 0 16988.16 recnum | 303036 217943.4 125850.3 1 435600 -------------+-------------------------------------------------------- year | 303036 2001 0 2001 2001 ind02 | 212057 6047.833 2742.812 170 9890 class94 | 212057 4.110664 1.167273 1 8 occ00 | 212057 4399.994 2586.613 10 9840 earnwt | 303036 8517.502 4569.583 0 67775.06 -------------+-------------------------------------------------------- weight | 303036 2129.375 1136.937 0 16836.63 unioncov | 148458 1.982547 .1309514 1 2 unionmme | 171401 1.866144 .3404982 1 2 ym_file | 303036 497.7612 3.453879 492 503 ym | 303036 488.7227 6.953732 477 500 -------------+-------------------------------------------------------- ch02 | 194035 .1208906 .3260009 0 1 ch35 | 194035 .1258639 .3316968 0 1 ch613 | 194035 .2728219 .4454112 0 1 ch1417 | 194035 .1605329 .3671005 0 1 ch05 | 194035 .2043497 .4032267 0 1 -------------+-------------------------------------------------------- ihigrdc | 303036 12.96603 3.015362 0 18 docc80 | 212057 22.0031 12.81362 1 46 docc00 | 212057 13.0165 6.668246 1 23 dind | 212057 31.4678 13.44989 1 52 dind02 | 212057 35.21504 193.5717 1 6790 . aef2 2002 02 98_02 dct_name aef98_02.dbd raw_name=../raw/morg02 (0 observations deleted) obs 474729 # of persons with age<=15 144757 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 45,259 9.53 9.53 0 | 5,012 1.06 10.59 1 | 5,749 1.21 11.80 2 | 6,008 1.27 13.07 3 | 5,886 1.24 14.31 4 | 5,935 1.25 15.56 5 | 6,031 1.27 16.83 6 | 6,137 1.29 18.12 7 | 6,190 1.30 19.42 8 | 6,411 1.35 20.77 9 | 6,339 1.34 22.11 10 | 6,590 1.39 23.50 11 | 6,595 1.39 24.89 12 | 6,760 1.42 26.31 13 | 6,699 1.41 27.72 14 | 6,673 1.41 29.13 15 | 6,483 1.37 30.49 16 | 6,392 1.35 31.84 17 | 6,396 1.35 33.19 18 | 5,717 1.20 34.39 19 | 5,237 1.10 35.49 20 | 5,308 1.12 36.61 21 | 5,233 1.10 37.71 22 | 5,211 1.10 38.81 23 | 5,036 1.06 39.87 24 | 4,977 1.05 40.92 25 | 5,128 1.08 42.00 26 | 5,061 1.07 43.07 27 | 5,162 1.09 44.15 28 | 5,150 1.08 45.24 29 | 5,172 1.09 46.33 30 | 5,749 1.21 47.54 31 | 6,146 1.29 48.83 32 | 6,101 1.29 50.12 33 | 5,836 1.23 51.35 34 | 5,882 1.24 52.59 35 | 6,072 1.28 53.87 36 | 6,228 1.31 55.18 37 | 6,467 1.36 56.54 38 | 6,761 1.42 57.97 39 | 6,697 1.41 59.38 40 | 7,094 1.49 60.87 41 | 7,025 1.48 62.35 42 | 7,014 1.48 63.83 43 | 6,857 1.44 65.27 44 | 6,913 1.46 66.73 45 | 7,067 1.49 68.22 46 | 6,658 1.40 69.62 47 | 6,743 1.42 71.04 48 | 6,376 1.34 72.38 49 | 6,343 1.34 73.72 50 | 6,425 1.35 75.07 51 | 6,033 1.27 76.34 52 | 5,753 1.21 77.56 53 | 5,623 1.18 78.74 54 | 5,685 1.20 79.94 55 | 5,811 1.22 81.16 56 | 4,468 0.94 82.10 57 | 4,323 0.91 83.01 58 | 4,306 0.91 83.92 59 | 4,374 0.92 84.84 60 | 4,009 0.84 85.69 61 | 3,607 0.76 86.45 62 | 3,545 0.75 87.19 63 | 3,379 0.71 87.90 64 | 3,342 0.70 88.61 65 | 3,427 0.72 89.33 66 | 3,317 0.70 90.03 67 | 3,052 0.64 90.67 68 | 2,956 0.62 91.29 69 | 2,853 0.60 91.90 70 | 2,820 0.59 92.49 71 | 2,807 0.59 93.08 72 | 2,674 0.56 93.64 73 | 2,633 0.55 94.20 74 | 2,654 0.56 94.76 75 | 2,594 0.55 95.30 76 | 2,416 0.51 95.81 77 | 2,512 0.53 96.34 78 | 2,266 0.48 96.82 79 | 1,880 0.40 97.22 80 | 12,254 2.58 99.80 81 | 152 0.03 99.83 82 | 115 0.02 99.85 83 | 120 0.03 99.88 84 | 102 0.02 99.90 85 | 72 0.02 99.91 86 | 78 0.02 99.93 87 | 68 0.01 99.95 88 | 55 0.01 99.96 89 | 47 0.01 99.97 90 | 156 0.03 100.00 ------------+----------------------------------- Total | 474,729 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 45,259 31.27 31.27 0 | 5,012 3.46 34.73 1 | 5,749 3.97 38.70 2 | 6,008 4.15 42.85 3 | 5,886 4.07 46.92 4 | 5,935 4.10 51.02 5 | 6,031 4.17 55.18 6 | 6,137 4.24 59.42 7 | 6,190 4.28 63.70 8 | 6,411 4.43 68.13 9 | 6,339 4.38 72.51 10 | 6,590 4.55 77.06 11 | 6,595 4.56 81.61 12 | 6,760 4.67 86.28 13 | 6,699 4.63 90.91 14 | 6,673 4.61 95.52 15 | 6,483 4.48 100.00 ------------+----------------------------------- Total | 144,757 100.00 (144757 observations deleted) (0 observations deleted) obs 329972 after keeping age>15&age!=. infile successful no observations total obs pre-revise 2002 329972 file /homes/data/morg/annual/rw/annual.dta saved (302400 observations deleted) 1 jan obs 27572 (note: you are using old merge syntax; see [D] merge for new syntax) (148089 observations deleted) file /homes/data/morg/annual/rw/jan.dta saved (302521 observations deleted) 2 feb obs 27451 (note: you are using old merge syntax; see [D] merge for new syntax) (148216 observations deleted) file /homes/data/morg/annual/rw/feb.dta saved (302697 observations deleted) 3 mar obs 27275 (note: you are using old merge syntax; see [D] merge for new syntax) (148082 observations deleted) file /homes/data/morg/annual/rw/mar.dta saved (302919 observations deleted) 4 apr obs 27053 (note: you are using old merge syntax; see [D] merge for new syntax) (148938 observations deleted) file /homes/data/morg/annual/rw/apr.dta saved (302762 observations deleted) 5 may obs 27210 (note: you are using old merge syntax; see [D] merge for new syntax) (149450 observations deleted) file /homes/data/morg/annual/rw/may.dta saved (302564 observations deleted) 6 jun obs 27408 (note: you are using old merge syntax; see [D] merge for new syntax) (149024 observations deleted) file /homes/data/morg/annual/rw/jun.dta saved (302241 observations deleted) 7 jul obs 27731 (note: you are using old merge syntax; see [D] merge for new syntax) (149333 observations deleted) file /homes/data/morg/annual/rw/jul.dta saved (302943 observations deleted) 8 aug obs 27029 (note: you are using old merge syntax; see [D] merge for new syntax) (150315 observations deleted) file /homes/data/morg/annual/rw/aug.dta saved (302288 observations deleted) 9 sep obs 27684 (note: you are using old merge syntax; see [D] merge for new syntax) (149484 observations deleted) file /homes/data/morg/annual/rw/sep.dta saved (301863 observations deleted) 10 oct obs 28109 (note: you are using old merge syntax; see [D] merge for new syntax) (149145 observations deleted) file /homes/data/morg/annual/rw/oct.dta saved (302039 observations deleted) 11 nov obs 27933 (note: you are using old merge syntax; see [D] merge for new syntax) (148868 observations deleted) file /homes/data/morg/annual/rw/nov.dta saved (302455 observations deleted) 12 dec obs 27517 (note: you are using old merge syntax; see [D] merge for new syntax) (148726 observations deleted) file /homes/data/morg/annual/rw/dec.dta saved using jan (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label neio1cow already defined) total obs post-revise329972 start renaming (100723 real changes made, 100723 to missing) (100723 real changes made, 100723 to missing) done renaming drop 2000 rename 2001-2002 (170230 real changes made, 170230 to missing) (145835 real changes made, 145835 to missing) (41 real changes made, 41 to missing) (0 real changes made) (0 real changes made) (165552 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (164420 real changes made) Geography (94992 real changes made, 94992 to missing) smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (1391 real changes made, 1391 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (53735 real changes made, 53735 to missing) (311190 real changes made, 311190 to missing) (95753 real changes made, 95753 to missing) (220915 real changes made, 220915 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (148483 real changes made, 148483 to missing) if 2002 > 1983 & 2002 < 1989 { (0 real changes made) (118961 real changes made, 118961 to missing) (118862 real changes made, 118862 to missing) (118862 missing values generated) (118862 missing values generated) (118862 missing values generated) (118862 missing values generated) (ch02: 87920 changes made) (ch35: 98751 changes made) (ch613: 98751 changes made) (ch1417: 98751 changes made) (118862 missing values generated) (17600 real changes made) (1 real change made, 1 to missing) (225962 real changes made, 225962 to missing) (319885 real changes made, 319885 to missing) (243131 real changes made, 243131 to missing) (277164 real changes made, 277164 to missing) (315235 real changes made, 315235 to missing) (311791 real changes made, 311791 to missing) (329972 missing values generated) (1136 real changes made) (2493 real changes made) (5056 real changes made) (9543 real changes made) (8812 real changes made) (13991 real changes made) (14506 real changes made) (4735 real changes made) (66 real changes made) (22 real changes made) (79 real changes made) (755 real changes made) (1224 real changes made) (2812 real changes made) (3775 real changes made) (1354 real changes made) (93923 real changes made) (11687 real changes made) (22828 real changes made) (37166 real changes made) (11060 real changes made) (4100 real changes made) (38071 real changes made) (5259 real changes made) (9478 real changes made) (1965 real changes made) (16216 real changes made) (7859 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (1 real change made, 1 to missing) (4615 real changes made, 4615 to missing) (1297 real changes made, 1297 to missing) Employment (2236 real changes made, 2236 to missing) (324443 real changes made, 324443 to missing) (145835 real changes made, 145835 to missing) (100723 real changes made, 100723 to missing) (100723 real changes made, 100723 to missing) (100723 real changes made, 100723 to missing) (0 real changes made) (100723 real changes made, 100723 to missing) (0 real changes made) docc80 (100723 missing values generated) recode docc80 (docc80: 229249 changes made) ** The renaming is part of the Census reweighting ; docc00 (100723 missing values generated) recode docc00 (docc00: 229249 changes made) dind (100723 missing values generated) (dind: 229249 changes made) (100723 missing values generated) (dind02: 229075 changes made) Wages (145835 real changes made, 145835 to missing) (0 real changes made) (219257 real changes made, 219257 to missing) (0 real changes made) (0 real changes made) (145835 real changes made) (222994 real changes made) (100723 real changes made, 100723 to missing) (318361 real changes made, 318361 to missing) (122554 real changes made) (145835 real changes made) (0 real changes made) (122554 real changes made, 122554 to missing) (1297 real changes made, 1297 to missing) (328289 real changes made, 328289 to missing) (219198 real changes made, 219198 to missing) (145835 real changes made, 145835 to missing) Hours, Unions (314716 real changes made, 314716 to missing) (321383 real changes made, 321383 to missing) (305047 real changes made, 305047 to missing) (280740 real changes made, 280740 to missing) (305047 real changes made, 305047 to missing) (1297 real changes made, 1297 to missing) (131143 real changes made, 131143 to missing) (115 real changes made) (17176 real changes made, 17176 to missing) (280044 real changes made, 280044 to missing) (145810 real changes made, 145810 to missing) (170172 real changes made, 170172 to missing) spouse was int now byte hourslw was int now byte ym_file was float now int ym was float now int ch02 was int now byte ch35 was int now byte ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc80 was int now byte docc00 was int now byte dind was float now byte dind02 was float now int file /homes/data/morg/annual/morg02.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hhid | 0 intmonth | 329972 6.51895 3.45735 1 12 hurespli | 329931 1.55087 .8898662 1 16 minsamp | 329972 5.993139 1.999991 4 8 hrlonglk | 329972 1.99263 .1211873 0 2 -------------+-------------------------------------------------------- hrsample | 0 serial | 0 hhnum | 329972 1.054711 .248956 1 6 state | 329972 52.85021 26.43279 11 95 stfips | 329972 28.58845 15.63515 1 56 -------------+-------------------------------------------------------- cmsacode | 109057 54.5488 27.75288 7 97 msafips | 234219 4559.808 2515.933 80 9360 county | 329972 23.55407 58.75407 0 810 centcity | 276237 2.031817 .742531 1 3 smsastat | 328581 1.245559 .4304188 1 2 -------------+-------------------------------------------------------- icntcity | 18782 1.211053 .5711869 1 4 smsa93 | 234980 5.122691 1.678976 2 7 relref95 | 329972 2.989826 3.024649 1 18 age | 329972 44.81128 17.73206 16 90 spouse | 181489 1.571836 .6984419 1 16 -------------+-------------------------------------------------------- sex | 329972 1.524602 .4993951 1 2 veteran | 328675 5.640201 1.149117 1 6 race | 329972 1.24429 .673062 1 4 ethnic | 325356 7.603195 1.39667 1 9 grade92 | 329971 39.79285 2.800967 31 46 -------------+-------------------------------------------------------- lineno | 329972 1.745272 1.050573 1 16 famnum | 329972 .8059563 .4506711 0 5 pfamrel | 329972 1.376905 1.038009 0 4 marital | 329972 3.238829 2.611929 -1 7 prpertyp | 329972 2.003925 .0625719 1 3 -------------+-------------------------------------------------------- penatvty | 329972 83.34067 78.84535 57 555 pemntvty | 329972 90.9733 86.20711 57 555 pefntvty | 329972 91.32134 86.69446 57 555 prcitshp | 329972 1.423897 1.153464 1 5 prcitflg | 329972 .3351103 2.99487 0 41 -------------+-------------------------------------------------------- peinusyr | 329972 1.211354 3.643099 0 17 selfproxy | 327736 1.523714 .551584 1 3 lfsr94 | 328675 2.7502 2.331634 1 7 absent94 | 8589 5.887065 3.217515 4 14 uhourse | 190242 38.9891 11.38384 0 99 -------------+-------------------------------------------------------- reason94 | 15256 5.053815 2.894324 1 13 hourslw | 198829 38.96482 13.58509 1 99 laydur | 1683 8.964944 12.75398 1 117 dwrsn | 5529 7.702478 3.095956 1 11 why3594 | 49928 14.92671 7.027962 1 23 -------------+-------------------------------------------------------- untype | 11611 3.225993 1.611677 1 6 ftpt94 | 328675 2.721722 2.501762 1 12 class94p | 229249 4.107887 1.160275 1 8 ind80 | 229249 593.3183 274.3988 10 991 occ80 | 229249 354.4808 249.0026 4 905 -------------+-------------------------------------------------------- agri | 229249 .0272847 .1629123 0 1 eligible | 329972 1.441962 .4966209 1 2 otc | 184137 1.843942 .362911 1 2 ernpdh2 | 329972 -.1757907 1.294302 -3 2 paidhre | 184137 1.398415 .4895731 1 2 -------------+-------------------------------------------------------- earnhre | 110715 1256.863 715.3487 19 9999 earnwke | 184137 655.6024 499.9004 0 2884 unionmep | 184137 1.867517 .3390159 1 2 unioncop | 159742 1.984231 .1245817 1 2 studftpt | 24925 1.089549 .2855398 1 2 -------------+-------------------------------------------------------- schenr | 49232 1.493724 .4999657 1 2 schlvl | 24925 1.465998 .4988525 1 2 earnwtp | 329972 7781.612 4529.383 0 66756.2 weightp | 329972 1945.415 1127.418 0 14938.39 chldpres | 211110 2.393042 3.404976 0 15 -------------+-------------------------------------------------------- ownchild | 211011 .8758406 1.138884 0 10 I25d | 184137 .3035892 .4598086 0 1 I25c | 110774 .3308628 .4705259 0 1 I25a | 329972 .3081352 3.302527 0 43 I25b | 329972 3.491554 11.5836 0 42 -------------+-------------------------------------------------------- qstnum | 0 occurnum | 0 ged | 104010 1.096981 .2959334 1 2 gedhigr | 10087 6.306731 1.227574 1 8 yrcoll | 86841 2.689755 1.010524 1 5 -------------+-------------------------------------------------------- grprof | 52808 1.720932 .4485451 1 2 gr6cor | 14737 1.356857 .4790883 1 2 ms123 | 18181 2.164072 .5944172 1 3 cmpwgt | 329972 1945.453 1128.916 0 15822.29 recnum | 329972 237569.4 137170.4 1 474727 -------------+-------------------------------------------------------- year | 329972 2002 0 2002 2002 ind02 | 229249 6094.332 2735.277 170 9890 class94 | 229249 4.114914 1.166032 1 8 occ00 | 229249 4366.841 2580.02 10 9840 earnwt | 329972 7912.257 4501.783 0 66415.99 -------------+-------------------------------------------------------- weight | 329972 1978.077 1120.618 0 14881.52 unioncov | 159800 1.984205 .1246811 1 2 unionmme | 184162 1.867714 .338802 1 2 ym_file | 329972 509.519 3.45735 504 515 ym | 329972 500.5395 6.926954 489 512 -------------+-------------------------------------------------------- ch02 | 211110 .1188101 .3235657 0 1 ch35 | 211110 .1251149 .3308499 0 1 ch613 | 211110 .272223 .4451051 0 1 ch1417 | 211110 .1628061 .3691896 0 1 ch05 | 211110 .202179 .4016259 0 1 -------------+-------------------------------------------------------- ihigrdc | 329971 13.01958 3.011544 0 18 docc80 | 229249 21.88738 12.85391 1 46 docc00 | 229249 12.93747 6.666344 1 23 dind | 229249 31.66762 13.4087 1 52 dind02 | 229249 35.11011 186.7435 1 6790 . aef2 2003 03 03 dct_name aef03.dbd raw_name=../raw/morg03 (0 observations deleted) obs 473453 # of persons with age<=15 144845 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 46,838 9.89 9.89 0 | 4,962 1.05 10.94 1 | 5,607 1.18 12.13 2 | 5,862 1.24 13.36 3 | 6,056 1.28 14.64 4 | 5,864 1.24 15.88 5 | 5,958 1.26 17.14 6 | 5,949 1.26 18.40 7 | 6,116 1.29 19.69 8 | 6,151 1.30 20.99 9 | 6,177 1.30 22.29 10 | 6,419 1.36 23.65 11 | 6,631 1.40 25.05 12 | 6,574 1.39 26.44 13 | 6,589 1.39 27.83 14 | 6,644 1.40 29.23 15 | 6,448 1.36 30.59 16 | 6,320 1.33 31.93 17 | 6,295 1.33 33.26 18 | 5,774 1.22 34.48 19 | 5,256 1.11 35.59 20 | 5,280 1.12 36.70 21 | 5,066 1.07 37.77 22 | 5,235 1.11 38.88 23 | 5,278 1.11 39.99 24 | 5,212 1.10 41.09 25 | 5,020 1.06 42.15 26 | 5,076 1.07 43.23 27 | 4,989 1.05 44.28 28 | 4,962 1.05 45.33 29 | 4,931 1.04 46.37 30 | 5,272 1.11 47.48 31 | 5,664 1.20 48.68 32 | 6,082 1.28 49.96 33 | 6,123 1.29 51.26 34 | 5,750 1.21 52.47 35 | 5,970 1.26 53.73 36 | 5,855 1.24 54.97 37 | 6,016 1.27 56.24 38 | 6,494 1.37 57.61 39 | 6,586 1.39 59.00 40 | 7,025 1.48 60.49 41 | 6,779 1.43 61.92 42 | 6,938 1.47 63.38 43 | 6,873 1.45 64.84 44 | 6,897 1.46 66.29 45 | 6,877 1.45 67.74 46 | 6,819 1.44 69.19 47 | 6,641 1.40 70.59 48 | 6,484 1.37 71.96 49 | 6,374 1.35 73.30 50 | 6,630 1.40 74.70 51 | 6,023 1.27 75.98 52 | 5,895 1.25 77.22 53 | 5,762 1.22 78.44 54 | 5,483 1.16 79.60 55 | 5,665 1.20 80.79 56 | 5,651 1.19 81.99 57 | 4,401 0.93 82.92 58 | 4,291 0.91 83.82 59 | 4,078 0.86 84.68 60 | 4,471 0.94 85.63 61 | 3,820 0.81 86.43 62 | 3,682 0.78 87.21 63 | 3,448 0.73 87.94 64 | 3,452 0.73 88.67 65 | 3,425 0.72 89.39 66 | 3,243 0.68 90.08 67 | 3,001 0.63 90.71 68 | 2,965 0.63 91.34 69 | 2,810 0.59 91.93 70 | 2,750 0.58 92.51 71 | 2,641 0.56 93.07 72 | 2,603 0.55 93.62 73 | 2,557 0.54 94.16 74 | 2,479 0.52 94.68 75 | 2,596 0.55 95.23 76 | 2,368 0.50 95.73 77 | 2,604 0.55 96.28 78 | 2,188 0.46 96.74 79 | 1,910 0.40 97.15 80 | 13,503 2.85 100.00 ------------+----------------------------------- Total | 473,453 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 46,838 32.34 32.34 0 | 4,962 3.43 35.76 1 | 5,607 3.87 39.63 2 | 5,862 4.05 43.68 3 | 6,056 4.18 47.86 4 | 5,864 4.05 51.91 5 | 5,958 4.11 56.02 6 | 5,949 4.11 60.13 7 | 6,116 4.22 64.35 8 | 6,151 4.25 68.60 9 | 6,177 4.26 72.86 10 | 6,419 4.43 77.30 11 | 6,631 4.58 81.87 12 | 6,574 4.54 86.41 13 | 6,589 4.55 90.96 14 | 6,644 4.59 95.55 15 | 6,448 4.45 100.00 ------------+----------------------------------- Total | 144,845 100.00 (144845 observations deleted) (0 observations deleted) obs 328608 after keeping age>15&age!=. infile successful no observations (33 real changes made, 33 to missing) (0 real changes made) (0 real changes made) (163589 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (165019 real changes made) Geography dropping non-2003 variables (94444 real changes made, 94444 to missing) smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (1378 real changes made, 1378 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (53368 real changes made, 53368 to missing) (309957 real changes made, 309957 to missing) (95266 real changes made, 95266 to missing) (220217 real changes made, 220217 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (148252 real changes made, 148252 to missing) if 2003 > 1983 & 2003 < 1989 { (0 real changes made) (118627 real changes made, 118627 to missing) (118509 real changes made, 118509 to missing) (118509 missing values generated) (118509 missing values generated) (118509 missing values generated) (118509 missing values generated) (ch02: 86685 changes made) (ch35: 97281 changes made) (ch613: 97281 changes made) (ch1417: 97281 changes made) (118509 missing values generated) (17636 real changes made) (0 real changes made) (225255 real changes made, 225255 to missing) (318843 real changes made, 318843 to missing) (242194 real changes made, 242194 to missing) (275484 real changes made, 275484 to missing) (314536 real changes made, 314536 to missing) (310019 real changes made, 310019 to missing) (328608 missing values generated) (1110 real changes made) (2447 real changes made) (4881 real changes made) (9204 real changes made) (8934 real changes made) (13574 real changes made) (14519 real changes made) (4632 real changes made) (44 real changes made) (23 real changes made) (70 real changes made) (772 real changes made) (1165 real changes made) (2814 real changes made) (3552 real changes made) (1325 real changes made) (93588 real changes made) (11380 real changes made) (22643 real changes made) (37250 real changes made) (10997 real changes made) (4144 real changes made) (39052 real changes made) (5031 real changes made) (9041 real changes made) (1889 real changes made) (16700 real changes made) (7827 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (296548 real changes made, 296548 to missing) (0 real changes made) (1314 real changes made, 1314 to missing) Employment (2308 real changes made, 2308 to missing) (322997 real changes made, 322997 to missing) (147778 real changes made, 147778 to missing) (102334 real changes made, 102334 to missing) (102334 real changes made, 102334 to missing) (102334 real changes made, 102334 to missing) docc80 ** The renaming is part of the Census reweighting ; docc00 (102334 missing values generated) recode docc00 (docc00: 226274 changes made) dind (102334 missing values generated) (dind02: 226274 changes made) Wages (147778 real changes made, 147778 to missing) (0 real changes made) (219735 real changes made, 219735 to missing) (0 real changes made) (0 real changes made) (147778 real changes made) (221500 real changes made) (102334 real changes made, 102334 to missing) (316720 real changes made, 316720 to missing) (123603 real changes made) (147778 real changes made) (0 real changes made) (123603 real changes made, 123603 to missing) (1314 real changes made, 1314 to missing) (326900 real changes made, 326900 to missing) (219690 real changes made, 219690 to missing) (147778 real changes made, 147778 to missing) Hours, Unions (313498 real changes made, 313498 to missing) (320254 real changes made, 320254 to missing) (303856 real changes made, 303856 to missing) (279158 real changes made, 279158 to missing) (303856 real changes made, 303856 to missing) (1314 real changes made, 1314 to missing) (131957 real changes made, 131957 to missing) (128 real changes made) (18260 real changes made, 18260 to missing) (278782 real changes made, 278782 to missing) (147778 real changes made, 147778 to missing) (170953 real changes made, 170953 to missing) spouse was int now byte hourslw was int now byte ym_file was float now int ym was float now int ch02 was int now byte ch35 was int now byte ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc00 was int now byte dind02 was float now byte file /homes/data/morg/annual/morg03.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hhid | 0 intmonth | 328608 6.478503 3.450795 1 12 hurespli | 328575 1.530643 .8817267 1 16 minsamp | 328608 6.008703 1.999984 4 8 hrlonglk | 328608 1.992976 .1183125 0 2 -------------+-------------------------------------------------------- hrsample | 0 serial | 0 hhnum | 328608 1.053599 .2449772 1 5 state | 328608 52.83969 26.43688 11 95 stfips | 328608 28.57465 15.63115 1 56 -------------+-------------------------------------------------------- cmsacode | 108391 54.36795 27.7976 7 97 msafips | 233342 4560.545 2511.816 80 9360 county | 328608 23.37429 58.11508 0 810 centcity | 275240 2.031805 .7408899 1 3 smsastat | 327230 1.244654 .4298823 1 2 -------------+-------------------------------------------------------- icntcity | 18651 1.223688 .5956399 1 4 smsa93 | 234164 5.118836 1.673924 2 7 relref95 | 328608 2.982873 3.00356 1 18 age | 328608 44.94788 17.71628 16 80 spouse | 180356 1.571403 .7003782 1 15 -------------+-------------------------------------------------------- sex | 328608 1.524382 .4994059 1 2 veteran | 327294 5.650235 1.136143 1 6 grade92 | 328608 39.81589 2.795732 31 46 race | 328608 1.34344 1.181352 1 21 ethnic | 32060 1.998565 1.405007 1 5 -------------+-------------------------------------------------------- lineno | 328608 1.742167 1.043476 1 16 famnum | 328608 .8070254 .4509626 0 5 pfamrel | 328608 1.379994 1.03993 0 4 marital | 328608 3.247377 2.615052 1 7 prpertyp | 328608 2.003999 .0631087 2 3 -------------+-------------------------------------------------------- penatvty | 328608 84.12409 79.82748 57 555 pemntvty | 328608 91.67585 87.05663 57 555 pefntvty | 328608 92.16424 87.59377 57 555 prcitshp | 328608 1.432661 1.162435 1 5 prcitflg | 328608 .1799195 2.080914 0 41 -------------+-------------------------------------------------------- peinusyr | 328608 1.274838 3.774911 0 17 selfproxy | 326300 1.524128 .5518624 1 3 lfsr94 | 327294 2.774127 2.342109 1 7 absent94 | 8354 6.007422 3.303107 4 14 uhourse | 186745 38.88414 11.29405 0 99 -------------+-------------------------------------------------------- reason94 | 15110 5.046923 2.88227 1 13 hourslw | 196651 38.83904 13.55626 1 99 laydur | 1708 8.6774 11.7671 1 117 dwrsn | 5611 7.517198 3.23674 1 11 why3594 | 49826 14.89959 6.999231 1 23 -------------+-------------------------------------------------------- untype | 11888 3.261272 1.629327 1 6 ftpt94 | 327294 2.724544 2.513915 1 12 class94 | 226274 4.125759 1.173037 1 8 agri | 226274 .0210983 .1437124 0 1 eligible | 328608 1.449709 .4974652 1 2 -------------+-------------------------------------------------------- otc | 180830 1.850406 .3566735 1 2 ernpdh2 | 328608 -.1946636 1.287876 -3 2 paidhre | 180830 1.397677 .4894195 1 2 earnhre | 108873 1288.157 724.4556 25 9999 earnwke | 180830 670.4284 509.2059 0 2884.61 -------------+-------------------------------------------------------- unionmme | 180830 1.871841 .3342677 1 2 unioncov | 157655 1.983439 .1276217 1 2 schenr | 49450 1.499454 .5000048 1 2 studftpt | 24752 1.08666 .2813414 1 2 schlvl | 24752 1.468447 .4990135 1 2 -------------+-------------------------------------------------------- earnwt | 328608 8076.543 4741.888 0 86648.67 weight | 328608 2019.136 1181.007 0 21190.81 chldpres | 210099 2.372996 3.401947 0 15 ownchild | 209981 .8648497 1.133724 0 11 I25d | 180830 .3197699 .4663886 0 1 -------------+-------------------------------------------------------- I25c | 108918 .3481426 .4763837 0 1 I25a | 328608 .3160666 3.340489 0 43 I25b | 328608 3.74259 11.95537 0 42 qstnum | 0 occurnum | 0 -------------+-------------------------------------------------------- ged | 103353 1.094482 .2924996 1 2 gedhigr | 9765 6.30425 1.210152 1 8 yrcoll | 86414 2.697757 1.008235 1 5 grprof | 53124 1.73511 .4412786 1 2 gr6cor | 14072 1.357518 .4792863 1 2 -------------+-------------------------------------------------------- ms123 | 18589 2.174673 .5894231 1 3 cmpwgt | 328608 2019.218 1182.012 0 21344.2 ind02 | 226274 6095.337 2730.13 170 9890 occ00 | 226274 4361.685 2568.148 10 9840 recnum | 328608 236840.9 136623 2 473453 -------------+-------------------------------------------------------- year | 328608 2003 0 2003 2003 ym_file | 328608 521.4785 3.450795 516 527 ym | 328608 512.4524 6.885899 501 524 ch02 | 210099 .1165689 .3209066 0 1 ch35 | 210099 .1254218 .3311974 0 1 -------------+-------------------------------------------------------- ch613 | 210099 .2684068 .4431315 0 1 ch1417 | 210099 .1621188 .3685606 0 1 ch05 | 210099 .2005102 .4003831 0 1 ihigrdc | 328608 13.045 3.000857 0 18 docc00 | 226274 12.92749 6.651351 1 23 -------------+-------------------------------------------------------- dind02 | 226274 29.98829 14.62929 1 52 . aef2 2004 04 03 dct_name aef03.dbd raw_name=../raw/morg04 (0 observations deleted) obs 465834 # of persons with age<=15 142905 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 47,773 10.26 10.26 0 | 4,957 1.06 11.32 1 | 5,448 1.17 12.49 2 | 5,541 1.19 13.68 3 | 5,820 1.25 14.93 4 | 5,751 1.23 16.16 5 | 5,858 1.26 17.42 6 | 5,876 1.26 18.68 7 | 5,744 1.23 19.91 8 | 5,930 1.27 21.19 9 | 6,107 1.31 22.50 10 | 6,057 1.30 23.80 11 | 6,352 1.36 25.16 12 | 6,533 1.40 26.56 13 | 6,373 1.37 27.93 14 | 6,444 1.38 29.32 15 | 6,341 1.36 30.68 16 | 6,117 1.31 31.99 17 | 6,115 1.31 33.30 18 | 5,642 1.21 34.51 19 | 5,284 1.13 35.65 20 | 5,076 1.09 36.74 21 | 5,122 1.10 37.84 22 | 5,072 1.09 38.93 23 | 5,173 1.11 40.04 24 | 5,209 1.12 41.16 25 | 5,212 1.12 42.27 26 | 5,007 1.07 43.35 27 | 4,937 1.06 44.41 28 | 4,998 1.07 45.48 29 | 4,931 1.06 46.54 30 | 5,220 1.12 47.66 31 | 5,133 1.10 48.76 32 | 5,462 1.17 49.94 33 | 5,914 1.27 51.20 34 | 6,029 1.29 52.50 35 | 5,875 1.26 53.76 36 | 5,415 1.16 54.92 37 | 5,682 1.22 56.14 38 | 5,799 1.24 57.39 39 | 6,107 1.31 58.70 40 | 6,707 1.44 60.14 41 | 6,702 1.44 61.58 42 | 6,510 1.40 62.97 43 | 6,752 1.45 64.42 44 | 6,672 1.43 65.86 45 | 6,771 1.45 67.31 46 | 6,558 1.41 68.72 47 | 6,603 1.42 70.13 48 | 6,420 1.38 71.51 49 | 6,224 1.34 72.85 50 | 6,440 1.38 74.23 51 | 6,260 1.34 75.58 52 | 5,803 1.25 76.82 53 | 5,623 1.21 78.03 54 | 5,649 1.21 79.24 55 | 5,490 1.18 80.42 56 | 5,426 1.16 81.58 57 | 5,561 1.19 82.78 58 | 4,353 0.93 83.71 59 | 4,001 0.86 84.57 60 | 4,183 0.90 85.47 61 | 4,261 0.91 86.38 62 | 3,744 0.80 87.19 63 | 3,569 0.77 87.95 64 | 3,368 0.72 88.68 65 | 3,622 0.78 89.45 66 | 3,234 0.69 90.15 67 | 3,015 0.65 90.80 68 | 2,827 0.61 91.40 69 | 2,824 0.61 92.01 70 | 2,670 0.57 92.58 71 | 2,560 0.55 93.13 72 | 2,447 0.53 93.66 73 | 2,571 0.55 94.21 74 | 2,413 0.52 94.73 75 | 2,386 0.51 95.24 76 | 2,354 0.51 95.74 77 | 2,377 0.51 96.25 78 | 2,201 0.47 96.73 79 | 1,815 0.39 97.12 80 | 10,543 2.26 99.38 85 | 2,889 0.62 100.00 ------------+----------------------------------- Total | 465,834 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 47,773 33.43 33.43 0 | 4,957 3.47 36.90 1 | 5,448 3.81 40.71 2 | 5,541 3.88 44.59 3 | 5,820 4.07 48.66 4 | 5,751 4.02 52.69 5 | 5,858 4.10 56.78 6 | 5,876 4.11 60.90 7 | 5,744 4.02 64.92 8 | 5,930 4.15 69.07 9 | 6,107 4.27 73.34 10 | 6,057 4.24 77.58 11 | 6,352 4.44 82.02 12 | 6,533 4.57 86.59 13 | 6,373 4.46 91.05 14 | 6,444 4.51 95.56 15 | 6,341 4.44 100.00 ------------+----------------------------------- Total | 142,905 100.00 (142905 observations deleted) (0 observations deleted) obs 322929 after keeping age>15&age!=. infile successful no observations (60 real changes made, 60 to missing) (0 real changes made) (0 real changes made) (158952 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (163977 real changes made) Geography replace serial (215284 real changes made) (215284 real changes made) (215284 real changes made) replace cmsacode (215284 real changes made, 215284 to missing) replace msafips (215284 real changes made, 215284 to missing) replace smsa93 (30851 real changes made, 30851 to missing) (215284 real changes made, 215284 to missing) replacing smsa04 in May 2004 and later (62667 real changes made, 62667 to missing) replacing pre-May 2004 variables (107645 real changes made, 107645 to missing) (107645 real changes made, 107645 to missing) (107645 real changes made) smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (1710 real changes made, 1710 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (54208 real changes made, 54208 to missing) (303067 real changes made, 303067 to missing) (31112 real changes made, 31112 to missing) (72212 real changes made, 72212 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (146196 real changes made, 146196 to missing) if 2004 > 1983 & 2004 < 1989 { (0 real changes made) (116843 real changes made, 116843 to missing) (116706 real changes made, 116706 to missing) (116706 missing values generated) (116706 missing values generated) (116706 missing values generated) (116706 missing values generated) (ch02: 83860 changes made) (ch35: 93998 changes made) (ch613: 93998 changes made) (ch1417: 93998 changes made) (116706 missing values generated) (16985 real changes made) (0 real changes made) (221734 real changes made, 221734 to missing) (313739 real changes made, 313739 to missing) (237181 real changes made, 237181 to missing) (270197 real changes made, 270197 to missing) (309097 real changes made, 309097 to missing) (304219 real changes made, 304219 to missing) (322929 missing values generated) (1138 real changes made) (2433 real changes made) (4536 real changes made) (8636 real changes made) (8568 real changes made) (13076 real changes made) (13909 real changes made) (4415 real changes made) (31 real changes made) (25 real changes made) (75 real changes made) (761 real changes made) (1086 real changes made) (2529 real changes made) (3418 real changes made) (1265 real changes made) (92005 real changes made) (11201 real changes made) (22206 real changes made) (37251 real changes made) (10905 real changes made) (4185 real changes made) (38900 real changes made) (4807 real changes made) (9025 real changes made) (1833 real changes made) (16877 real changes made) (7833 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (290967 real changes made, 290967 to missing) (0 real changes made) (1393 real changes made, 1393 to missing) Employment (2372 real changes made, 2372 to missing) (317395 real changes made, 317395 to missing) (145071 real changes made, 145071 to missing) (101015 real changes made, 101015 to missing) (101015 real changes made, 101015 to missing) (101015 real changes made, 101015 to missing) docc80 ** The renaming is part of the Census reweighting ; docc00 (101015 missing values generated) recode docc00 (docc00: 221914 changes made) dind (101015 missing values generated) (dind02: 221914 changes made) Wages (145071 real changes made, 145071 to missing) (0 real changes made) (215543 real changes made, 215543 to missing) (0 real changes made) (0 real changes made) (145071 real changes made) (217287 real changes made) (101015 real changes made, 101015 to missing) (312072 real changes made, 312072 to missing) (121123 real changes made) (145071 real changes made) (0 real changes made) (121123 real changes made, 121123 to missing) (1393 real changes made, 1393 to missing) (321486 real changes made, 321486 to missing) (215485 real changes made, 215485 to missing) (145071 real changes made, 145071 to missing) Hours, Unions (307548 real changes made, 307548 to missing) (314676 real changes made, 314676 to missing) (297950 real changes made, 297950 to missing) (274388 real changes made, 274388 to missing) (297950 real changes made, 297950 to missing) (1393 real changes made, 1393 to missing) (129376 real changes made, 129376 to missing) (97 real changes made) (18416 real changes made, 18416 to missing) (273403 real changes made, 273403 to missing) (145071 real changes made, 145071 to missing) (167209 real changes made, 167209 to missing) spouse was int now byte hourslw was int now byte ym_file was float now int ym was float now int ch02 was int now byte ch35 was int now byte ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc00 was int now byte dind02 was float now byte file /homes/data/morg/annual/morg04.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hhid | 0 intmonth | 322929 6.496617 3.455653 1 12 hurespli | 322869 1.501603 .8480708 1 14 minsamp | 322929 6.031121 1.999761 4 8 hrlonglk | 322929 1.992562 .1217418 0 2 -------------+-------------------------------------------------------- hrsample | 0 hrhhid2 | 0 serial | 0 hhnum | 322929 1.05382 .2471197 1 7 state | 322929 52.98301 26.4396 11 95 -------------+-------------------------------------------------------- stfips | 322929 28.40793 15.69805 1 56 cmsacode | 35433 54.40253 27.92364 7 97 cbsafips | 215284 24492.59 21147.67 0 79600 msafips | 76533 4558.286 2518.206 80 9360 county | 322929 24.33349 59.63226 0 810 -------------+-------------------------------------------------------- centcity | 268721 2.026053 .7412248 1 3 smsastat | 321219 1.240991 .4276857 1 2 icntcity | 19862 1.286326 .7494914 1 7 smsa04 | 152617 4.66353 1.538537 2 7 smsa93 | 76794 5.112978 1.677033 2 7 -------------+-------------------------------------------------------- relref95 | 322929 2.996516 3.019121 1 18 age | 322929 45.11894 17.82654 16 85 spouse | 176733 1.571393 .6938938 1 14 sex | 322929 1.523196 .4994625 1 2 veteran | 321536 5.658408 1.1253 1 6 -------------+-------------------------------------------------------- grade92 | 322929 39.85432 2.788368 31 46 race | 322929 1.365396 1.228243 1 21 ethnic | 31962 2.000375 1.407494 1 5 lineno | 322929 1.744935 1.043469 1 16 famnum | 322929 .8077875 .4523174 0 6 -------------+-------------------------------------------------------- pfamrel | 322929 1.381951 1.043014 0 4 marital | 322929 3.258444 2.61905 1 7 prpertyp | 322929 2.004314 .0655366 2 3 penatvty | 322929 84.29737 79.93308 57 555 pemntvty | 322929 91.79064 87.22894 57 555 -------------+-------------------------------------------------------- pefntvty | 322929 92.04701 87.41434 57 555 prcitshp | 322929 1.435356 1.164632 1 5 prcitflg | 322929 .1092098 1.540794 0 41 peinusyr | 322929 1.327747 3.911331 0 18 selfproxy | 320557 1.524871 .5513957 1 3 -------------+-------------------------------------------------------- lfsr94 | 321536 2.773929 2.345325 1 7 absent94 | 8253 5.968133 3.292433 4 14 uhourse | 183390 38.932 11.33592 0 99 reason94 | 15381 5.139133 2.880636 1 13 hourslw | 193553 38.82385 13.56599 1 99 -------------+-------------------------------------------------------- laydur | 1443 8.33264 11.07678 1 109 dwrsn | 5534 7.480123 3.20743 1 11 why3594 | 49526 14.83942 7.003067 1 23 untype | 10857 3.386018 1.628188 1 6 ftpt94 | 321536 2.704932 2.480632 1 12 -------------+-------------------------------------------------------- class94 | 221914 4.127932 1.1806 1 8 agri | 221914 .0208504 .1428838 0 1 eligible | 322929 1.449235 .497417 1 2 otc | 177858 1.852557 .3545484 1 2 ernpdh2 | 322929 -.1964271 1.287212 -3 2 -------------+-------------------------------------------------------- paidhre | 177858 1.3959 .4890445 1 2 earnhre | 107386 1313.674 750.5228 35 9999 earnwke | 177858 689.0746 523.6172 0 2884.61 unionmme | 177858 1.87553 .330118 1 2 unioncov | 155720 1.984382 .1239918 1 2 -------------+-------------------------------------------------------- schenr | 48541 1.485404 .4997921 1 2 studftpt | 24979 1.084431 .2780386 1 2 schlvl | 24979 1.482766 .4997129 1 2 earnwt | 322929 8299.907 4903.306 0 100244.8 weight | 322929 2074.977 1221.629 0 26476.42 -------------+-------------------------------------------------------- chldpres | 206223 2.331675 3.380838 0 15 ownchild | 206086 .8519599 1.130143 0 11 I25d | 177858 .3164266 .4650828 0 1 I25c | 107444 .345715 .475603 0 1 I25a | 322929 .3287658 3.404893 0 43 -------------+-------------------------------------------------------- I25b | 322929 3.68629 11.87284 0 42 qstnum | 0 occurnum | 0 ged | 101195 1.090815 .2873469 1 2 gedhigr | 9190 6.311208 1.21513 1 8 -------------+-------------------------------------------------------- yrcoll | 85748 2.704565 1.008268 1 5 grprof | 52732 1.737692 .4398931 1 2 gr6cor | 13832 1.347527 .4762022 1 2 ms123 | 18710 2.179049 .5856164 1 3 cmpwgt | 322929 2075.151 1223.019 0 25636.13 -------------+-------------------------------------------------------- ind02 | 221914 6105.335 2734.647 170 9890 occ00 | 221914 4346.794 2559.984 10 9840 recnum | 322929 233542.8 134449.2 1 465833 year | 322929 2004 0 2004 2004 ym_file | 322929 533.4966 3.455653 528 539 -------------+-------------------------------------------------------- ym | 322929 524.4033 6.933936 513 536 ch02 | 206223 .1145459 .3184739 0 1 ch35 | 206223 .1238999 .3294681 0 1 ch613 | 206223 .2636806 .4406292 0 1 ch1417 | 206223 .1592499 .3659099 0 1 -------------+-------------------------------------------------------- ch05 | 206223 .1969082 .3976633 0 1 ihigrdc | 322929 13.08456 2.997354 0 18 docc00 | 221914 12.90094 6.636766 1 23 dind02 | 221914 30.06169 14.65882 1 52 . aef2 2005 05 03 dct_name aef03.dbd raw_name=../raw/morg05 (0 observations deleted) obs 464739 # of persons with age<=15 141748 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 47,432 10.21 10.21 0 | 5,023 1.08 11.29 1 | 5,448 1.17 12.46 2 | 5,558 1.20 13.66 3 | 5,694 1.23 14.88 4 | 5,756 1.24 16.12 5 | 5,758 1.24 17.36 6 | 5,908 1.27 18.63 7 | 5,776 1.24 19.87 8 | 5,788 1.25 21.12 9 | 5,898 1.27 22.39 10 | 6,001 1.29 23.68 11 | 6,120 1.32 24.99 12 | 6,338 1.36 26.36 13 | 6,489 1.40 27.75 14 | 6,305 1.36 29.11 15 | 6,456 1.39 30.50 16 | 6,322 1.36 31.86 17 | 6,018 1.29 33.16 18 | 5,544 1.19 34.35 19 | 5,145 1.11 35.46 20 | 5,111 1.10 36.56 21 | 5,020 1.08 37.64 22 | 5,174 1.11 38.75 23 | 5,201 1.12 39.87 24 | 5,229 1.13 40.99 25 | 5,355 1.15 42.15 26 | 5,199 1.12 43.26 27 | 5,018 1.08 44.34 28 | 5,039 1.08 45.43 29 | 5,044 1.09 46.51 30 | 5,273 1.13 47.65 31 | 4,964 1.07 48.72 32 | 5,145 1.11 49.82 33 | 5,428 1.17 50.99 34 | 5,893 1.27 52.26 35 | 6,127 1.32 53.58 36 | 5,768 1.24 54.82 37 | 5,519 1.19 56.01 38 | 5,790 1.25 57.25 39 | 5,903 1.27 58.52 40 | 6,426 1.38 59.91 41 | 6,426 1.38 61.29 42 | 6,496 1.40 62.69 43 | 6,458 1.39 64.08 44 | 6,515 1.40 65.48 45 | 6,761 1.45 66.93 46 | 6,386 1.37 68.31 47 | 6,487 1.40 69.70 48 | 6,375 1.37 71.07 49 | 6,363 1.37 72.44 50 | 6,464 1.39 73.83 51 | 5,984 1.29 75.12 52 | 6,031 1.30 76.42 53 | 5,712 1.23 77.65 54 | 5,662 1.22 78.87 55 | 5,557 1.20 80.06 56 | 5,295 1.14 81.20 57 | 5,323 1.15 82.35 58 | 5,386 1.16 83.51 59 | 4,248 0.91 84.42 60 | 4,082 0.88 85.30 61 | 3,995 0.86 86.16 62 | 4,160 0.90 87.05 63 | 3,627 0.78 87.83 64 | 3,416 0.74 88.57 65 | 3,592 0.77 89.34 66 | 3,361 0.72 90.06 67 | 3,090 0.66 90.73 68 | 2,903 0.62 91.35 69 | 2,674 0.58 91.93 70 | 2,716 0.58 92.51 71 | 2,591 0.56 93.07 72 | 2,565 0.55 93.62 73 | 2,421 0.52 94.14 74 | 2,442 0.53 94.67 75 | 2,386 0.51 95.18 76 | 2,251 0.48 95.67 77 | 2,436 0.52 96.19 78 | 2,131 0.46 96.65 79 | 1,875 0.40 97.05 80 | 8,039 1.73 98.78 85 | 5,654 1.22 100.00 ------------+----------------------------------- Total | 464,739 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 47,432 33.46 33.46 0 | 5,023 3.54 37.01 1 | 5,448 3.84 40.85 2 | 5,558 3.92 44.77 3 | 5,694 4.02 48.79 4 | 5,756 4.06 52.85 5 | 5,758 4.06 56.91 6 | 5,908 4.17 61.08 7 | 5,776 4.07 65.15 8 | 5,788 4.08 69.24 9 | 5,898 4.16 73.40 10 | 6,001 4.23 77.63 11 | 6,120 4.32 81.95 12 | 6,338 4.47 86.42 13 | 6,489 4.58 91.00 14 | 6,305 4.45 95.45 15 | 6,456 4.55 100.00 ------------+----------------------------------- Total | 141,748 100.00 (141748 observations deleted) (0 observations deleted) obs 322991 after keeping age>15&age!=. infile successful Interview | Month | Freq. Percent Cum. ------------+----------------------------------- 1 | 27,346 8.47 8.47 2 | 26,937 8.34 16.81 3 | 26,619 8.24 25.05 4 | 26,917 8.33 33.38 5 | 26,842 8.31 41.69 6 | 26,945 8.34 50.03 7 | 26,776 8.29 58.32 8 | 27,217 8.43 66.75 9 | 26,761 8.29 75.04 10 | 27,138 8.40 83.44 11 | 26,645 8.25 91.69 12 | 26,848 8.31 100.00 ------------+----------------------------------- Total | 322,991 100.00 (52 real changes made, 52 to missing) (203 real changes made, 203 to missing) (53127 real changes made, 53127 to missing) (53375 real changes made, 53375 to missing) (0 real changes made) (0 real changes made) (160587 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (162404 real changes made) Geography (322991 real changes made) (322991 real changes made) (61335 real changes made, 61335 to missing) (322991 real changes made) dropping cmsacode msafips smsa93 smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (2790 real changes made, 2790 to missing) (16 real changes made, 16 to missing) replace centcity = . if centcity==4 | centcity<=0 (59066 real changes made, 59066 to missing) (299320 real changes made, 299320 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (148098 real changes made, 148098 to missing) if 2005 > 1983 & 2005 < 1989 { (0 real changes made) (118886 real changes made, 118886 to missing) (118734 real changes made, 118734 to missing) (118734 missing values generated) (118734 missing values generated) (118734 missing values generated) (118734 missing values generated) (ch02: 82459 changes made) (ch35: 92581 changes made) (ch613: 92581 changes made) (ch1417: 92581 changes made) (118734 missing values generated) (16636 real changes made) (0 real changes made) (222920 real changes made, 222920 to missing) (313596 real changes made, 313596 to missing) (236842 real changes made, 236842 to missing) (269797 real changes made, 269797 to missing) (309396 real changes made, 309396 to missing) (303929 real changes made, 303929 to missing) (322991 missing values generated) (1249 real changes made) (2466 real changes made) (4610 real changes made) (8399 real changes made) (8437 real changes made) (13053 real changes made) (13742 real changes made) (4516 real changes made) (30 real changes made) (16 real changes made) (69 real changes made) (704 real changes made) (1166 real changes made) (2523 real changes made) (3554 real changes made) (1333 real changes made) (90676 real changes made) (10611 real changes made) (22073 real changes made) (37968 real changes made) (11301 real changes made) (4196 real changes made) (39599 real changes made) (4773 real changes made) (8822 real changes made) (1886 real changes made) (17176 real changes made) (8043 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (289970 real changes made, 289970 to missing) (0 real changes made) replacing veteran Jan-July 2005 (860 real changes made, 860 to missing) replacing vet1-vet4 if intmonth <= 7 (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (134609 real changes made, 134609 to missing) (120345 real changes made, 120345 to missing) (131997 real changes made, 131997 to missing) (134023 real changes made, 134023 to missing) (134473 real changes made, 134473 to missing) Employment (2422 real changes made, 2422 to missing) (317509 real changes made, 317509 to missing) (143843 real changes made, 143843 to missing) (100748 real changes made, 100748 to missing) (100748 real changes made, 100748 to missing) (100748 real changes made, 100748 to missing) docc80 ** The renaming is part of the Census reweighting ; docc00 (100748 missing values generated) recode docc00 (docc00: 222243 changes made) dind (100748 missing values generated) (dind02: 222243 changes made) Wages (143843 real changes made, 143843 to missing) (0 real changes made) (214382 real changes made, 214382 to missing) (0 real changes made) (0 real changes made) (143843 real changes made) (217703 real changes made) (100748 real changes made, 100748 to missing) (313093 real changes made, 313093 to missing) (119943 real changes made) (143843 real changes made) (0 real changes made) (119943 real changes made, 119943 to missing) (1415 real changes made, 1415 to missing) (321632 real changes made, 321632 to missing) (214318 real changes made, 214318 to missing) (143843 real changes made, 143843 to missing) Hours, Unions (307950 real changes made, 307950 to missing) (314625 real changes made, 314625 to missing) (298403 real changes made, 298403 to missing) (274495 real changes made, 274495 to missing) (298403 real changes made, 298403 to missing) (1415 real changes made, 1415 to missing) (128309 real changes made, 128309 to missing) (112 real changes made) (18392 real changes made, 18392 to missing) (274175 real changes made, 274175 to missing) (143843 real changes made, 143843 to missing) (165989 real changes made, 165989 to missing) spouse was int now byte hourslw was int now byte ym_file was float now int ym was float now int ch02 was int now byte ch35 was int now byte ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc00 was int now byte dind02 was float now byte hrsample was str4 now str1 file /homes/data/morg/annual/morg05.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hhid | 0 intmonth | 322991 6.493348 3.45407 1 12 hurespli | 322939 1.491935 .8580982 1 15 minsamp | 322991 6.011251 1.999971 4 8 hrlonglk | 322991 1.991764 .1280753 0 2 -------------+-------------------------------------------------------- hrsample | 0 hrhhid2 | 0 serial | 0 hhnum | 322991 1.052416 .2465816 1 7 state | 322991 53.35078 26.35006 11 95 -------------+-------------------------------------------------------- stfips | 322991 28.16645 15.79064 1 56 cbsafips | 322991 24937.34 21218.49 0 79600 county | 322991 27.46992 65.86541 0 810 centcity | 263925 2.003785 .7415407 1 3 smsastat | 320201 1.228185 .419663 1 2 -------------+-------------------------------------------------------- icntcity | 23671 1.413502 .951166 1 7 smsa04 | 261656 4.202594 2.155997 0 7 relref95 | 322991 3.0294 3.065008 1 18 age | 322991 45.26263 17.96758 16 85 spouse | 174893 1.580046 .7041355 1 15 -------------+-------------------------------------------------------- sex | 322991 1.523104 .4994667 1 2 veteran | 187522 5.667804 1.109807 1 6 grade92 | 322991 39.8775 2.800101 31 46 race | 322991 1.378283 1.27769 1 21 ethnic | 33021 1.994246 1.406191 1 5 -------------+-------------------------------------------------------- lineno | 322991 1.753708 1.056181 1 16 famnum | 322991 .8039326 .4542456 0 6 pfamrel | 322991 1.380091 1.052093 -1 4 marital | 322991 3.287677 2.624325 1 7 prpertyp | 322991 2.004381 .0660435 2 3 -------------+-------------------------------------------------------- penatvty | 322991 85.09706 81.11334 57 555 pemntvty | 322991 92.79985 88.31731 57 555 pefntvty | 322991 92.97181 88.39068 57 555 prcitshp | 322991 1.446567 1.178979 1 5 prcitflg | 322991 .1215266 1.662693 0 41 -------------+-------------------------------------------------------- peinusyr | 322975 1.40579 4.066652 0 18 selfproxy | 320569 1.524081 .5499788 1 3 lfsr94 | 321576 2.761863 2.344953 1 7 absent94 | 8366 6.06897 3.369268 4 14 uhourse | 184656 38.99408 11.23143 0 99 -------------+-------------------------------------------------------- reason94 | 15041 5.105711 2.828285 1 13 hourslw | 194682 38.91666 13.44656 1 99 laydur | 1359 8.407653 11.50489 1 104 dwrsn | 5482 7.614374 3.12895 1 11 why3594 | 48816 14.91937 7.031162 1 23 -------------+-------------------------------------------------------- untype | 9898 3.453425 1.641357 1 6 ftpt94 | 321576 2.67404 2.437441 1 12 class94 | 222243 4.125187 1.181348 1 8 agri | 222243 .0204281 .1414598 0 1 eligible | 322991 1.445347 .4970048 1 2 -------------+-------------------------------------------------------- otc | 179148 1.850152 .3569235 1 2 ernpdh2 | 322991 -.1895068 1.288429 -3 2 paidhre | 179148 1.39339 .4885034 1 2 earnhre | 108609 1349.818 780.5516 32 9999 earnwke | 179148 709.9971 538.8712 0 2884.61 -------------+-------------------------------------------------------- unionmme | 179148 1.876382 .3291467 1 2 unioncov | 157002 1.985229 .1206335 1 2 schenr | 48496 1.492989 .499956 1 2 studftpt | 24588 1.08252 .2751608 1 2 schlvl | 24588 1.477591 .4995077 1 2 -------------+-------------------------------------------------------- earnwt | 322991 8399.581 4715.556 0 133411.1 weight | 322991 2099.895 1173.812 0 34716.21 chldpres | 204257 2.322496 3.380268 0 15 ownchild | 204105 .8503319 1.131901 0 10 I25d | 179148 .3094313 .4622605 0 1 -------------+-------------------------------------------------------- I25c | 108673 .3414095 .4741847 0 1 I25a | 322991 .3449817 3.530872 0 43 I25b | 322991 3.505831 11.60454 0 42 qstnum | 0 occurnum | 0 -------------+-------------------------------------------------------- ged | 100071 1.093883 .2916678 1 2 gedhigr | 9395 6.343268 1.193801 1 8 yrcoll | 86149 2.726033 .9999293 1 5 grprof | 53194 1.744426 .4361874 1 2 gr6cor | 13595 1.351085 .477327 1 2 -------------+-------------------------------------------------------- ms123 | 19062 2.171178 .582902 1 3 cmpwgt | 322991 2100.151 1175.252 0 34708.83 ind02 | 222243 6109.839 2737.451 170 9890 occ00 | 222243 4342.378 2555.252 10 9840 vet1 | 14264 4.39477 1.892543 1 9 -------------+-------------------------------------------------------- vet2 | 2612 4.419219 1.699343 2 9 vet3 | 586 5.035836 1.592851 3 9 vet4 | 136 6.705882 1.559286 4 9 hurhhscrn | 53290 1.996772 .0567209 1 2 purkat1 | 366 1.655738 .4757775 1 2 -------------+-------------------------------------------------------- purkat2 | 118 1.728814 1.159583 1 6 recnum | 322991 233025.9 134251.6 1 464738 year | 322991 2005 0 2005 2005 ym_file | 322991 545.4933 3.45407 540 551 ym | 322991 536.4596 6.943678 525 548 -------------+-------------------------------------------------------- ch02 | 204257 .1157414 .3199154 0 1 ch35 | 204257 .1230998 .3285526 0 1 ch613 | 204257 .2612836 .4393352 0 1 ch1417 | 204257 .1588783 .3655634 0 1 ch05 | 204257 .1971879 .3978763 0 1 -------------+-------------------------------------------------------- ihigrdc | 322991 13.10552 3.01179 0 18 docc00 | 222243 12.89276 6.631031 1 23 dind02 | 222243 30.06931 14.6842 1 52 . aef2 2006 06 03 dct_name aef03.dbd raw_name=../raw/morg06 (0 observations deleted) obs 460465 # of persons with age<=15 139914 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 48,133 10.45 10.45 0 | 5,047 1.10 11.55 1 | 5,346 1.16 12.71 2 | 5,530 1.20 13.91 3 | 5,647 1.23 15.14 4 | 5,588 1.21 16.35 5 | 5,605 1.22 17.57 6 | 5,677 1.23 18.80 7 | 5,741 1.25 20.05 8 | 5,706 1.24 21.29 9 | 5,687 1.24 22.52 10 | 5,841 1.27 23.79 11 | 5,718 1.24 25.03 12 | 6,066 1.32 26.35 13 | 6,145 1.33 27.68 14 | 6,206 1.35 29.03 15 | 6,231 1.35 30.39 16 | 6,503 1.41 31.80 17 | 6,011 1.31 33.10 18 | 5,501 1.19 34.30 19 | 5,113 1.11 35.41 20 | 5,088 1.10 36.51 21 | 5,094 1.11 37.62 22 | 5,030 1.09 38.71 23 | 5,161 1.12 39.83 24 | 5,132 1.11 40.95 25 | 5,460 1.19 42.13 26 | 5,240 1.14 43.27 27 | 5,025 1.09 44.36 28 | 4,934 1.07 45.43 29 | 5,065 1.10 46.53 30 | 5,131 1.11 47.65 31 | 4,998 1.09 48.73 32 | 4,839 1.05 49.78 33 | 5,137 1.12 50.90 34 | 5,303 1.15 52.05 35 | 5,898 1.28 53.33 36 | 5,881 1.28 54.61 37 | 5,572 1.21 55.82 38 | 5,615 1.22 57.04 39 | 5,598 1.22 58.25 40 | 6,227 1.35 59.61 41 | 6,153 1.34 60.94 42 | 6,253 1.36 62.30 43 | 6,305 1.37 63.67 44 | 6,224 1.35 65.02 45 | 6,627 1.44 66.46 46 | 6,509 1.41 67.88 47 | 6,371 1.38 69.26 48 | 6,444 1.40 70.66 49 | 6,338 1.38 72.03 50 | 6,495 1.41 73.45 51 | 6,252 1.36 74.80 52 | 5,792 1.26 76.06 53 | 5,805 1.26 77.32 54 | 5,624 1.22 78.54 55 | 5,569 1.21 79.75 56 | 5,346 1.16 80.91 57 | 5,040 1.09 82.01 58 | 5,308 1.15 83.16 59 | 5,207 1.13 84.29 60 | 4,096 0.89 85.18 61 | 4,012 0.87 86.05 62 | 3,726 0.81 86.86 63 | 4,048 0.88 87.74 64 | 3,594 0.78 88.52 65 | 3,567 0.77 89.30 66 | 3,442 0.75 90.04 67 | 2,885 0.63 90.67 68 | 2,948 0.64 91.31 69 | 2,771 0.60 91.91 70 | 2,738 0.59 92.51 71 | 2,583 0.56 93.07 72 | 2,489 0.54 93.61 73 | 2,292 0.50 94.11 74 | 2,379 0.52 94.62 75 | 2,369 0.51 95.14 76 | 2,325 0.50 95.64 77 | 2,397 0.52 96.16 78 | 2,122 0.46 96.62 79 | 1,789 0.39 97.01 80 | 7,971 1.73 98.74 85 | 5,790 1.26 100.00 ------------+----------------------------------- Total | 460,465 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 48,133 34.40 34.40 0 | 5,047 3.61 38.01 1 | 5,346 3.82 41.83 2 | 5,530 3.95 45.78 3 | 5,647 4.04 49.82 4 | 5,588 3.99 53.81 5 | 5,605 4.01 57.82 6 | 5,677 4.06 61.88 7 | 5,741 4.10 65.98 8 | 5,706 4.08 70.06 9 | 5,687 4.06 74.12 10 | 5,841 4.17 78.30 11 | 5,718 4.09 82.38 12 | 6,066 4.34 86.72 13 | 6,145 4.39 91.11 14 | 6,206 4.44 95.55 15 | 6,231 4.45 100.00 ------------+----------------------------------- Total | 139,914 100.00 (139914 observations deleted) (0 observations deleted) obs 320551 after keeping age>15&age!=. infile successful no observations (38 real changes made, 38 to missing) (54210 real changes made, 54210 to missing) (319573 real changes made, 319573 to missing) (319573 real changes made, 319573 to missing) (0 real changes made) (0 real changes made) (159671 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (160880 real changes made) Geography (320551 real changes made) dropping cmsacode msafips smsa93 smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (3022 real changes made, 3022 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (60092 real changes made, 60092 to missing) (294408 real changes made, 294408 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (148148 real changes made, 148148 to missing) if 2006 > 1983 & 2006 < 1989 { (0 real changes made) (119338 real changes made, 119338 to missing) (119214 real changes made, 119214 to missing) (119214 missing values generated) (119214 missing values generated) (119214 missing values generated) (119214 missing values generated) (ch02: 80766 changes made) (ch35: 91072 changes made) (ch613: 91072 changes made) (ch1417: 91072 changes made) (119214 missing values generated) (16558 real changes made) (0 real changes made) (222294 real changes made, 222294 to missing) (311309 real changes made, 311309 to missing) (234620 real changes made, 234620 to missing) (267094 real changes made, 267094 to missing) (307138 real changes made, 307138 to missing) (301205 real changes made, 301205 to missing) (320551 missing values generated) (1146 real changes made) (2436 real changes made) (4651 real changes made) (7919 real changes made) (8431 real changes made) (12769 real changes made) (13193 real changes made) (4859 real changes made) (34 real changes made) (32 real changes made) (59 real changes made) (691 real changes made) (1122 real changes made) (2538 real changes made) (3404 real changes made) (1362 real changes made) (89015 real changes made) (10951 real changes made) (22277 real changes made) (37884 real changes made) (10858 real changes made) (3961 real changes made) (40044 real changes made) (4673 real changes made) (8740 real changes made) (1947 real changes made) (17399 real changes made) (8156 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (285915 real changes made, 285915 to missing) (0 real changes made) (286952 real changes made, 286952 to missing) (314008 real changes made, 314008 to missing) (319099 real changes made, 319099 to missing) (320179 real changes made, 320179 to missing) Employment (2369 real changes made, 2369 to missing) (315378 real changes made, 315378 to missing) (141890 real changes made, 141890 to missing) (100082 real changes made, 100082 to missing) (100082 real changes made, 100082 to missing) (100082 real changes made, 100082 to missing) docc80 ** The renaming is part of the Census reweighting ; docc00 (100082 missing values generated) recode docc00 (docc00: 220469 changes made) dind (100082 missing values generated) (dind02: 220469 changes made) Wages (141890 real changes made, 141890 to missing) (0 real changes made) (212975 real changes made, 212975 to missing) (0 real changes made) (0 real changes made) (141890 real changes made) (216062 real changes made) (100082 real changes made, 100082 to missing) (311666 real changes made, 311666 to missing) (117956 real changes made) (141890 real changes made) (0 real changes made) (117956 real changes made, 117956 to missing) (1324 real changes made, 1324 to missing) (319302 real changes made, 319302 to missing) (212918 real changes made, 212918 to missing) (141890 real changes made, 141890 to missing) Hours, Unions (305536 real changes made, 305536 to missing) (312136 real changes made, 312136 to missing) (295631 real changes made, 295631 to missing) (272159 real changes made, 272159 to missing) (295631 real changes made, 295631 to missing) (1324 real changes made, 1324 to missing) (126371 real changes made, 126371 to missing) (107 real changes made) (17316 real changes made, 17316 to missing) (272706 real changes made, 272706 to missing) (141890 real changes made, 141890 to missing) (163313 real changes made, 163313 to missing) spouse was int now byte hourslw was int now byte ym_file was float now int ym was float now int ch02 was int now byte ch35 was int now byte ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc00 was int now byte dind02 was float now byte serial was str2 now str1 file /homes/data/morg/annual/morg06.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hhid | 0 intmonth | 320551 6.505118 3.457604 1 12 hurespli | 320513 1.482673 .85113 1 15 minsamp | 320551 6.007543 1.999989 4 8 hrlonglk | 320551 1.991808 .1277389 0 2 -------------+-------------------------------------------------------- hrsample | 0 hrhhid2 | 0 serial | 0 hhnum | 320551 1.056696 .2573008 1 7 state | 320551 53.80021 26.37038 11 95 -------------+-------------------------------------------------------- stfips | 320551 28.00428 15.84585 1 56 cbsafips | 320551 25427.68 21219.9 0 79600 county | 320551 29.18149 68.41074 0 810 centcity | 260459 1.981974 .7378426 1 3 smsastat | 317529 1.216021 .4115296 1 2 -------------+-------------------------------------------------------- icntcity | 26143 1.481926 1.029464 1 7 smsa04 | 320551 3.523711 2.588623 0 7 relref95 | 320551 3.050669 3.09906 1 18 age | 320551 45.36094 18.02175 16 85 spouse | 172403 1.576985 .7056861 1 16 -------------+-------------------------------------------------------- sex | 320551 1.522382 .4994996 1 2 grade92 | 320551 39.91044 2.799219 31 46 race | 320551 1.386903 1.287788 1 21 ethnic | 34636 2.012213 1.417169 1 5 lineno | 320551 1.751038 1.051182 1 16 -------------+-------------------------------------------------------- famnum | 320551 .8004436 .4564338 0 4 pfamrel | 320551 1.376595 1.056126 0 4 marital | 320551 3.308647 2.629891 1 7 prpertyp | 320551 2.00413 .0641353 2 3 penatvty | 320551 86.62907 83.16337 57 555 -------------+-------------------------------------------------------- pemntvty | 320551 94.76957 90.68428 57 555 pefntvty | 320551 94.95183 90.75033 57 555 prcitshp | 320551 1.467358 1.203186 1 5 prcitflg | 320551 .1237463 1.663802 0 41 peinusyr | 320551 1.511915 4.279973 0 19 -------------+-------------------------------------------------------- selfproxy | 318182 1.526127 .5523509 1 3 lfsr94 | 319227 2.751979 2.345055 1 7 absent94 | 8415 5.96019 3.284571 4 14 uhourse | 185279 39.1009 11.26457 0 99 reason94 | 15015 5.07366 2.758502 1 13 -------------+-------------------------------------------------------- hourslw | 194180 39.00196 13.43493 1 99 laydur | 1249 7.733387 11.01544 1 108 dwrsn | 5173 7.653586 3.102316 1 11 why3594 | 47845 14.90164 7.104207 1 23 untype | 8885 3.49139 1.63877 1 6 -------------+-------------------------------------------------------- ftpt94 | 319227 2.640287 2.388918 1 12 class94 | 220469 4.128122 1.18027 1 8 agri | 220469 .0199892 .1399633 0 1 eligible | 320551 1.442644 .4967002 1 2 otc | 178661 1.854053 .3530539 1 2 -------------+-------------------------------------------------------- ernpdh2 | 320551 -.180065 1.292925 -3 2 paidhre | 178661 1.397557 .4893944 1 2 earnhre | 107576 1392.437 806.3551 25 9999 earnwke | 178661 735.5716 554.9437 0 2884.61 unionmme | 178661 1.880091 .3248556 1 2 -------------+-------------------------------------------------------- unioncov | 157238 1.985722 .1186337 1 2 schenr | 48392 1.485039 .4997813 1 2 studftpt | 24920 1.081059 .2729318 1 2 schlvl | 24920 1.476043 .4994358 1 2 earnwt | 320551 8565.804 4624.27 0 70030.82 -------------+-------------------------------------------------------- weight | 320551 2141.451 1149.851 0 17632.21 chldpres | 201337 2.305388 3.364486 0 15 ownchild | 201213 .8443888 1.126884 0 12 I25d | 178661 .310286 .4626119 0 1 I25c | 107633 .3442532 .4751263 0 1 -------------+-------------------------------------------------------- I25a | 320551 .3252618 3.387794 0 43 I25b | 320551 3.632012 11.79254 0 42 qstnum | 0 occurnum | 0 ged | 98257 1.094059 .2919129 1 2 -------------+-------------------------------------------------------- gedhigr | 9242 6.340727 1.211265 1 8 yrcoll | 85931 2.704426 .9961856 1 5 grprof | 53457 1.749088 .433542 1 2 gr6cor | 13413 1.348393 .4764791 1 2 ms123 | 19346 2.173834 .5872953 1 3 -------------+-------------------------------------------------------- cmpwgt | 320551 2141.586 1151.408 0 17085.54 ind02 | 220469 6108.715 2741.339 170 9890 occ00 | 220469 4332.803 2559.743 10 9840 vet1 | 33599 4.319385 1.866582 1 9 vet2 | 6543 4.431759 1.744506 2 9 -------------+-------------------------------------------------------- vet3 | 1452 4.921488 1.534588 3 9 vet4 | 372 6.577957 1.546005 4 9 hurhhscrn | 266341 1.995641 .0658793 1 2 purkat1 | 978 1 0 1 1 purkat2 | 978 1.732106 1.284428 1 6 -------------+-------------------------------------------------------- recnum | 320551 230438.1 133085.5 1 460465 year | 320551 2006 0 2006 2006 ym_file | 320551 557.5051 3.457604 552 563 ym | 320551 548.4825 6.915457 537 560 ch02 | 201337 .1161485 .3204038 0 1 -------------+-------------------------------------------------------- ch35 | 201337 .1226352 .3280188 0 1 ch613 | 201337 .2567139 .4368213 0 1 ch1417 | 201337 .1598464 .3664645 0 1 ch05 | 201337 .1983888 .3987875 0 1 ihigrdc | 320551 13.1314 3.005332 0 18 -------------+-------------------------------------------------------- docc00 | 220469 12.86485 6.647497 1 23 dind02 | 220469 30.05225 14.70029 1 52 . aef2 2007 07 03 dct_name aef03.dbd raw_name=../raw/morg07 (0 observations deleted) obs 458273 # of persons with age<=15 140066 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 49,864 10.88 10.88 0 | 4,834 1.05 11.94 1 | 5,396 1.18 13.11 2 | 5,212 1.14 14.25 3 | 5,716 1.25 15.50 4 | 5,437 1.19 16.68 5 | 5,586 1.22 17.90 6 | 5,726 1.25 19.15 7 | 5,602 1.22 20.37 8 | 5,738 1.25 21.63 9 | 5,593 1.22 22.85 10 | 5,705 1.24 24.09 11 | 5,838 1.27 25.37 12 | 5,980 1.30 26.67 13 | 5,775 1.26 27.93 14 | 5,944 1.30 29.23 15 | 6,120 1.34 30.56 16 | 6,138 1.34 31.90 17 | 6,271 1.37 33.27 18 | 5,406 1.18 34.45 19 | 5,088 1.11 35.56 20 | 4,822 1.05 36.61 21 | 4,951 1.08 37.69 22 | 4,885 1.07 38.76 23 | 4,871 1.06 39.82 24 | 5,134 1.12 40.94 25 | 5,344 1.17 42.11 26 | 5,222 1.14 43.25 27 | 5,274 1.15 44.40 28 | 4,952 1.08 45.48 29 | 4,950 1.08 46.56 30 | 5,351 1.17 47.73 31 | 4,920 1.07 48.80 32 | 4,957 1.08 49.88 33 | 4,728 1.03 50.92 34 | 5,037 1.10 52.01 35 | 5,373 1.17 53.19 36 | 5,774 1.26 54.45 37 | 5,837 1.27 55.72 38 | 5,526 1.21 56.93 39 | 5,503 1.20 58.13 40 | 5,779 1.26 59.39 41 | 5,738 1.25 60.64 42 | 5,957 1.30 61.94 43 | 6,177 1.35 63.29 44 | 6,187 1.35 64.64 45 | 6,335 1.38 66.02 46 | 6,378 1.39 67.41 47 | 6,400 1.40 68.81 48 | 6,228 1.36 70.17 49 | 6,212 1.36 71.52 50 | 6,491 1.42 72.94 51 | 6,090 1.33 74.27 52 | 5,912 1.29 75.56 53 | 5,725 1.25 76.81 54 | 5,673 1.24 78.05 55 | 5,582 1.22 79.26 56 | 5,450 1.19 80.45 57 | 5,352 1.17 81.62 58 | 4,982 1.09 82.71 59 | 5,223 1.14 83.85 60 | 5,261 1.15 85.00 61 | 4,009 0.87 85.87 62 | 3,860 0.84 86.71 63 | 3,731 0.81 87.53 64 | 3,970 0.87 88.39 65 | 3,760 0.82 89.21 66 | 3,306 0.72 89.94 67 | 3,183 0.69 90.63 68 | 2,945 0.64 91.27 69 | 2,938 0.64 91.91 70 | 2,768 0.60 92.52 71 | 2,651 0.58 93.10 72 | 2,541 0.55 93.65 73 | 2,316 0.51 94.16 74 | 2,268 0.49 94.65 75 | 2,246 0.49 95.14 76 | 2,156 0.47 95.61 77 | 2,450 0.53 96.15 78 | 2,076 0.45 96.60 79 | 1,698 0.37 96.97 80 | 7,992 1.74 98.71 85 | 5,897 1.29 100.00 ------------+----------------------------------- Total | 458,273 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 49,864 35.60 35.60 0 | 4,834 3.45 39.05 1 | 5,396 3.85 42.90 2 | 5,212 3.72 46.63 3 | 5,716 4.08 50.71 4 | 5,437 3.88 54.59 5 | 5,586 3.99 58.58 6 | 5,726 4.09 62.66 7 | 5,602 4.00 66.66 8 | 5,738 4.10 70.76 9 | 5,593 3.99 74.75 10 | 5,705 4.07 78.83 11 | 5,838 4.17 82.99 12 | 5,980 4.27 87.26 13 | 5,775 4.12 91.39 14 | 5,944 4.24 95.63 15 | 6,120 4.37 100.00 ------------+----------------------------------- Total | 140,066 100.00 (140066 observations deleted) (0 observations deleted) obs 318207 after keeping age>15&age!=. infile successful no observations (18 real changes made, 18 to missing) (276407 real changes made, 276407 to missing) (287876 real changes made, 287876 to missing) (0 real changes made) (0 real changes made) (159217 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (158990 real changes made) Geography (318207 real changes made) dropping cmsacode msafips smsa93 smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (2819 real changes made, 2819 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (59571 real changes made, 59571 to missing) (292000 real changes made, 292000 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (146919 real changes made, 146919 to missing) if 2007 > 1983 & 2007 < 1989 { (0 real changes made) (117850 real changes made, 117850 to missing) (117719 real changes made, 117719 to missing) (117719 missing values generated) (117719 missing values generated) (117719 missing values generated) (117719 missing values generated) (ch02: 80104 changes made) (ch35: 89861 changes made) (ch613: 89861 changes made) (ch1417: 89861 changes made) (117719 missing values generated) (16427 real changes made) (0 real changes made) (220502 real changes made, 220502 to missing) (310235 real changes made, 310235 to missing) (233153 real changes made, 233153 to missing) (263549 real changes made, 263549 to missing) (304610 real changes made, 304610 to missing) (298275 real changes made, 298275 to missing) (318207 missing values generated) (988 real changes made) (2173 real changes made) (4465 real changes made) (7504 real changes made) (7678 real changes made) (12064 real changes made) (13134 real changes made) (4694 real changes made) (40 real changes made) (68 real changes made) (56 real changes made) (600 real changes made) (928 real changes made) (2153 real changes made) (2891 real changes made) (1236 real changes made) (89733 real changes made) (10800 real changes made) (22187 real changes made) (37633 real changes made) (10640 real changes made) (3794 real changes made) (41061 real changes made) (4539 real changes made) (9058 real changes made) (1750 real changes made) (18182 real changes made) (8158 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (283486 real changes made, 283486 to missing) (0 real changes made) (286005 real changes made, 286005 to missing) (312096 real changes made, 312096 to missing) (316746 real changes made, 316746 to missing) (317828 real changes made, 317828 to missing) Employment (3494 real changes made, 3494 to missing) (313231 real changes made, 313231 to missing) (141184 real changes made, 141184 to missing) (100066 real changes made, 100066 to missing) (100066 real changes made, 100066 to missing) (100066 real changes made, 100066 to missing) docc80 ** The renaming is part of the Census reweighting ; docc00 (100066 missing values generated) recode docc00 (docc00: 218141 changes made) dind (100066 missing values generated) (dind02: 218141 changes made) Wages (141184 real changes made, 141184 to missing) (0 real changes made) (213327 real changes made, 213327 to missing) (0 real changes made) (0 real changes made) (141184 real changes made) (214006 real changes made) (100066 real changes made, 100066 to missing) (309390 real changes made, 309390 to missing) (117592 real changes made) (141184 real changes made) (1 real change made, 1 to missing) (117592 real changes made, 117592 to missing) (1262 real changes made, 1262 to missing) (316781 real changes made, 316781 to missing) (213252 real changes made, 213252 to missing) (141184 real changes made, 141184 to missing) Hours, Unions (304084 real changes made, 304084 to missing) (309994 real changes made, 309994 to missing) (293243 real changes made, 293243 to missing) (270874 real changes made, 270874 to missing) (293243 real changes made, 293243 to missing) (1262 real changes made, 1262 to missing) (125805 real changes made, 125805 to missing) (103 real changes made) (15988 real changes made, 15988 to missing) (271546 real changes made, 271546 to missing) (141184 real changes made, 141184 to missing) (162487 real changes made, 162487 to missing) spouse was int now byte hourslw was int now byte ym_file was float now int ym was float now int ch02 was int now byte ch35 was int now byte ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc00 was int now byte dind02 was float now byte serial was str2 now str1 file /homes/data/morg/annual/morg07.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hhid | 0 intmonth | 318207 6.505859 3.447105 1 12 hurespli | 318189 1.469793 .8225014 0 15 minsamp | 318207 5.998573 2.000003 4 8 hrlonglk | 318207 1.989554 .1441631 0 2 -------------+-------------------------------------------------------- hrsample | 0 hrhhid2 | 0 serial | 0 hhnum | 318207 1.057095 .254552 1 8 state | 318207 53.93498 26.37437 11 95 -------------+-------------------------------------------------------- stfips | 318207 27.97079 15.8611 1 56 cbsafips | 318207 25383.37 21174.29 0 79600 county | 318207 29.16355 69.11789 0 810 centcity | 258636 1.97984 .7365917 1 3 smsastat | 315388 1.214368 .4103836 1 2 -------------+-------------------------------------------------------- icntcity | 26207 1.483382 1.024922 1 7 smsa04 | 318207 3.527443 2.586822 0 7 relref95 | 318207 3.042507 3.084113 1 18 age | 318207 45.57436 18.05479 16 85 spouse | 171288 1.578943 .7016989 1 15 -------------+-------------------------------------------------------- sex | 318207 1.522701 .4994852 1 2 grade92 | 318207 39.97534 2.774209 31 46 race | 318207 1.38085 1.250185 1 21 ethnic | 34721 2.007776 1.413601 1 5 lineno | 318207 1.737137 1.021054 1 16 -------------+-------------------------------------------------------- famnum | 318207 .8036153 .4625899 0 4 pfamrel | 318207 1.369926 1.049323 0 4 marital | 318207 3.306822 2.629453 1 7 prpertyp | 318207 2.003966 .0628511 2 3 penatvty | 318207 85.87482 80.13212 57 555 -------------+-------------------------------------------------------- pemntvty | 318207 94.06237 87.87908 57 555 pefntvty | 318207 94.19301 87.9265 57 555 prcitshp | 318207 1.470386 1.205026 1 5 prcitflg | 318207 .1377531 1.762597 0 41 peinusyr | 318207 1.56368 4.393892 0 19 -------------+-------------------------------------------------------- selfproxy | 314713 1.487768 .5061681 1 3 lfsr94 | 316945 2.758977 2.347511 1 7 absent94 | 8213 6.012906 3.3148 4 14 uhourse | 184627 39.0649 11.17748 0 99 reason94 | 14123 5.122424 2.920697 1 13 -------------+-------------------------------------------------------- hourslw | 192402 39.03202 13.37949 1 99 laydur | 1426 7.262973 9.44184 1 104 dwrsn | 4976 7.660772 3.074662 1 11 why3594 | 46661 15.05836 7.029928 1 23 untype | 8817 3.406374 1.666533 1 6 -------------+-------------------------------------------------------- ftpt94 | 316945 2.62897 2.384734 1 12 class94 | 218141 4.12232 1.182303 1 8 agri | 218141 .0189556 .1363686 0 1 eligible | 318207 1.443686 .4968194 1 2 otc | 177023 1.856561 .350521 1 2 -------------+-------------------------------------------------------- ernpdh2 | 318207 -.1640787 1.300256 -3 2 paidhre | 177023 1.407111 .4912972 1 2 earnhre | 104879 1442.296 844.2841 6 9999 earnwke | 177023 762.7192 571.6214 0 2884.61 unionmme | 177023 1.87966 .32536 1 2 -------------+-------------------------------------------------------- unioncov | 155720 1.984967 .121686 1 2 schenr | 47333 1.472588 .4992533 1 2 studftpt | 24964 1.074828 .2631185 1 2 schlvl | 24964 1.475845 .4994262 1 2 earnwt | 318207 8744.003 4753.599 0 58091.54 -------------+-------------------------------------------------------- weight | 318207 2186.001 1182.987 0 14087.87 chldpres | 200488 2.273483 3.338734 0 15 ownchild | 200357 .8373004 1.126035 0 11 I25d | 177023 .3022376 .4592289 0 1 I25c | 104955 .3296556 .4700903 0 1 -------------+-------------------------------------------------------- I25a | 318207 .300911 3.259618 0 43 I25b | 318207 3.511438 11.61283 0 42 qstnum | 0 occurnum | 0 ged | 97705 1.081593 .2737444 1 2 -------------+-------------------------------------------------------- gedhigr | 7972 6.325514 1.272658 1 8 yrcoll | 85054 2.699497 .9909615 1 5 grprof | 54658 1.751235 .4323013 1 2 gr6cor | 13597 1.333824 .4715949 1 2 ms123 | 19932 2.188591 .5732696 1 3 -------------+-------------------------------------------------------- cmpwgt | 318207 2186.204 1184.521 0 15554.38 ind02 | 218141 6132.358 2737.374 170 9890 occ00 | 218141 4292.599 2556.784 10 9840 vet1 | 32202 4.320353 1.843891 1 9 vet2 | 6111 4.257568 1.749659 1 9 -------------+-------------------------------------------------------- vet3 | 1461 4.374401 1.698549 1 9 vet4 | 379 5.773087 1.93853 1 9 linedad | 41800 1.704713 .9326243 1 12 linemom | 30331 1.134549 .3931455 1 3 recnum | 318207 229512.7 132406.8 1 458272 -------------+-------------------------------------------------------- year | 318207 2007 0 2007 2007 ym_file | 318207 569.5059 3.447105 564 575 ym | 318207 560.5101 6.906442 549 572 ch02 | 200488 .1130741 .3166841 0 1 ch35 | 200488 .1227854 .3281915 0 1 -------------+-------------------------------------------------------- ch613 | 200488 .254494 .4355775 0 1 ch1417 | 200488 .1569969 .3637988 0 1 ch05 | 200488 .1950092 .3962088 0 1 ihigrdc | 318207 13.20321 2.973133 0 18 docc00 | 218141 12.76329 6.658672 1 23 -------------+-------------------------------------------------------- dind02 | 218141 30.19256 14.66271 1 52 . aef2 2008 08 03 dct_name aef03.dbd raw_name=../raw/morg08 (0 observations deleted) obs 454940 # of persons with age<=15 137599 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 49,729 10.93 10.93 0 | 4,813 1.06 11.99 1 | 5,249 1.15 13.14 2 | 5,342 1.17 14.32 3 | 5,360 1.18 15.50 4 | 5,564 1.22 16.72 5 | 5,401 1.19 17.91 6 | 5,439 1.20 19.10 7 | 5,686 1.25 20.35 8 | 5,516 1.21 21.56 9 | 5,529 1.22 22.78 10 | 5,513 1.21 23.99 11 | 5,525 1.21 25.20 12 | 5,744 1.26 26.47 13 | 5,775 1.27 27.74 14 | 5,520 1.21 28.95 15 | 5,894 1.30 30.25 16 | 6,091 1.34 31.58 17 | 5,989 1.32 32.90 18 | 5,617 1.23 34.14 19 | 4,964 1.09 35.23 20 | 4,833 1.06 36.29 21 | 4,728 1.04 37.33 22 | 5,032 1.11 38.43 23 | 5,155 1.13 39.57 24 | 4,929 1.08 40.65 25 | 5,169 1.14 41.79 26 | 5,243 1.15 42.94 27 | 5,221 1.15 44.09 28 | 5,371 1.18 45.27 29 | 4,957 1.09 46.36 30 | 5,108 1.12 47.48 31 | 5,069 1.11 48.59 32 | 4,773 1.05 49.64 33 | 5,013 1.10 50.75 34 | 4,692 1.03 51.78 35 | 5,159 1.13 52.91 36 | 5,370 1.18 54.09 37 | 5,593 1.23 55.32 38 | 5,689 1.25 56.57 39 | 5,504 1.21 57.78 40 | 5,549 1.22 59.00 41 | 5,496 1.21 60.21 42 | 5,599 1.23 61.44 43 | 5,972 1.31 62.75 44 | 6,113 1.34 64.10 45 | 6,232 1.37 65.47 46 | 6,192 1.36 66.83 47 | 6,326 1.39 68.22 48 | 6,188 1.36 69.58 49 | 6,176 1.36 70.93 50 | 6,258 1.38 72.31 51 | 6,280 1.38 73.69 52 | 6,107 1.34 75.03 53 | 5,851 1.29 76.32 54 | 5,819 1.28 77.60 55 | 5,622 1.24 78.83 56 | 5,509 1.21 80.05 57 | 5,349 1.18 81.22 58 | 5,185 1.14 82.36 59 | 5,034 1.11 83.47 60 | 5,073 1.12 84.58 61 | 5,118 1.12 85.71 62 | 3,977 0.87 86.58 63 | 3,673 0.81 87.39 64 | 3,700 0.81 88.20 65 | 3,987 0.88 89.08 66 | 3,430 0.75 89.83 67 | 3,135 0.69 90.52 68 | 3,059 0.67 91.19 69 | 3,051 0.67 91.86 70 | 2,747 0.60 92.47 71 | 2,535 0.56 93.03 72 | 2,505 0.55 93.58 73 | 2,400 0.53 94.10 74 | 2,220 0.49 94.59 75 | 2,272 0.50 95.09 76 | 2,171 0.48 95.57 77 | 2,286 0.50 96.07 78 | 2,140 0.47 96.54 79 | 1,673 0.37 96.91 80 | 7,977 1.75 98.66 85 | 6,086 1.34 100.00 ------------+----------------------------------- Total | 454,940 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 49,729 36.14 36.14 0 | 4,813 3.50 39.64 1 | 5,249 3.81 43.45 2 | 5,342 3.88 47.34 3 | 5,360 3.90 51.23 4 | 5,564 4.04 55.27 5 | 5,401 3.93 59.20 6 | 5,439 3.95 63.15 7 | 5,686 4.13 67.28 8 | 5,516 4.01 71.29 9 | 5,529 4.02 75.31 10 | 5,513 4.01 79.32 11 | 5,525 4.02 83.33 12 | 5,744 4.17 87.51 13 | 5,775 4.20 91.70 14 | 5,520 4.01 95.72 15 | 5,894 4.28 100.00 ------------+----------------------------------- Total | 137,599 100.00 (137599 observations deleted) (0 observations deleted) obs 317341 after keeping age>15&age!=. infile successful no observations (10 real changes made, 10 to missing) (275017 real changes made, 275017 to missing) (286494 real changes made, 286494 to missing) (0 real changes made) (0 real changes made) (157851 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (159490 real changes made) Geography (317341 real changes made) dropping cmsacode msafips smsa93 smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (2710 real changes made, 2710 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (59370 real changes made, 59370 to missing) (291336 real changes made, 291336 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (147657 real changes made, 147657 to missing) if 2008 > 1983 & 2008 < 1989 { (0 real changes made) (118895 real changes made, 118895 to missing) (118744 real changes made, 118744 to missing) (118744 missing values generated) (118744 missing values generated) (118744 missing values generated) (118744 missing values generated) (ch02: 77595 changes made) (ch35: 87400 changes made) (ch613: 87400 changes made) (ch1417: 87400 changes made) (118744 missing values generated) (15599 real changes made) (0 real changes made) (220821 real changes made, 220821 to missing) (310502 real changes made, 310502 to missing) (231212 real changes made, 231212 to missing) (262004 real changes made, 262004 to missing) (304527 real changes made, 304527 to missing) (296703 real changes made, 296703 to missing) (317341 missing values generated) (990 real changes made) (2122 real changes made) (4369 real changes made) (6870 real changes made) (7420 real changes made) (11793 real changes made) (12900 real changes made) (4296 real changes made) (31 real changes made) (75 real changes made) (42 real changes made) (470 real changes made) (832 real changes made) (1816 real changes made) (2481 real changes made) (1092 real changes made) (89681 real changes made) (11093 real changes made) (22560 real changes made) (38433 real changes made) (10365 real changes made) (3678 real changes made) (42523 real changes made) (4339 real changes made) (8475 real changes made) (1771 real changes made) (18867 real changes made) (7957 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (282168 real changes made, 282168 to missing) (0 real changes made) (286065 real changes made, 286065 to missing) (311715 real changes made, 311715 to missing) (315915 real changes made, 315915 to missing) (317012 real changes made, 317012 to missing) Employment (3538 real changes made, 3538 to missing) (312047 real changes made, 312047 to missing) (142444 real changes made, 142444 to missing) (100199 real changes made, 100199 to missing) (100199 real changes made, 100199 to missing) (100199 real changes made, 100199 to missing) docc80 ** The renaming is part of the Census reweighting ; docc00 (100199 missing values generated) recode docc00 (docc00: 217142 changes made) dind (100199 missing values generated) (dind02: 217142 changes made) Wages (142444 real changes made, 142444 to missing) (0 real changes made) (214355 real changes made, 214355 to missing) (0 real changes made) (0 real changes made) (142444 real changes made) (212963 real changes made) (100199 real changes made, 100199 to missing) (306488 real changes made, 306488 to missing) (119360 real changes made) (142444 real changes made) (0 real changes made) (119360 real changes made, 119360 to missing) (1285 real changes made, 1285 to missing) (315699 real changes made, 315699 to missing) (214295 real changes made, 214295 to missing) (142444 real changes made, 142444 to missing) Hours, Unions (302452 real changes made, 302452 to missing) (309521 real changes made, 309521 to missing) (292498 real changes made, 292498 to missing) (270266 real changes made, 270266 to missing) (292498 real changes made, 292498 to missing) (1285 real changes made, 1285 to missing) (127180 real changes made, 127180 to missing) (96 real changes made) (15597 real changes made, 15597 to missing) (269678 real changes made, 269678 to missing) (142444 real changes made, 142444 to missing) (164211 real changes made, 164211 to missing) spouse was int now byte hourslw was int now byte ym_file was float now int ym was float now int ch02 was int now byte ch35 was int now byte ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc00 was int now byte dind02 was float now byte serial was str2 now str1 file /homes/data/morg/annual/morg08.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hhid | 0 intmonth | 317341 6.503802 3.447582 1 12 hurespli | 317331 1.469989 .8253365 0 16 minsamp | 317341 6.01033 1.999976 4 8 hrlonglk | 317341 1.991908 .1269608 0 2 -------------+-------------------------------------------------------- hrsample | 0 hrhhid2 | 0 serial | 0 hhnum | 317341 1.052445 .2383489 1 7 state | 317341 53.8014 26.41693 11 95 -------------+-------------------------------------------------------- stfips | 317341 27.97212 15.84113 1 56 cbsafips | 317341 25513.1 21210.28 0 79600 county | 317341 29.19893 68.38575 0 810 centcity | 257971 1.976307 .7342015 1 3 smsastat | 314631 1.211505 .4083762 1 2 -------------+-------------------------------------------------------- icntcity | 26005 1.469717 1.012675 1 7 smsa04 | 317341 3.544395 2.582666 0 7 relref95 | 317341 3.058974 3.096383 1 18 age | 317341 45.71746 18.09779 16 85 spouse | 169684 1.572694 .6815189 1 15 -------------+-------------------------------------------------------- sex | 317341 1.522113 .4995115 1 2 grade92 | 317341 40.02379 2.760345 31 46 race | 317341 1.377354 1.224503 1 21 ethnic | 35173 1.987547 1.406902 1 5 lineno | 317341 1.735893 1.005453 1 16 -------------+-------------------------------------------------------- famnum | 317341 .8022222 .4639655 0 5 pfamrel | 317341 1.373157 1.055741 0 4 marital | 317341 3.330625 2.636646 1 7 prpertyp | 317341 2.004049 .063505 2 3 penatvty | 317341 85.71314 78.93154 57 555 -------------+-------------------------------------------------------- pemntvty | 317341 93.99046 86.65103 57 555 pefntvty | 317341 94.14564 86.71184 57 555 prcitshp | 317341 1.472293 1.204665 1 5 prcitflg | 317341 .1537211 1.870966 0 41 peinusyr | 317341 1.611216 4.514993 0 20 -------------+-------------------------------------------------------- selfproxy | 313803 1.489415 .5060598 1 3 lfsr94 | 316056 2.775587 2.343808 1 7 absent94 | 7820 6.113683 3.394848 4 14 uhourse | 182384 38.9015 11.13105 0 99 reason94 | 14889 4.860232 2.912596 1 13 -------------+-------------------------------------------------------- hourslw | 190161 38.7409 13.30814 1 99 laydur | 1642 7.127893 9.050779 1 104 dwrsn | 5294 7.549868 3.169389 1 11 why3594 | 47663 14.71529 7.159964 1 23 untype | 10853 3.295679 1.652388 1 6 -------------+-------------------------------------------------------- ftpt94 | 316056 2.686435 2.471307 1 12 class94 | 217142 4.117679 1.177798 1 8 agri | 217142 .0192455 .1373869 0 1 eligible | 317341 1.448867 .4973794 1 2 otc | 174897 1.858288 .3487555 1 2 -------------+-------------------------------------------------------- ernpdh2 | 317341 -.1615108 1.30045 -3 2 paidhre | 174897 1.410819 .4919839 1 2 earnhre | 102986 1493.973 869.068 2 9999 earnwke | 174897 791.9037 591.2725 0 2884.61 unionmme | 174897 1.875544 .3301021 1 2 -------------+-------------------------------------------------------- unioncov | 153130 1.983824 .1261517 1 2 schenr | 47075 1.472268 .4992356 1 2 studftpt | 24843 1.073019 .2601722 1 2 schlvl | 24843 1.477358 .4994971 1 2 earnwt | 317341 8840.51 4807.408 0 60252.18 -------------+-------------------------------------------------------- weight | 317341 2210.127 1194.637 0 13229.34 chldpres | 198597 2.225582 3.317107 0 15 ownchild | 198446 .8214829 1.121732 0 10 I25d | 174897 .3020292 .4591392 0 1 I25c | 103046 .335326 .4721066 0 1 -------------+-------------------------------------------------------- I25a | 317341 .3263177 3.426515 0 43 I25b | 317341 3.511273 11.61193 0 42 qstnum | 0 occurnum | 0 ged | 96520 1.070856 .2565851 1 2 -------------+-------------------------------------------------------- gedhigr | 6839 6.338061 1.275939 1 8 yrcoll | 86129 2.686226 .984798 1 5 grprof | 55337 1.768437 .421835 1 2 gr6cor | 12814 1.338614 .4732568 1 2 ms123 | 20638 2.189553 .570319 1 3 -------------+-------------------------------------------------------- cmpwgt | 317341 2210.194 1195.895 0 13245.38 ind02 | 217142 6171.181 2721.826 170 9890 occ00 | 217142 4269.16 2564.034 10 9840 vet1 | 31276 4.294507 1.834794 1 9 vet2 | 5626 3.972805 1.676019 1 9 -------------+-------------------------------------------------------- vet3 | 1426 3.735624 1.696504 1 9 vet4 | 329 4.732523 1.960324 1 9 linedad | 42324 1.682544 .8956186 1 12 linemom | 30847 1.143904 .4017327 1 3 recnum | 317341 227649.3 131348.8 1 454938 -------------+-------------------------------------------------------- year | 317341 2008 0 2008 2008 ym_file | 317341 581.5038 3.447582 576 587 ym | 317341 572.4728 6.931714 561 584 ch02 | 198597 .1131085 .3167261 0 1 ch35 | 198597 .1192868 .3241265 0 1 -------------+-------------------------------------------------------- ch613 | 198597 .2492636 .4325878 0 1 ch1417 | 198597 .1534968 .3604666 0 1 ch05 | 198597 .1916545 .3936036 0 1 ihigrdc | 317341 13.24626 2.951155 0 18 docc00 | 217142 12.69061 6.677357 1 23 -------------+-------------------------------------------------------- dind02 | 217142 30.38392 14.61857 1 52 . aef2 2009 09 03 dct_name aef03.dbd raw_name=../raw/morg09 (0 observations deleted) obs 457410 # of persons with age<=15 136469 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 48,572 10.62 10.62 0 | 4,780 1.05 11.66 1 | 5,258 1.15 12.81 2 | 5,347 1.17 13.98 3 | 5,505 1.20 15.19 4 | 5,418 1.18 16.37 5 | 5,618 1.23 17.60 6 | 5,487 1.20 18.80 7 | 5,498 1.20 20.00 8 | 5,675 1.24 21.24 9 | 5,679 1.24 22.48 10 | 5,569 1.22 23.70 11 | 5,593 1.22 24.92 12 | 5,709 1.25 26.17 13 | 5,543 1.21 27.38 14 | 5,513 1.21 28.59 15 | 5,705 1.25 29.84 16 | 6,029 1.32 31.15 17 | 5,875 1.28 32.44 18 | 5,575 1.22 33.66 19 | 5,260 1.15 34.81 20 | 4,871 1.06 35.87 21 | 4,853 1.06 36.93 22 | 4,866 1.06 38.00 23 | 4,995 1.09 39.09 24 | 5,209 1.14 40.23 25 | 5,177 1.13 41.36 26 | 5,122 1.12 42.48 27 | 5,196 1.14 43.61 28 | 5,265 1.15 44.77 29 | 5,382 1.18 45.94 30 | 5,308 1.16 47.10 31 | 5,169 1.13 48.23 32 | 5,017 1.10 49.33 33 | 4,895 1.07 50.40 34 | 5,183 1.13 51.53 35 | 4,932 1.08 52.61 36 | 5,168 1.13 53.74 37 | 5,383 1.18 54.92 38 | 5,608 1.23 56.14 39 | 5,675 1.24 57.38 40 | 5,757 1.26 58.64 41 | 5,416 1.18 59.83 42 | 5,461 1.19 61.02 43 | 5,621 1.23 62.25 44 | 6,027 1.32 63.57 45 | 6,238 1.36 64.93 46 | 6,180 1.35 66.28 47 | 6,200 1.36 67.64 48 | 6,365 1.39 69.03 49 | 6,337 1.39 70.41 50 | 6,380 1.39 71.81 51 | 6,184 1.35 73.16 52 | 6,191 1.35 74.51 53 | 6,140 1.34 75.86 54 | 5,818 1.27 77.13 55 | 5,965 1.30 78.43 56 | 5,627 1.23 79.66 57 | 5,412 1.18 80.85 58 | 5,298 1.16 82.00 59 | 4,996 1.09 83.10 60 | 5,106 1.12 84.21 61 | 4,912 1.07 85.29 62 | 5,111 1.12 86.40 63 | 3,909 0.85 87.26 64 | 3,591 0.79 88.04 65 | 3,759 0.82 88.87 66 | 3,756 0.82 89.69 67 | 3,280 0.72 90.40 68 | 3,142 0.69 91.09 69 | 3,093 0.68 91.77 70 | 2,852 0.62 92.39 71 | 2,560 0.56 92.95 72 | 2,603 0.57 93.52 73 | 2,413 0.53 94.05 74 | 2,323 0.51 94.56 75 | 2,209 0.48 95.04 76 | 2,157 0.47 95.51 77 | 2,239 0.49 96.00 78 | 2,138 0.47 96.47 79 | 1,658 0.36 96.83 80 | 8,184 1.79 98.62 85 | 6,320 1.38 100.00 ------------+----------------------------------- Total | 457,410 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 48,572 35.59 35.59 0 | 4,780 3.50 39.09 1 | 5,258 3.85 42.95 2 | 5,347 3.92 46.87 3 | 5,505 4.03 50.90 4 | 5,418 3.97 54.87 5 | 5,618 4.12 58.99 6 | 5,487 4.02 63.01 7 | 5,498 4.03 67.04 8 | 5,675 4.16 71.19 9 | 5,679 4.16 75.36 10 | 5,569 4.08 79.44 11 | 5,593 4.10 83.53 12 | 5,709 4.18 87.72 13 | 5,543 4.06 91.78 14 | 5,513 4.04 95.82 15 | 5,705 4.18 100.00 ------------+----------------------------------- Total | 136,469 100.00 (136469 observations deleted) (0 observations deleted) obs 320941 after keeping age>15&age!=. infile successful no observations (19 real changes made, 19 to missing) (277675 real changes made, 277675 to missing) (289291 real changes made, 289291 to missing) (0 real changes made) (0 real changes made) (161189 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (159752 real changes made) Geography (289530 real changes made) dropping cmsacode msafips smsa93 smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (2713 real changes made, 2713 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (60542 real changes made, 60542 to missing) (294752 real changes made, 294752 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (150294 real changes made, 150294 to missing) if 2009 > 1983 & 2009 < 1989 { (0 real changes made) (120947 real changes made, 120947 to missing) (120811 real changes made, 120811 to missing) (120811 missing values generated) (120811 missing values generated) (120811 missing values generated) (120811 missing values generated) (ch02: 77035 changes made) (ch35: 86751 changes made) (ch613: 86751 changes made) (ch1417: 86751 changes made) (120811 missing values generated) (15859 real changes made) (0 real changes made) (223808 real changes made, 223808 to missing) (314266 real changes made, 314266 to missing) (233415 real changes made, 233415 to missing) (264861 real changes made, 264861 to missing) (308050 real changes made, 308050 to missing) (299708 real changes made, 299708 to missing) (320941 missing values generated) (999 real changes made) (2195 real changes made) (4219 real changes made) (6821 real changes made) (7289 real changes made) (11690 real changes made) (13188 real changes made) (4345 real changes made) (27 real changes made) (65 real changes made) (43 real changes made) (456 real changes made) (799 real changes made) (1735 real changes made) (2446 real changes made) (1104 real changes made) (90458 real changes made) (11142 real changes made) (22918 real changes made) (39250 real changes made) (10387 real changes made) (3829 real changes made) (43189 real changes made) (4400 real changes made) (8491 real changes made) (1809 real changes made) (19424 real changes made) (8223 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (284858 real changes made, 284858 to missing) (0 real changes made) (290197 real changes made, 290197 to missing) (315256 real changes made, 315256 to missing) (319532 real changes made, 319532 to missing) (320656 real changes made, 320656 to missing) Employment (3657 real changes made, 3657 to missing) (314713 real changes made, 314713 to missing) (151214 real changes made, 151214 to missing) (103660 real changes made, 103660 to missing) (103660 real changes made, 103660 to missing) (103660 real changes made, 103660 to missing) docc80 ** The renaming is part of the Census reweighting ; docc00 (103660 missing values generated) recode docc00 (docc00: 217281 changes made) dind (103660 missing values generated) (dind02: 217281 changes made) Wages (151214 real changes made, 151214 to missing) (0 real changes made) (220962 real changes made, 220962 to missing) (0 real changes made) (0 real changes made) (151214 real changes made) (213049 real changes made) (103660 real changes made, 103660 to missing) (303298 real changes made, 303298 to missing) (129052 real changes made) (151214 real changes made) (0 real changes made) (129052 real changes made, 129052 to missing) (1315 real changes made, 1315 to missing) (318697 real changes made, 318697 to missing) (220926 real changes made, 220926 to missing) (151214 real changes made, 151214 to missing) Hours, Unions (302510 real changes made, 302510 to missing) (313140 real changes made, 313140 to missing) (295541 real changes made, 295541 to missing) (273698 real changes made, 273698 to missing) (295541 real changes made, 295541 to missing) (1315 real changes made, 1315 to missing) (136853 real changes made, 136853 to missing) (90 real changes made) (15587 real changes made, 15587 to missing) (267279 real changes made, 267279 to missing) (151214 real changes made, 151214 to missing) (172196 real changes made, 172196 to missing) spouse was int now byte hourslw was int now byte ym_file was float now int ym was float now int ch02 was int now byte ch35 was int now byte ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc00 was int now byte dind02 was float now byte file /homes/data/morg/annual/morg09.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hhid | 0 intmonth | 320941 6.520149 3.439678 1 12 hurespli | 320922 1.432498 .8008346 0 15 minsamp | 320941 5.991045 1.999983 4 8 hrlonglk | 320941 1.991924 .1268358 0 2 -------------+-------------------------------------------------------- hrsample | 0 hrhhid2 | 0 serial | 0 hhnum | 320941 1.049838 .2340296 1 8 state | 320941 53.73105 26.4754 11 95 -------------+-------------------------------------------------------- stfips | 320941 27.9975 15.85146 1 56 cbsafips | 320941 25552.53 21241.87 0 79600 county | 320941 29.12074 68.37098 0 810 centcity | 260399 1.975749 .7344521 1 3 smsastat | 318228 1.211015 .4080299 1 2 -------------+-------------------------------------------------------- icntcity | 26189 1.47035 1.026684 1 7 smsa04 | 320941 3.544028 2.580319 0 7 relref95 | 320941 3.084227 3.121044 1 18 age | 320941 45.85441 18.1242 16 85 spouse | 170647 1.577315 .6979004 1 15 -------------+-------------------------------------------------------- sex | 320941 1.521021 .4995587 1 2 grade92 | 320941 40.04772 2.756636 31 46 race | 320941 1.385043 1.251187 1 21 ethnic | 36083 1.979187 1.395903 1 5 lineno | 320941 1.746418 1.026294 1 16 -------------+-------------------------------------------------------- famnum | 320941 .8031539 .4651501 0 5 pfamrel | 320941 1.378328 1.061454 0 4 marital | 320941 3.35008 2.642111 1 7 prpertyp | 320941 2.004097 .0638792 2 3 penatvty | 320941 85.63588 78.55706 57 555 -------------+-------------------------------------------------------- pemntvty | 320941 94.11158 86.46348 57 555 pefntvty | 320941 94.26932 86.57979 57 555 prcitshp | 320941 1.471255 1.201345 1 5 prcitflg | 320941 .1577206 1.903049 0 41 peinusyr | 320941 1.65302 4.612728 0 20 -------------+-------------------------------------------------------- selfproxy | 317284 1.491856 .5064797 1 3 lfsr94 | 319626 2.866153 2.348721 1 7 absent94 | 7801 6.422638 3.678795 4 14 uhourse | 176302 38.43203 11.28379 0 99 reason94 | 18431 4.829309 2.76829 1 13 -------------+-------------------------------------------------------- hourslw | 184088 37.79961 13.42165 1 99 laydur | 2244 9.542781 11.74535 1 104 dwrsn | 6228 6.925498 3.490919 1 11 why3594 | 53662 13.94637 7.178666 1 23 untype | 17643 3.044437 1.581106 1 6 -------------+-------------------------------------------------------- ftpt94 | 319626 2.91313 2.755739 1 12 class94 | 217281 4.106691 1.17475 1 8 agri | 217281 .0194771 .1381948 0 1 eligible | 320941 1.471158 .4991682 1 2 otc | 169727 1.871853 .3342544 1 2 -------------+-------------------------------------------------------- ernpdh2 | 320941 -.1978868 1.283889 -3 2 paidhre | 169727 1.41073 .4919678 1 2 earnhre | 99979 1521.745 893.8819 59 9999 earnwke | 169727 796.6428 601.1765 0 2884.61 unionmme | 169727 1.876378 .3291508 1 2 -------------+-------------------------------------------------------- unioncov | 148745 1.984551 .1233316 1 2 schenr | 47243 1.462354 .4985861 1 2 studftpt | 25400 1.077323 .2671083 1 2 schlvl | 25400 1.487717 .4998589 1 2 earnwt | 320941 8816.605 4801.893 0 63606.72 -------------+-------------------------------------------------------- weight | 320941 2204.151 1194.124 0 16240.78 chldpres | 200130 2.185724 3.296304 0 15 ownchild | 199994 .8093993 1.119005 0 11 I25d | 169727 .2983379 .4575299 0 1 I25c | 100015 .3315503 .4707727 0 1 -------------+-------------------------------------------------------- I25a | 320941 .3217196 3.42007 0 43 I25b | 320941 3.328422 11.3318 0 42 qstnum | 0 occurnum | 0 ged | 97133 1.06872 .2529791 1 2 -------------+-------------------------------------------------------- gedhigr | 6675 6.362397 1.266803 1 8 yrcoll | 87526 2.689726 .9840946 1 5 grprof | 56080 1.770132 .4207516 1 2 gr6cor | 12891 1.341323 .4741721 1 2 ms123 | 21233 2.179296 .563524 1 3 -------------+-------------------------------------------------------- cmpwgt | 320941 2204.213 1195.248 0 16195.21 ind02 | 217281 6219.088 2714.095 170 9890 occ00 | 217281 4227.36 2557.222 10 9840 vet1 | 30744 4.235981 1.807535 1 9 vet2 | 5685 3.813369 1.654488 1 9 -------------+-------------------------------------------------------- vet3 | 1409 3.437899 1.652481 1 9 vet4 | 285 4.252632 1.770067 1 8 linedad | 43266 1.684672 .9064783 1 12 linemom | 31650 1.134724 .388121 1 3 recnum | 320941 229064.8 131807.3 2 457410 -------------+-------------------------------------------------------- year | 320941 2009 0 2009 2009 ym_file | 320941 593.5201 3.439678 588 599 ym | 320941 584.547 6.907128 573 596 ch02 | 200130 .1115225 .3147789 0 1 ch35 | 200130 .118533 .3232389 0 1 -------------+-------------------------------------------------------- ch613 | 200130 .2458502 .4305912 0 1 ch1417 | 200130 .149248 .3563336 0 1 ch05 | 200130 .190766 .392906 0 1 ihigrdc | 320941 13.26984 2.946115 0 18 docc00 | 217281 12.58615 6.667107 1 23 -------------+-------------------------------------------------------- dind02 | 217281 30.67782 14.57349 1 52 . aef2 2010 10 03 dct_name aef03.dbd raw_name=../raw/morg10 (0 observations deleted) obs 458873 # of persons with age<=15 137596 # of non-interview records 0 Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 49,422 10.77 10.77 0 | 4,707 1.03 11.80 1 | 5,214 1.14 12.93 2 | 5,475 1.19 14.13 3 | 5,625 1.23 15.35 4 | 5,549 1.21 16.56 5 | 5,508 1.20 17.76 6 | 5,574 1.21 18.98 7 | 5,625 1.23 20.20 8 | 5,498 1.20 21.40 9 | 5,566 1.21 22.61 10 | 5,787 1.26 23.87 11 | 5,677 1.24 25.11 12 | 5,753 1.25 26.36 13 | 5,581 1.22 27.58 14 | 5,367 1.17 28.75 15 | 5,668 1.24 29.99 16 | 5,687 1.24 31.22 17 | 5,932 1.29 32.52 18 | 5,516 1.20 33.72 19 | 5,057 1.10 34.82 20 | 5,103 1.11 35.93 21 | 4,913 1.07 37.00 22 | 4,938 1.08 38.08 23 | 4,963 1.08 39.16 24 | 5,089 1.11 40.27 25 | 5,443 1.19 41.46 26 | 5,243 1.14 42.60 27 | 5,228 1.14 43.74 28 | 5,347 1.17 44.90 29 | 5,405 1.18 46.08 30 | 5,370 1.17 47.25 31 | 5,387 1.17 48.43 32 | 5,105 1.11 49.54 33 | 5,067 1.10 50.64 34 | 4,998 1.09 51.73 35 | 5,134 1.12 52.85 36 | 4,981 1.09 53.94 37 | 5,042 1.10 55.04 38 | 5,318 1.16 56.19 39 | 5,622 1.23 57.42 40 | 5,840 1.27 58.69 41 | 5,650 1.23 59.92 42 | 5,306 1.16 61.08 43 | 5,402 1.18 62.26 44 | 5,646 1.23 63.49 45 | 6,050 1.32 64.81 46 | 6,113 1.33 66.14 47 | 6,029 1.31 67.45 48 | 6,162 1.34 68.80 49 | 6,211 1.35 70.15 50 | 6,283 1.37 71.52 51 | 6,170 1.34 72.86 52 | 6,080 1.32 74.19 53 | 6,068 1.32 75.51 54 | 5,996 1.31 76.82 55 | 5,871 1.28 78.10 56 | 5,707 1.24 79.34 57 | 5,419 1.18 80.52 58 | 5,299 1.15 81.68 59 | 5,128 1.12 82.79 60 | 5,049 1.10 83.89 61 | 4,864 1.06 84.95 62 | 4,765 1.04 85.99 63 | 4,938 1.08 87.07 64 | 3,743 0.82 87.88 65 | 3,878 0.85 88.73 66 | 3,460 0.75 89.48 67 | 3,523 0.77 90.25 68 | 3,257 0.71 90.96 69 | 3,160 0.69 91.65 70 | 3,073 0.67 92.32 71 | 2,727 0.59 92.91 72 | 2,579 0.56 93.47 73 | 2,496 0.54 94.02 74 | 2,291 0.50 94.52 75 | 2,319 0.51 95.02 76 | 2,226 0.49 95.51 77 | 2,327 0.51 96.02 78 | 2,099 0.46 96.47 79 | 1,661 0.36 96.83 80 | 8,125 1.77 98.61 85 | 6,399 1.39 100.00 ------------+----------------------------------- Total | 458,873 100.00 no observations Age | Freq. Percent Cum. ------------+----------------------------------- -1 | 49,422 35.92 35.92 0 | 4,707 3.42 39.34 1 | 5,214 3.79 43.13 2 | 5,475 3.98 47.11 3 | 5,625 4.09 51.20 4 | 5,549 4.03 55.23 5 | 5,508 4.00 59.23 6 | 5,574 4.05 63.28 7 | 5,625 4.09 67.37 8 | 5,498 4.00 71.37 9 | 5,566 4.05 75.41 10 | 5,787 4.21 79.62 11 | 5,677 4.13 83.74 12 | 5,753 4.18 87.92 13 | 5,581 4.06 91.98 14 | 5,367 3.90 95.88 15 | 5,668 4.12 100.00 ------------+----------------------------------- Total | 137,596 100.00 (137596 observations deleted) (0 observations deleted) obs 321277 after keeping age>15&age!=. infile successful no observations (12 real changes made, 12 to missing) (277068 real changes made, 277068 to missing) (289154 real changes made, 289154 to missing) (0 real changes made) (0 real changes made) (159907 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (161370 real changes made) Geography (129668 real changes made) dropping cmsacode msafips smsa93 smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (2683 real changes made, 2683 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (60305 real changes made, 60305 to missing) (294585 real changes made, 294585 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (153255 real changes made, 153255 to missing) if 2010 > 1983 & 2010 < 1989 { (0 real changes made) (0 real changes made) (0 real changes made) (ch02: 77849 changes made) (ch35: 88278 changes made) (ch613: 88278 changes made) (ch1417: 88278 changes made) (16390 real changes made) (0 real changes made) (224161 real changes made, 224161 to missing) (314342 real changes made, 314342 to missing) (233800 real changes made, 233800 to missing) (264497 real changes made, 264497 to missing) (307788 real changes made, 307788 to missing) (299508 real changes made, 299508 to missing) (321277 missing values generated) (1038 real changes made) (2202 real changes made) (4050 real changes made) (6656 real changes made) (7203 real changes made) (11257 real changes made) (13084 real changes made) (4352 real changes made) (28 real changes made) (91 real changes made) (60 real changes made) (475 real changes made) (799 real changes made) (1794 real changes made) (2476 real changes made) (1212 real changes made) (90181 real changes made) (10968 real changes made) (22982 real changes made) (39171 real changes made) (10103 real changes made) (4253 real changes made) (43291 real changes made) (4342 real changes made) (9147 real changes made) (1763 real changes made) (20006 real changes made) (8293 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (284213 real changes made, 284213 to missing) (0 real changes made) (291497 real changes made, 291497 to missing) (315746 real changes made, 315746 to missing) (319939 real changes made, 319939 to missing) (321012 real changes made, 321012 to missing) Employment (4358 real changes made, 4358 to missing) (314949 real changes made, 314949 to missing) (153449 real changes made, 153449 to missing) (106916 real changes made, 106916 to missing) (106916 real changes made, 106916 to missing) (106916 real changes made, 106916 to missing) docc80 ** The renaming is part of the Census reweighting ; docc00 (106916 missing values generated) recode docc00 (docc00: 214361 changes made) dind (106916 missing values generated) (dind02: 214361 changes made) Wages (153449 real changes made, 153449 to missing) (0 real changes made) (221691 real changes made, 221691 to missing) (0 real changes made) (0 real changes made) (153449 real changes made) (210184 real changes made) (106916 real changes made, 106916 to missing) (303104 real changes made, 303104 to missing) (132019 real changes made) (153449 real changes made) (0 real changes made) (132019 real changes made, 132019 to missing) (1363 real changes made, 1363 to missing) (319288 real changes made, 319288 to missing) (221635 real changes made, 221635 to missing) (153449 real changes made, 153449 to missing) Hours, Unions (306906 real changes made, 306906 to missing) (314009 real changes made, 314009 to missing) (295477 real changes made, 295477 to missing) (274373 real changes made, 274373 to missing) (295477 real changes made, 295477 to missing) (1363 real changes made, 1363 to missing) (139287 real changes made, 139287 to missing) (79 real changes made) (15082 real changes made, 15082 to missing) (271944 real changes made, 271944 to missing) (153449 real changes made, 153449 to missing) (173565 real changes made, 173565 to missing) spouse was int now byte hourslw was int now byte ym_file was float now int ym was float now int ch02 was int now byte ch35 was int now byte ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc00 was int now byte dind02 was float now byte file /homes/data/morg/annual/morg10.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hhid | 0 intmonth | 321277 6.491607 3.447279 1 12 hurespli | 321265 1.437888 .8060969 0 14 minsamp | 321277 6.009107 1.999982 4 8 hrlonglk | 321277 1.992119 .1252998 0 2 -------------+-------------------------------------------------------- hrsample | 0 hrhhid2 | 0 serial | 0 hhnum | 321277 1.047943 .2284591 1 7 state | 321277 53.74526 26.45897 11 95 -------------+-------------------------------------------------------- stfips | 321277 27.97714 15.87351 1 56 cbsafips | 321277 25677.72 21240.78 0 79600 county | 321277 28.56857 66.96632 0 810 centcity | 260972 1.970288 .7355434 1 3 smsastat | 318594 1.209778 .4071507 1 2 -------------+-------------------------------------------------------- icntcity | 26692 1.471152 1.03476 1 7 smsa04 | 321277 3.56135 2.579731 0 7 relref95 | 321277 3.134989 3.191827 1 18 age | 321277 45.97046 18.18809 16 85 spouse | 168022 1.58537 .7218363 1 16 -------------+-------------------------------------------------------- sex | 321277 1.521681 .4995305 1 2 grade92 | 321277 40.07698 2.754593 31 46 race | 321277 1.395447 1.26282 1 21 ethnic | 37064 1.985862 1.391602 1 5 lineno | 321277 1.761029 1.055384 1 16 -------------+-------------------------------------------------------- famnum | 321277 .8022983 .471599 0 5 pfamrel | 321277 1.376221 1.068358 0 4 marital | 321277 3.396241 2.6492 1 7 prpertyp | 321277 2.004242 .0649958 2 3 penatvty | 321277 86.60284 80.02871 57 555 -------------+-------------------------------------------------------- pemntvty | 321277 95.47406 88.14026 57 555 pefntvty | 321277 95.60996 88.31036 57 555 prcitshp | 321277 1.482761 1.212985 1 5 prcitflg | 321277 .1604783 1.908653 0 41 peinusyr | 321277 1.752005 4.810373 0 21 -------------+-------------------------------------------------------- selfproxy | 316919 1.492672 .5062815 1 3 lfsr94 | 319914 2.908722 2.363514 1 7 absent94 | 7268 6.417446 3.607849 4 14 uhourse | 174176 38.42425 11.30036 0 99 reason94 | 14371 4.884768 3.049022 1 13 -------------+-------------------------------------------------------- hourslw | 181990 38.09422 13.38953 1 99 laydur | 1989 11.19206 15.17853 1 109 dwrsn | 6328 5.476928 3.333159 1 11 why3594 | 49333 14.62759 6.913069 1 23 untype | 18173 3.124801 1.591009 1 6 -------------+-------------------------------------------------------- ftpt94 | 319914 2.884256 2.769287 1 12 class94 | 214361 4.101189 1.178258 1 8 agri | 214361 .0194858 .1382252 0 1 eligible | 321277 1.477622 .4994998 1 2 otc | 167828 1.87253 .3334995 1 2 -------------+-------------------------------------------------------- ernpdh2 | 321277 -.213775 1.276521 -3 2 paidhre | 167828 1.406285 .4911404 1 2 earnhre | 99586 1538.58 905.2944 50 9999 earnwke | 167828 807.2001 610.9368 0 2884.61 unionmme | 167828 1.880139 .3247997 1 2 -------------+-------------------------------------------------------- unioncov | 147712 1.984707 .1227171 1 2 schenr | 46904 1.44994 .497493 1 2 studftpt | 25800 1.079457 .2704565 1 2 schlvl | 25800 1.498992 .5000087 1 2 earnwt | 321277 8883.073 4791.874 0 51199.07 -------------+-------------------------------------------------------- weight | 321277 2220.79 1192.099 0 12579.3 chldpres | 321277 1.387055 2.844356 0 15 ownchild | 321277 .5118449 .9713942 0 10 I25d | 167828 .3273768 .4692575 0 1 I25c | 99642 .3590253 .479717 0 1 -------------+-------------------------------------------------------- I25a | 321277 .3639414 3.644564 0 43 I25b | 321277 3.642816 11.80652 0 42 qstnum | 0 occurnum | 0 ged | 97116 1.071409 .2575089 1 2 -------------+-------------------------------------------------------- gedhigr | 6935 6.355732 1.306802 1 8 yrcoll | 87477 2.699247 .991853 1 5 grprof | 56780 1.762434 .4255956 1 2 gr6cor | 13489 1.321892 .4672191 1 2 ms123 | 21769 2.191097 .562643 1 3 -------------+-------------------------------------------------------- cmpwgt | 321277 2220.892 1193.387 0 12276.26 ind02 | 214361 6261.349 2697.145 170 9890 occ00 | 214361 4228.441 2544.825 10 9840 vet1 | 29780 4.163096 1.790112 1 9 vet2 | 5531 3.781956 1.65392 1 9 -------------+-------------------------------------------------------- vet3 | 1338 3.393124 1.613151 1 9 vet4 | 265 4.313208 1.704499 1 8 linedad | 44209 1.703296 .9581254 1 12 linemom | 32123 1.14432 .4019182 1 3 recnum | 321277 229317.8 132421.5 2 458873 -------------+-------------------------------------------------------- year | 321277 2010 0 2010 2010 ym_file | 321277 605.4916 3.447279 600 611 ym | 321277 596.4643 6.912814 585 608 ch02 | 321277 .0729775 .2601 0 1 ch35 | 321277 .0764231 .2656744 0 1 -------------+-------------------------------------------------------- ch613 | 321277 .1553052 .362196 0 1 ch1417 | 321277 .0932435 .2907739 0 1 ch05 | 321277 .1239927 .3295737 0 1 ihigrdc | 321277 13.30094 2.955592 0 18 docc00 | 214361 12.59242 6.630753 1 23 -------------+-------------------------------------------------------- dind02 | 214361 30.92095 14.47721 1 52 . aef2 2011 11 03 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 (136435 observations deleted) (0 observations deleted) obs 318334 after keeping age>15&age!=. infile successful no observations (32 real changes made, 32 to missing) (273742 real changes made, 273742 to missing) (285965 real changes made, 285965 to missing) (0 real changes made) (0 real changes made) (159087 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (159247 real changes made) Geography (128043 real changes made) dropping cmsacode msafips smsa93 smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (2626 real changes made, 2626 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (59703 real changes made, 59703 to missing) (291819 real changes made, 291819 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (153136 real changes made, 153136 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) (16363 real changes made) (0 real changes made) (222981 real changes made, 222981 to missing) (309424 real changes made, 309424 to missing) (230954 real changes made, 230954 to missing) (261679 real changes made, 261679 to missing) (301833 real changes made, 301833 to missing) (296123 real changes made, 296123 to missing) (318334 missing values generated) (1036 real changes made) (1994 real changes made) (3970 real changes made) (6420 real changes made) (7116 real changes made) (10854 real changes made) (12487 real changes made) (4431 real changes made) (47 real changes made) (113 real changes made) (54 real changes made) (566 real changes made) (1013 real changes made) (2233 real changes made) (3238 real changes made) (1646 real changes made) (86443 real changes made) (10828 real changes made) (22284 real changes made) (39074 real changes made) (9840 real changes made) (5354 real changes made) (40154 real changes made) (4668 real changes made) (11833 real changes made) (1815 real changes made) (20396 real changes made) (8427 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (281341 real changes made, 281341 to missing) (0 real changes made) (289050 real changes made, 289050 to missing) (312954 real changes made, 312954 to missing) (316967 real changes made, 316967 to missing) (318036 real changes made, 318036 to missing) Employment (4641 real changes made, 4641 to missing) (311569 real changes made, 311569 to missing) (152075 real changes made, 152075 to missing) (108154 real changes made, 108154 to missing) (108154 real changes made, 108154 to missing) (108154 real changes made, 108154 to missing) docc80 ** The renaming is part of the Census reweighting ; docc00 (108154 missing values generated) recode docc00 (docc00: 210180 changes made) dind (108154 missing values generated) (dind02: 210180 changes made) Wages (152075 real changes made, 152075 to missing) (0 real changes made) (219466 real changes made, 219466 to missing) (0 real changes made) (0 real changes made) (152075 real changes made) (205828 real changes made) (108154 real changes made, 108154 to missing) (301830 real changes made, 301830 to missing) (131325 real changes made) (152075 real changes made) (1 real change made, 1 to missing) (131325 real changes made, 131325 to missing) (1258 real changes made, 1258 to missing) (316653 real changes made, 316653 to missing) (219434 real changes made, 219434 to missing) (152075 real changes made, 152075 to missing) Hours, Unions (304480 real changes made, 304480 to missing) (311509 real changes made, 311509 to missing) (292737 real changes made, 292737 to missing) (272241 real changes made, 272241 to missing) (292737 real changes made, 292737 to missing) (1258 real changes made, 1258 to missing) (138150 real changes made, 138150 to missing) (97 real changes made) (14412 real changes made, 14412 to missing) (269920 real changes made, 269920 to missing) (152075 real changes made, 152075 to missing) (171888 real changes made, 171888 to missing) spouse was int now byte hourslw was int now byte laydur was int now byte ym_file was float now int ym was float now int ch02 was int now byte ch35 was int now byte ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc00 was int now byte dind02 was float now byte file /homes/data/morg/annual/morg11.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hhid | 0 intmonth | 318334 6.502686 3.456309 1 12 hurespli | 318302 1.432994 .808356 0 15 minsamp | 318334 6.001005 2.000003 4 8 hrlonglk | 318334 1.992392 .1231214 0 2 -------------+-------------------------------------------------------- hrsample | 0 hrhhid2 | 0 serial | 0 hhnum | 318334 1.047723 .2264846 1 5 state | 318334 53.91662 26.42134 11 95 -------------+-------------------------------------------------------- stfips | 318334 27.9508 15.88828 1 56 cbsafips | 318334 25746.01 21169.05 0 79600 county | 318334 28.81947 67.29321 0 810 centcity | 258631 1.965112 .7349785 1 3 smsastat | 315708 1.207473 .4054981 1 2 -------------+-------------------------------------------------------- icntcity | 26515 1.482293 1.046704 1 7 smsa04 | 318334 3.575207 2.574205 0 7 relref95 | 318334 3.140503 3.192594 1 18 age | 318334 46.26341 18.31576 16 85 spouse | 165198 1.585861 .710647 1 15 -------------+-------------------------------------------------------- sex | 318334 1.522363 .4995004 1 2 grade92 | 318334 40.11653 2.750189 31 46 race | 318334 1.402272 1.266108 1 21 ethnic | 36993 2.003271 1.402395 1 5 lineno | 318334 1.763148 1.053488 1 16 -------------+-------------------------------------------------------- famnum | 318334 .8015606 .4732797 0 4 pfamrel | 318334 1.375769 1.070597 0 4 marital | 318334 3.417967 2.652354 1 7 prpertyp | 318334 2.003952 .0627393 2 3 penatvty | 318334 86.84515 80.27001 57 555 -------------+-------------------------------------------------------- pemntvty | 318334 95.99081 88.73299 57 555 pefntvty | 318334 96.15209 88.92279 57 555 prcitshp | 318334 1.486599 1.214513 1 5 prcitflg | 318334 .1586258 1.873614 0 41 peinusyr | 318334 1.800131 4.901669 0 21 -------------+-------------------------------------------------------- selfproxy | 313693 1.492434 .5062042 1 3 lfsr94 | 317076 2.925453 2.374158 1 7 absent94 | 6825 6.390623 3.619923 4 14 uhourse | 172597 38.45974 11.36026 0 99 reason94 | 13854 5.0288 3.022229 1 13 -------------+-------------------------------------------------------- hourslw | 180184 38.23209 13.37208 1 99 laydur | 1681 8.74539 11.28972 1 52 dwrsn | 6765 6.676127 3.564009 1 11 why3594 | 48414 14.74904 6.821853 1 23 untype | 16504 3.226006 1.61082 1 6 -------------+-------------------------------------------------------- ftpt94 | 317076 2.825729 2.70853 1 12 class94 | 210180 4.099401 1.172943 1 8 agri | 210180 .0207061 .1423988 0 1 eligible | 318334 1.477722 .4995042 1 2 otc | 166259 1.86278 .3440801 1 2 -------------+-------------------------------------------------------- ernpdh2 | 318334 -.211743 1.276409 -3 2 paidhre | 166259 1.405145 .4909216 1 2 earnhre | 98867 1562.456 933.1273 40 9999 earnwke | 166259 821.5108 618.5495 0 2884.61 unionmme | 166259 1.880831 .3239888 1 2 -------------+-------------------------------------------------------- unioncov | 146446 1.985298 .1203562 1 2 schenr | 46093 1.444666 .4969341 1 2 studftpt | 25597 1.075634 .2644166 1 2 schlvl | 25597 1.499629 .5000096 1 2 earnwt | 318334 9032.685 4900.622 0 43175.19 -------------+-------------------------------------------------------- weight | 318334 2258.171 1219.25 0 10830.38 chldpres | 318334 1.362151 2.82675 0 15 ownchild | 318334 .5017466 .9653627 0 12 I25d | 166259 .3375276 .4728679 0 1 I25c | 98900 .368999 .4825361 0 1 -------------+-------------------------------------------------------- I25a | 318334 .3795353 3.71887 0 43 I25b | 318334 3.801378 12.03497 0 42 qstnum | 0 occurnum | 0 ged | 95353 1.093442 .2910527 1 2 -------------+-------------------------------------------------------- gedhigr | 8910 6.396857 1.304676 1 8 yrcoll | 87380 2.732296 1.018207 1 5 grprof | 56655 1.708746 .4543443 1 2 gr6cor | 16501 1.282892 .450418 1 2 ms123 | 22211 2.196929 .5670937 1 3 -------------+-------------------------------------------------------- cmpwgt | 318334 2258.297 1220.594 0 10698.62 ind02 | 210180 6275.202 2692.162 170 9890 occ2011 | 210180 4209.431 2551.831 10 9840 vet1 | 29284 4.09063 1.774574 1 9 vet2 | 5380 3.742751 1.663781 1 9 -------------+-------------------------------------------------------- vet3 | 1367 3.350402 1.633999 1 9 vet4 | 298 4.241611 1.723871 1 9 linedad | 44592 1.698758 .9383978 1 12 linemom | 32369 1.145448 .401786 1 3 recnum | 318334 227228.5 131301.9 1 454769 -------------+-------------------------------------------------------- year | 318334 2011 0 2011 2011 ym_file | 318334 617.5027 3.456309 612 623 ym | 318334 608.4997 6.932747 597 620 ch02 | 318334 .0698543 .2549017 0 1 ch35 | 318334 .0758888 .2648206 0 1 -------------+-------------------------------------------------------- ch613 | 318334 .1522583 .3592717 0 1 ch1417 | 318334 .0919506 .2889566 0 1 ch05 | 318334 .1212563 .3264254 0 1 ihigrdc | 318334 13.35532 2.984274 0 18 docc00 | 210180 12.52329 6.656422 1 23 -------------+-------------------------------------------------------- dind02 | 210180 30.99875 14.45639 1 52 . aef2 2012 12 03 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 (135909 observations deleted) (0 observations deleted) obs 316408 after keeping age>15&age!=. infile successful no observations (18 real changes made, 18 to missing) (272451 real changes made, 272451 to missing) (284412 real changes made, 284412 to missing) (0 real changes made) (0 real changes made) (158074 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (158334 real changes made) Geography (127083 real changes made) dropping cmsacode msafips smsa93 smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (2607 real changes made, 2607 to missing) (0 real changes made) replace centcity = . if centcity==4 | centcity<=0 (59230 real changes made, 59230 to missing) (289584 real changes made, 289584 to missing) replace smsasize=. if smsasize<=0 drop smsasize Demography (151948 real changes made, 151948 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) (16066 real changes made) (0 real changes made) (223304 real changes made, 223304 to missing) (307308 real changes made, 307308 to missing) (228949 real changes made, 228949 to missing) (258326 real changes made, 258326 to missing) (299310 real changes made, 299310 to missing) (293628 real changes made, 293628 to missing) (316408 missing values generated) (1055 real changes made) (1984 real changes made) (3828 real changes made) (5932 real changes made) (6618 real changes made) (10292 real changes made) (11992 real changes made) (4558 real changes made) (47 real changes made) (109 real changes made) (66 real changes made) (524 real changes made) (1047 real changes made) (2285 real changes made) (3266 real changes made) (1756 real changes made) (84004 real changes made) (10678 real changes made) (22425 real changes made) (38808 real changes made) (10025 real changes made) (5523 real changes made) (40984 real changes made) (4657 real changes made) (12441 real changes made) (1884 real changes made) (20896 real changes made) (8724 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (279086 real changes made, 279086 to missing) (0 real changes made) (287973 real changes made, 287973 to missing) (310906 real changes made, 310906 to missing) (315022 real changes made, 315022 to missing) (316139 real changes made, 316139 to missing) Employment (4307 real changes made, 4307 to missing) (309964 real changes made, 309964 to missing) (150324 real changes made, 150324 to missing) 2012 Occupation (247209 real changes made, 247209 to missing) (177590 real changes made, 177590 to missing) (108391 real changes made, 108391 to missing) (108391 real changes made, 108391 to missing) docc80 ** The renaming is part of the Census reweighting ; docc00 (247209 missing values generated) recode docc00 (docc00: 69199 changes made) dind (108391 missing values generated) (dind02: 208017 changes made) Wages (150324 real changes made, 150324 to missing) (0 real changes made) (218097 real changes made, 218097 to missing) (0 real changes made) (0 real changes made) (150324 real changes made) (203779 real changes made) (108391 real changes made, 108391 to missing) (301735 real changes made, 301735 to missing) (129641 real changes made) (150324 real changes made) (0 real changes made) (129641 real changes made, 129641 to missing) (1244 real changes made, 1244 to missing) (314842 real changes made, 314842 to missing) (218066 real changes made, 218066 to missing) (150324 real changes made, 150324 to missing) Hours, Unions (303723 real changes made, 303723 to missing) (309392 real changes made, 309392 to missing) (291301 real changes made, 291301 to missing) (271595 real changes made, 271595 to missing) (291301 real changes made, 291301 to missing) (1244 real changes made, 1244 to missing) (136657 real changes made, 136657 to missing) (85 real changes made) (14821 real changes made, 14821 to missing) (269912 real changes made, 269912 to missing) (150324 real changes made, 150324 to missing) (169207 real changes made, 169207 to missing) spouse was int now byte hourslw was int now byte laydur was int now byte ym_file was float now int ym was float now int ch02 was int now byte ch35 was int now byte ch613 was int now byte ch1417 was int now byte ch05 was int now byte occ2012 was float now int docc00 was int now byte dind02 was float now byte file /homes/data/morg/annual/morg12.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- hhid | 0 intmonth | 316408 6.505622 3.45343 1 12 hurespli | 316390 1.416992 .7887689 0 16 minsamp | 316408 6.001643 2.000002 4 8 hrlonglk | 316408 1.992383 .123189 0 2 -------------+-------------------------------------------------------- hrsample | 0 hrhhid2 | 0 serial | 0 hhnum | 316408 1.048712 .2279868 1 6 state | 316408 54.02199 26.41768 11 95 -------------+-------------------------------------------------------- stfips | 316408 27.90288 15.89768 1 56 cbsafips | 316408 25861.48 21109.9 0 79600 county | 316408 28.96384 67.34775 0 810 centcity | 257178 1.959164 .7318766 1 3 smsastat | 313801 1.203444 .4025608 1 2 -------------+-------------------------------------------------------- icntcity | 26824 1.48561 1.053263 1 7 smsa04 | 316408 3.5949 2.56727 0 7 relref95 | 316408 3.130054 3.180738 1 18 age | 316408 46.56629 18.34466 16 85 spouse | 164460 1.583941 .7067399 1 14 -------------+-------------------------------------------------------- sex | 316408 1.521134 .4995539 1 2 grade92 | 316408 40.18481 2.745015 31 46 race | 316408 1.403492 1.259527 1 26 ethnic | 37322 1.99148 1.398373 1 5 lineno | 316408 1.754311 1.034068 1 16 -------------+-------------------------------------------------------- famnum | 316408 .8011017 .4727538 0 5 pfamrel | 316408 1.373729 1.068881 0 4 marital | 316408 3.414244 2.651669 1 7 prpertyp | 316408 2.003932 .0625794 2 3 penatvty | 316408 87.08048 80.44654 57 555 -------------+-------------------------------------------------------- pemntvty | 316408 96.2973 88.97279 57 555 pefntvty | 316408 96.52764 89.17506 57 555 prcitshp | 316408 1.489864 1.216172 1 5 prcitflg | 316408 .164389 1.907574 0 41 peinusyr | 316408 1.85812 5.034859 0 22 -------------+-------------------------------------------------------- selfproxy | 312101 1.491001 .5057629 1 3 lfsr94 | 315164 2.915952 2.370646 1 7 absent94 | 7016 6.332811 3.566772 4 14 uhourse | 171946 38.57483 11.33713 0 99 reason94 | 12685 4.811273 2.90016 1 13 -------------+-------------------------------------------------------- hourslw | 179751 38.42136 13.26563 1 99 laydur | 1566 9.171775 11.44848 1 52 dwrsn | 6444 6.926754 3.477058 1 11 why3594 | 46496 14.93331 6.839047 1 23 untype | 14673 3.330539 1.639565 1 6 -------------+-------------------------------------------------------- ftpt94 | 315164 2.765065 2.642505 1 12 class94 | 208017 4.10616 1.167527 1 8 agri | 208017 .0203733 .1412741 0 1 eligible | 316408 1.475095 .4993802 1 2 otc | 166084 1.858855 .3481726 1 2 -------------+-------------------------------------------------------- ernpdh2 | 316408 -.1989773 1.281381 -3 2 paidhre | 166084 1.407878 .4914417 1 2 earnhre | 98311 1585.588 949.8391 12 9999 earnwke | 166084 843.7225 636.5698 0 2884.61 unionmme | 166084 1.886305 .317442 1 2 -------------+-------------------------------------------------------- unioncov | 147201 1.985272 .120463 1 2 schenr | 44813 1.439738 .4963608 1 2 studftpt | 25107 1.075557 .2642926 1 2 schlvl | 25107 1.502688 .5000027 1 2 earnwt | 316408 9226.733 5011.108 0 49973 -------------+-------------------------------------------------------- weight | 316408 2306.683 1245.885 0 12311.47 chldpres | 316408 1.349789 2.816227 0 15 ownchild | 316408 .4965456 .9623568 0 12 I25d | 166084 .3292069 .4699266 0 1 I25c | 98342 .3638832 .481118 0 1 -------------+-------------------------------------------------------- I25a | 316408 .370057 3.677173 0 43 I25b | 316408 3.760044 11.97657 0 42 qstnum | 0 occurnum | 0 ged | 93104 1.09774 .2969646 1 2 -------------+-------------------------------------------------------- gedhigr | 9100 6.419121 1.298738 1 8 yrcoll | 87459 2.740335 1.022048 1 5 grprof | 58082 1.705623 .4557661 1 2 gr6cor | 17098 1.272371 .4451928 1 2 ms123 | 22780 2.190957 .56561 1 3 -------------+-------------------------------------------------------- cmpwgt | 316408 2306.684 1247.486 0 12441.33 ind02 | 208017 6280.757 2683.839 170 9890 occ2011 | 69199 4192.766 2565.293 10 9840 vet1 | 28435 4.008335 1.750943 1 9 vet2 | 5502 3.669938 1.627489 1 9 -------------+-------------------------------------------------------- vet3 | 1386 3.247475 1.606871 1 9 vet4 | 269 3.936803 1.703733 1 9 linedad | 43957 1.702709 .9428212 1 12 linemom | 31996 1.146018 .4029041 1 3 recnum | 316408 226245.2 130652.5 1 452317 -------------+-------------------------------------------------------- year | 316408 2012 0 2012 2012 ym_file | 316408 629.5056 3.45343 624 635 ym | 316408 620.5007 6.911197 609 632 ch02 | 316408 .0676532 .2511502 0 1 ch35 | 316408 .0751972 .2637097 0 1 -------------+-------------------------------------------------------- ch613 | 316408 .1513521 .3583923 0 1 ch1417 | 316408 .0911703 .2878515 0 1 ch05 | 316408 .1184294 .3231164 0 1 ihigrdc | 316408 13.42328 2.988644 0 18 occ2012 | 138818 4164.038 2570.586 10 9840 -------------+-------------------------------------------------------- docc00 | 69199 12.46457 6.694308 1 23 dind02 | 208017 31.03339 14.41411 1 52 . . exit, clear end of do-file . exit