------------------------------------------------------------------------------- log: /disk/nber10/SCCS/morg/sources/annual2007.log log type: text opened on: 25 Aug 2008, 12:28:49 . set memory 2000m (2048000k) . 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'" . *display "raw_name `raw_name'" . if `1' <= 1993 { 4. !zcat /home/data/morg/raw/morg`2'.Z |tr "\-A" " " >/tmp/aef.raw 5. } 6. if `1' >= 1994 { 7. !zcat /home/data/morg/raw/morg`2'.Z >/tmp/aef.raw 8. } 9. *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_na > me'") 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 10. quietly infile using aef.dct if age>15&age!=. , using("/tmp/aef.raw") clea > r 11. display "infile successful" 12. #delimit cr delimiter now cr . generate int year = `1' 13. *summarize . tab intmonth if `1'==2005 14. quietly describe 15. display "obs " r(N) 16. ** Revised Census 2000-based Weights. Impact employment and union variabl > es . if inlist( `1', 2000 , 2001 , 2002 ) { 17. gen id = _n 18. local rwlist qstnum intmonth year occurnum 19. sort `rwlist' 20. quietly describe 21. display "total obs pre-revise `1' " r(N) 22. saveold /homes/data/morg/annual/rw/annual, replace 23. clear 24. rw `2' jan 1 25. rw `2' feb 2 26. rw `2' mar 3 27. rw `2' apr 4 28. rw `2' may 5 29. rw `2' jun 6 30. rw `2' jul 7 31. rw `2' aug 8 32. rw `2' sep 9 33. rw `2' oct 10 34. rw `2' nov 11 35. rw `2' dec 12 36. local monlist feb mar apr may jun jul aug sep oct nov dec 37. clear 38. display "using jan" 39. use /homes/data/morg/annual/rw/jan 40. foreach mon in `monlist' { 41. append using /home/data/morg/annual/rw/`mon' 42. } 43. quietly describe 44. display "total obs post-revise" r(N) 45. display "start renaming" 46. rename neio1icd ind02 47. rename ntio1ocd occ00 48. replace occ00 = . if occ00 < 0 49. rename class94 class94p 50. replace class94p = . if class94p<0 51. . rename neio1cow class94 52. rename earnwt earnwtp 53. rename nworwgt earnwt 54. rename weight weightp 55. rename nwsswgt weight 56. display "done renaming" 57. display "drop 2000" 58. if `1' == 2000 { 59. drop neerncov neernlab 60. } 61. display "rename 2001-2002" 62. if inlist( `1' , 2001 , 2002 ) { 63. rename unioncov unioncop 64. replace unioncop = . if unioncop < 0 65. rename neerncov unioncov 66. rename unionmme unionmep 67. replace unionmep = . if unionmep < 0 68. rename neernlab unionmme 69. } 70. sort id 71. drop id _merge 72. } 73. . * Miscellaneous (record keeping) variables . if `1' == 1994 { 74. replace hhid = hhid94 75. drop hhid94 76. } 77. if `1'== 1995 { 78. replace hhid = hhid94 if intmonth<9 79. drop hhid94 80. } 81. if inlist( `1', 1996 , 1997 ) { 82. drop hhid94 83. } 84. replace hurespli =. if hurespli <0 85. if `1'>=2003 & `1'<=2006 { 86. replace linedad=. 87. replace linemom=. 88. } 89. if `1'>=2007 { 90. replace linedad=. if linedad<0 91. replace linemom=. if linemom<0 92. } 93. ************************************************** . ** Creating time-series month/year from the first month-in-sample . generate ym_file = ym(year,intmonth) 94. label variable ym_file "time series month from original data" 95. generate ym = ym_file 96. label variable ym "time series month of first month-in-sample" 97. replace ym = ym - 1 if minsamp == 2 98. replace ym = ym - 2 if minsamp == 3 99. replace ym = ym - 3 if minsamp == 4 100. replace ym = ym - 13 if minsamp == 5 101. replace ym = ym - 14 if minsamp == 6 102. replace ym = ym - 15 if minsamp == 7 103. replace ym = ym - 16 if minsamp == 8 104. ************************************************** . * Geography . display "Geography" 105. if `1'==2004 { 106. display "replace serial" 107. replace serial = serial04 if intmonth >= 5 108. replace hrsample = "" if intmonth >= 5 109. replace hhnum = hhnum04 if intmonth >= 5 110. display "replace cmsacode" 111. replace cmsacode = . if intmonth >= 5 112. display "replace msafips" 113. replace msafips = . if intmonth >= 5 114. display "replace smsa93" 115. replace smsa93 = . if smsa93<2 & intmonth<=4 116. replace smsa93 = . if intmonth >= 5 117. display "replacing smsa04 in May 2004 and later" 118. replace smsa04 = . if smsa04<2 & intmonth >= 5 119. } 120. if `1' == 2005 { 121. replace serial = serial04 122. replace hrsample ="" 123. replace smsa04 = . if smsa04<2 & intmonth >= 5 124. } 125. if `1' >= 2005 { 126. replace hhnum = hhnum04 127. display "dropping cmsacode msafips smsa93" 128. drop cmsacode msafips smsa93 129. } 130. if `1' == 2003 { 131. display "dropping non-2003 variables" 132. drop cbsafips smsa04 serial04 hhnum04 hrhhid2 133. } 134. if `1'==2004 { 135. display "replacing pre-May 2004 variables" 136. replace cbsafips = . if intmonth <=4 137. replace smsa04 = . if intmonth <=4 138. replace hrhhid2 ="" if intmonth <=4 139. } 140. if `1' >= 2004 { 141. drop serial04 hhnum04 142. } 143. if `1' >= 1996 & `1' <= 2003 { 144. replace smsa93 = . if smsa93<2 145. } 146. display "smsasize = . if smsasize <=0" 147. capture replace smsasize = . if smsasize <=0 148. if `1' == 1995 { 149. replace smsastat = smsa995 if intmonth>8 150. replace icntcity = icntct94 if intmonth<9 151. replace centcity = centcitx if intmonth<9 152. replace smsa93 = . if intmonth>=9 & smsa93<2 153. replace smsa93 = . if intmonth<9 154. drop pmsarank 155. dis "gen smsa80" 156. generate smsa80 = smsasize 157. dis "rep smsa80" 158. replace smsa80 = . if intmonth >= 10 159. dis "replace county" 160. replace county = . if county < 0 161. dis "drop county" 162. if intmonth<9 { 163. drop county 164. } 165. } 166. display "inlisting 96 97" 167. if inlist( `1', 1996 , 1997 ) { 168. replace smsastat = smsa995 169. } 170. display "replace smsastat = . if smsastat==3 | smsastat<0" 171. replace smsastat = . if smsastat==3 | smsastat<0 172. if `1' == 1994 { 173. drop smsa93 174. replace centcity = centcitx 175. replace icntcity = icntct94 176. replace pmsarank = . if intmonth > 3 177. replace pmsarank = . if pmsarank <= 0 178. replace cmsarank = . if intmonth > 3 179. } 180. if inlist( `1', 1996 , 1997 ) { 181. drop pmsarank 182. } 183. if `1' >= 1994 & `1' <= 1997 { 184. drop centcitx icntct94 smsa995 185. } 186. if `1' >= 1994 { 187. replace peinusyr = . if peinusyr < 0 188. } 189. display "replace centcity = . if centcity==4 | centcity<=0" 190. replace centcity = . if centcity==4 | centcity<=0 191. if `1' >= 1986 & `1' < 1994 { 192. replace pmsarank = . if pmsarank<=0 193. } 194. if `1' >= 1995 & `1' <= 1997 { 195. drop cmsarank 196. } 197. if `1' >= 1986 { 198. replace icntcity = . if icntcity<=0 199. } 200. if `1' > 1984 & `1' < 1995 { 201. replace cmsarank = . if cmsarank<=0 202. } 203. if `1' >= 1989 & `1' <= 2004 { 204. replace msafips = . if msafips <=0 205. replace cmsacode = . if cmsacode<=0 206. } 207. ** 1970 occupation variables are not correct on morg83.raw . if `1' == 1983 { 208. drop docc70 occ70 209. } 210. if `1' == 1985 { 211. replace smsarank = . if intmonth > 9 212. } 213. if `1' == 1984 { 214. display "drop icntcity pmsarank cmsarank" 215. drop icntcity pmsarank cmsarank 216. } 217. if `1' == 1985 & intmonth < 10 { 218. drop icntcity pmsarank cmsarank 219. } 220. if `1' == 1994 { 221. replace cmsarank = . if intmonth>3 222. } 223. display "replace smsasize=. if smsasize<=0" 224. **should line below be commented out??? . capture replace smsasize=. if smsasize<=0 225. if `1' < 1985 { 226. display "generate byte smsa70 = smsasize" 227. generate byte smsa70 = smsasize 228. } 229. if `1' > 1985 & `1' < 1995 { 230. generate byte smsa80 = smsasize 231. } 232. if `1' == 1985 { 233. generate byte smsa70 = smsasize if intmonth<10 234. } 235. if `1' == 1985 { 236. generate byte smsa80 = smsasize if intmonth>9 237. } 238. display "drop smsasize" 239. capture drop smsasize 240. if `1' > 1985 & `1' < 1989 { 241. drop smsarank 242. } 243. if `1' < 1983 { 244. display "drop unioncov unionmme occ80 ind80" 245. drop unioncov unionmme occ80 ind80 246. } 247. . * Demography . display "Demography" 248. if `1' > 1983 & `1' < 1994 { 249. replace ownchild = . if ownchild ==0 250. replace ownchild = ownchild - 1 251. generate int ch613=chldpres 252. generate int ch1417=chldpres 253. } 254. display "if `1' > 1983 & `1' < 1989 {" 255. if `1' > 1983 & `1' < 1989 { 256. generate int ch05= chldpres 257. recode ch05 (4 6/8 = 1) (0/3 5 = 0) 258. recode ch613 (3 5 7/8 = 1) (0/2 4 6 = 0) 259. recode ch1417 (2 5/6 8 =1) (0/1 3/4 7 = 0) 260. } 261. if `1' > 1988 & `1' < 1994 { 262. display "if `1' > 1988 & `1' < 1994 {" 263. generate int ch02 = chldpres 264. generate int ch35 = chldpres 265. recode ch02 (2 6/8 12/14 16 = 1) (0/1 3/5 9/11 15 = 0) 266. recode ch35 (3 6 9/10 12/13 15/16 = 1) (0/2 4/5 7/8 11 14 = 0) 267. recode ch613 (4 7 9 11/12 14/16 = 1) (0/3 5/6 8 10 13 = 0) 268. recode ch1417 (5 8 10/11 13/16 = 1) (0/4 6/7 9 12 = 0 ) 269. generate int ch05 = ch02 270. replace ch05 = ch35 if ch35 == 1 271. label variable ch02 "Children 0-2" 272. label variable ch35 "Children 3-5" 273. } 274. if `1' > 1983 & `1' < 1994 { 275. display "if `1' > 1983 & `1' < 1994 {" 276. label variable ch05 "Children 0-5" 277. label variable ch613 "Children 6-13" 278. label variable ch1417 "Children 6-17" 279. } 280. if `1' >= 1994 & `1' <= 1996 { 281. drop prpertyp 282. } 283. if `1' >= 1997 { 284. replace prpertyp=. if prpertyp<0 285. } 286. if `1' == 1998 { 287. drop ownchild chldpres 288. } 289. if `1' >= 1999 { 290. replace ownchild = . if ownchild < 0 291. replace chldpres = . if chldpres < 0 292. generate int ch02 = chldpres 293. generate int ch35 = chldpres 294. generate int ch613 = chldpres 295. generate int ch1417 = chldpres 296. recode ch02 (1 5/7 11/13 15 = 1) (0 2/4 8/10 14 = 0) 297. recode ch35 (2 5 8/9 11/12 14/15 = 1) (0/1 3/4 6/7 10 13 =0) 298. recode ch613 (3 6 8 10/11 13/15 = 1) (0/2 4/5 7 9 12 = 0) 299. recode ch1417 (4 7 9/10 12/15 = 1) (0/3 5/6 8 11 = 0) 300. generate int ch05 = ch02 301. replace ch05 = ch35 if ch35 == 1 302. } 303. . if `1' == 1999 { 304. replace ownchild = . if intmonth < 10 305. replace chldpres = . if intmonth < 10 306. replace ch613 = . if intmonth < 10 307. replace ch1417 = . if intmonth < 10 308. replace ch05 = . if intmonth < 10 309. replace ch02 = . if intmonth < 10 310. replace ch35 = . if intmonth < 10 311. } 312. if `1' > 1988 & `1' < 1992 { 313. drop grade92 314. } 315. if `1' < 1989 { 316. replace gradeat = gradeat - 1 317. replace marital = 7 if marital==5 318. } 319. if `1' > 1991 { 320. replace grade92 = . if grade92 < 0 321. } 322. if `1' >= 1998 { 323. replace ged = . if ged < 0 324. replace gedhigr = . if gedhigr < 0 325. replace yrcoll = . if yrcoll < 0 326. replace grprof = . if grprof < 0 327. replace gr6cor = . if gr6cor < 0 328. replace ms123 = . if ms123 < 0 329. generate double ihigrdc = . 330. ** Jaeger . label var ihigrdc "Imputed highest grade completed" 331. replace ihigrdc = 0 if grade92==31 332. replace ihigrdc = 2.5 if grade92==32 333. replace ihigrdc = 5.5 if grade92==33 334. replace ihigrdc = 7.5 if grade92==34 335. replace ihigrdc = 9 if grade92==35 336. replace ihigrdc =10 if grade92==36 337. replace ihigrdc =11 if grade92==37 338. replace ihigrdc =12 if grade92==38 339. replace ihigrdc = 0 if grade92==39 & ged==2 & gedhigr==1 340. replace ihigrdc = 2.5 if grade92==39 & ged==2 & gedhigr==2 341. replace ihigrdc = 5.5 if grade92==39 & ged==2 & gedhigr==3 342. replace ihigrdc = 7.5 if grade92==39 & ged==2 & gedhigr==4 343. replace ihigrdc = 9 if grade92==39 & ged==2 & gedhigr==5 344. replace ihigrdc = 10 if grade92==39 & ged==2 & gedhigr==6 345. replace ihigrdc = 11 if grade92==39 & ged==2 & gedhigr==7 346. replace ihigrdc = 12 if grade92==39 & ged==2 & gedhigr==8 347. replace ihigrdc = 12 if ged==1 348. replace ihigrdc = 12 if grade92>=40 & grade92<=42 & yrcoll==1 349. replace ihigrdc = 13 if grade92>=40 & grade92<=42 & yrcoll==2 350. replace ihigrdc = 14 if grade92>=40 & grade92<=42 & yrcoll==3 351. replace ihigrdc = 15 if grade92>=40 & grade92<=42 & yrcoll==4 352. replace ihigrdc = 16 if grade92>=40 & grade92<=42 & yrcoll==5 353. replace ihigrdc = 16 if grade92==43 & grprof==2 354. replace ihigrdc = 17 if grade92==43 & gr6cor==2 355. replace ihigrdc = 18 if grade92==43 & gr6cor==1 356. replace ihigrdc = 17 if grade92==44 & ms123==1 357. replace ihigrdc = 18 if grade92==44 & ms123>=2 & ms123<. 358. replace ihigrdc = 18 if grade92==45 | grade92==46 359. } 360. if inlist( `1', 1992 , 1993 ) { 361. drop gradecp gradeat 362. } 363. if `1' == 1995 { 364. replace relref94 = . if intmonth > 2 365. replace relref95 = . if intmonth < 3 366. } 367. if inlist( `1', 1996 , 1997 ) { 368. drop relref94 369. } 370. if `1' == 1994 { 371. drop relref95 372. } 373. if `1' >= 1994 { 374. replace penatvty = . if penatvty < 0 375. replace pemntvty = . if pemntvty < 0 376. replace pefntvty = . if pefntvty < 0 377. replace prcitshp = . if prcitshp < 0 378. replace prcitflg = . if prcitflg < 0 379. } 380. if `1' > 1989 { 381. replace ethnic = . if ethnic < 0 382. replace ethnic = . if ethnic >= 10 383. } 384. if `1' >= 1994 & `1' <= 2004 { 385. replace veteran = . if veteran < 0 386. } 387. if `1' >= 2003 & `1' <= 2004 { 388. drop vet1-vet4 389. } 390. if `1' == 2005 { 391. display "replacing veteran Jan-July 2005" 392. replace veteran = . if veteran < 0 & intmonth <= 7 393. display "replacing vet1-vet4 if intmonth <= 7 " 394. replace vet1 = . if intmonth <= 7 395. replace vet2 = . if intmonth <= 7 396. replace vet3 = . if intmonth <= 7 397. replace vet4 = . if intmonth <= 7 398. } 399. if `1' == 2005 { 400. replace veteran = . if intmonth >= 8 401. replace vet1 = . if vet1 < 0 & intmonth >= 8 402. replace vet2 = . if vet2 < 0 & intmonth >= 8 403. replace vet3 = . if vet3 < 0 & intmonth >= 8 404. replace vet4 = . if vet4 < 0 & intmonth >= 8 405. } 406. if `1' >= 2006 { 407. drop veteran 408. replace vet1=. if vet1<0 409. replace vet2=. if vet2<0 410. replace vet3=. if vet3<0 411. replace vet4=. if vet4<0 412. } 413. * Employment . display "Employment" 414. if `1' >= 1994 { 415. replace selfproxy = . if selfproxy<0 416. replace otc = . if otc<0 417. } 418. if `1' >= 1994 & `1' <= 2002 { 419. replace occ80 = . if occ80 <0 420. replace ind80 = . if ind80 < 10 421. replace class94 = . if class94<0 422. } 423. if `1' >= 2000 { 424. replace occ00 = . if occ00 <0 425. replace ind02 = . if ind02 < 10 426. replace class94 = . if class94<0 427. } 428. #delimit ; delimiter now ; . ; . display "docc80" ; 429. if `1' >= 1983 & `1' <= 2002 { > display "generate int docc80=occ80;"; 430. generate int docc80=occ80; 431. display "recode docc80"; 432. 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=1 > 2) > (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); 433. } ; 434. display "** The renaming is part of the Census reweighting ; " ; 435. if inlist( `1', 2000 , 2001 , 2002 ) { > *display "renaming docc80 docc80p " ; 436. *rename docc80 docc80p ; . } ; 437. display "docc00" ; 438. if `1' >= 2000 { > display "generate int docc00=occ00;"; 439. generate int docc00=occ00; 440. display "recode docc00"; 441. recode docc00 (10/430=1) (500/950=2) (1000/1240=3) (1300/1560=4) (160 > 0/1960=5) > (2000/2060=6) (2100/2150=7) (2200/2550=8) (2600/2960=9) (3000/3540=10) (3 > 600/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); 442. } ; 443. display "dind"; 444. if `1'<= 1982 { > display "`1' <= 1982: creating dind from ind70"; 445. gen dind=ind70 ; 446. 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) ; 447. } ; 448. if `1' <=1991 & `1' >=1983 { > display "replacing dind for `1': `1' <=1991 & `1' >=1983"; 449. gen dind=ind80; 450. 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); 451. } ; 452. if `1' >= 1992 & `1' <= 2002 { > display "replacing dind for `1': `1' >= 1992 & `1' <= 2002 "; 453. gen dind=ind80; 454. 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) ; 455. }; 456. if `1' >= 2000 { > display "replacing dind for `1' >= 2000 " ; 457. gen dind02 = ind02; 458. 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) (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 86 > 70=45) > (8680 8690=46) (8770/8890=47) (8970/9090=48) (9160/9190=49) (9290=50) > (9370/9590=51) (9890=52) ; 459. } ; 460. #delimit cr delimiter now cr . **Wages (If earnings are 0, then wage rate is missing, not zero). . display "Wages" 461. replace paidhr = . if paidhr <=0 462. replace paidhre = . if paidhre <=0 463. replace earnhr = . if earnhr <=0 464. replace earnhre = . if earnhre <=0 465. replace earnwke = . if earnwke < 0 466. if `1' < 1989 { 467. replace eligible = 2 if eligible == . 468. } 469. if `1' >= 1989 { 470. replace eligible = 2 if eligible <= 0 471. replace agri = 0 if agri==2 472. replace agri = . if agri< 0 473. replace untype = . if untype<0 474. } 475. if `1' < 1989 { 476. replace I25a = 0 if I25a ==. 477. replace I25b = 0 if I25b ==. 478. replace I25c = 0 if I25c ==. 479. replace I25d = 0 if I25d ==. 480. replace agri = . if agri< 0 481. } 482. if `1' >= 1994 { 483. replace I25a = 0 if I25a <= 3 484. replace I25b = 0 if I25b <= 3 485. *replace I25a = . if I25a < 0 . *replace I25b = . if I25b < 0 . replace earnhre = . if earnhre ==1 486. replace uhourse = . if lfsr94 >2 | lfsr94 <1 487. replace lfsr94 = . if lfsr94 < 0 488. } 489. if `1' >= 1996 { 490. replace I25c = . if I25c < 0 491. replace I25d = . if I25d < 0 492. } 493. if `1' == 1995 { 494. replace I25c = . if I25c < 0 495. replace I25d = . if I25d < 0 496. replace I25c = . if intmonth < 9 497. replace I25d = . if intmonth < 9 498. } 499. if `1' == 1994 { 500. drop I25c I25d 501. } 502. ** Hours, Unions . display "Hours, Unions" 503. if `1' >= 1994 { 504. replace reason94 = . if reason94< 0 505. replace absent94 = . if absent94< 0 506. replace studftpt = . if studftpt< 0 507. replace schenr = . if schenr < 0 508. replace schlvl = . if schlvl < 0 509. replace ftpt94 = . if ftpt94 < 0 510. replace hourslw = . if hourslw < 0 511. replace hourslw = 99 if hourslw >99 & hourslw != . 512. replace uhourse = . if uhourse < 0 513. replace why3594 = . if why3594 < 0 514. replace unionmme = . if unionmme< 0 515. replace unioncov = . if unioncov< 0 516. } 517. . ** Save and exit . compress 518. saveold /home/data/morg/annual/morg`2',replace 519. summarize 520. clear 521. capture ! /usr/bin/rm -f aef.dct /tmp/aef.raw 522. capture ! /bin/rm -f aef.dct /tmp/aef.raw 523. capture ! /usr/bin/chmod a+r /home/data/morg/annual/morg`2'.dta 524. capture ! /bin/chmod a+r /home/data/morg/annual/morg`2'.dta 525. capture ! /usr/bin/chmod g+w /home/data/morg/annual/morg`2'.dta 526. capture ! /bin/chmod g+w /home/data/morg/annual/morg`2'.dta 527. capture ! /usr/bin/chgrp web /home/data/morg/annual/morg`2'.dta 528. capture ! /bin/chgrp web /home/data/morg/annual/morg`2'.dta 529. 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 infile successful no observations obs 328406 (0 real changes made) (0 real changes made) (0 real changes made) (164626 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (163780 real changes made) Geography smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (42028 real changes made, 42028 to missing) replace centcity = . if centcity==4 | centcity<=0 (49005 real changes made, 49005 to missing) replace smsasize=. if smsasize<=0 generate byte smsa70 = smsasize (217182 missing values generated) drop smsasize drop unioncov unionmme occ80 ind80 Demography if 1979 > 1983 & 1979 < 1989 { (328406 real changes made) (75207 real changes made) Employment docc80 ** The renaming is part of the Census reweighting ; docc00 dind (79176 missing values generated) (dind: 249230 changes made) Wages (0 real changes made) (0 real changes made) (194 real changes made, 194 to missing) (0 real changes made) (0 real changes made) (213432 real changes made) (324472 real changes made) (323402 real changes made) (313917 real changes made) (300131 real changes made) (0 real changes made) Hours, Unions ym_file was float now int ym was float now int dind was float now byte file /home/data/morg/annual/morg79.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- minsamp | 328406 5.994848 1.999996 4 8 intmonth | 328406 6.511443 3.462432 1 12 hhid | 0 state | 328406 52.5708 26.07841 11 95 smsarank | 328406 5.473055 10.76297 0 57 -------------+-------------------------------------------------------- hurespli | 327050 1.724687 .8365564 1 7 hhnum | 328406 1.101719 .3509795 1 8 activlwr | 328406 2.83863 2.172591 1 7 hourslw | 185477 38.79885 14.24659 1 99 reasonlw | 48417 10.49121 3.602452 1 15 -------------+-------------------------------------------------------- absentlw | 13963 3.292272 2.504118 1 8 classer | 251035 1.387751 .7412465 1 5 ind70 | 249230 544.773 292.0613 17 937 occ70 | 249292 485.6882 278.2904 1 984 lineno | 328406 1.811788 1.098876 0 36 -------------+-------------------------------------------------------- relahh | 328406 2.415534 1.279357 1 6 age | 328406 41.98219 18.62521 16 99 marital | 328406 2.825609 2.490347 1 7 race | 328406 1.145302 .4195424 1 3 sex | 328406 1.531878 .4989835 1 2 -------------+-------------------------------------------------------- veteran | 154541 4.744734 1.829572 1 6 gradeat | 328406 11.97399 3.123871 0 18 gradecp | 328406 1.237526 .4255679 1 2 esr | 328406 2.586506 2.065169 1 7 weight | 328406 1475.611 591.762 2.07 12287.05 -------------+-------------------------------------------------------- smsastat | 286378 1.335193 .4720588 1 2 centcity | 279401 2.063414 .7872063 1 3 ethnic | 327428 7.802702 1.095115 1 9 ptstat | 328406 .5902755 1.756032 0 6 ftpt79 | 328406 1.011839 1.194556 0 5 -------------+-------------------------------------------------------- agri | 328406 .0250056 .1561423 0 1 docc70 | 328406 13.24538 13.88866 0 44 doinglw | 327722 2.897376 2.299609 1 8 hourslwa | 184730 38.74958 14.2993 0 99 uhours35 | 47550 1.652366 .4762241 1 2 -------------+-------------------------------------------------------- why35lw | 47787 10.49003 3.60313 1 15 class | 249210 2.001822 1.797082 1 8 uhours | 171135 38.04394 11.2012 0 99 paidhr | 170161 1.411857 .4921709 1 2 earnhr | 86404 509.9688 277.5786 1 9999 -------------+-------------------------------------------------------- uearnwk | 144603 235.5106 159.3734 0 999 earnwt | 328406 6024.412 2443.244 8.38 69937.99 eligible | 328406 1.649903 .4770009 1 2 uhourse | 171745 38.16458 10.98882 0 99 paidhre | 171745 1.409048 .4916596 1 2 -------------+-------------------------------------------------------- earnhre | 101493 518.3687 267.7485 50 9999 earnwke | 171745 238.8505 159.0336 0 999 I25a | 328406 .0119791 .1087916 0 1 I25b | 328406 .0152372 .1224953 0 1 I25c | 328406 .0441192 .2053602 0 1 -------------+-------------------------------------------------------- I25d | 328406 .0860977 .2805087 0 1 uearnwke | 101493 198.9823 126.4889 0 999 year | 328406 1979 0 1979 1979 ym_file | 328406 233.5114 3.462432 228 239 ym | 328406 224.0282 7.379738 212 236 -------------+-------------------------------------------------------- smsa70 | 111224 1.597632 .4903776 1 2 dind | 249230 29.16633 14.2219 1 52 . aef2 1980 80 79_83 infile successful no observations obs 385941 (0 real changes made) (0 real changes made) (0 real changes made) (193554 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (192387 real changes made) Geography smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (67179 real changes made, 67179 to missing) replace centcity = . if centcity==4 | centcity<=0 (77615 real changes made, 77615 to missing) replace smsasize=. if smsasize<=0 generate byte smsa70 = smsasize (267911 missing values generated) drop smsasize drop unioncov unionmme occ80 ind80 Demography if 1980 > 1983 & 1980 < 1989 { (385941 real changes made) (89646 real changes made) Employment docc80 ** The renaming is part of the Census reweighting ; docc00 dind (92385 missing values generated) (dind: 293556 changes made) Wages (0 real changes made) (0 real changes made) (183 real changes made, 183 to missing) (0 real changes made) (0 real changes made) (186472 real changes made) (381993 real changes made) (381103 real changes made) (370376 real changes made) (354350 real changes made) (0 real changes made) Hours, Unions ym_file was float now int ym was float now int dind was float now byte file /home/data/morg/annual/morg80.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- minsamp | 385941 5.993952 1.999993 4 8 intmonth | 385941 6.520352 3.451041 1 12 hhid | 0 state | 385941 53.65797 26.22837 11 95 smsarank | 385941 4.952438 10.35042 0 57 -------------+-------------------------------------------------------- hurespli | 384437 1.724842 .8655109 1 7 hhnum | 385941 1.095427 .3394733 1 7 activlwr | 385941 2.868309 2.195859 1 7 hourslw | 216132 38.49966 14.02785 1 99 reasonlw | 56568 10.2814 3.87557 1 15 -------------+-------------------------------------------------------- absentlw | 17884 3.587956 2.610534 1 8 classer | 295667 1.39462 .7447079 1 5 ind70 | 293556 548.5152 293.3144 17 937 occ70 | 293588 483.7522 279.7016 1 984 lineno | 385941 1.813052 1.107123 0 34 -------------+-------------------------------------------------------- relahh | 385941 2.420963 1.286907 1 6 age | 385941 41.92563 18.59812 16 99 marital | 385941 2.854579 2.498263 1 7 race | 385941 1.150461 .4314305 1 3 sex | 385941 1.530954 .4990416 1 2 -------------+-------------------------------------------------------- veteran | 181575 4.781683 1.813426 1 6 gradeat | 385941 12.04736 3.097579 0 18 gradecp | 385941 1.235577 .4243597 1 2 esr | 385941 2.60345 2.077903 1 7 weight | 385941 1275.922 668.2015 2.08 10839.98 -------------+-------------------------------------------------------- smsastat | 318762 1.348109 .4763716 1 2 centcity | 308326 2.075959 .798785 1 3 ethnic | 385132 7.801907 1.092797 1 9 ptstat | 385941 .611951 1.779153 0 6 ftpt79 | 385941 1.034845 1.207248 0 5 -------------+-------------------------------------------------------- agri | 385941 .026745 .1613375 0 1 docc70 | 385941 13.26434 13.90906 0 44 doinglw | 385329 2.931747 2.329072 1 8 hourslwa | 215418 38.46454 14.05505 0 99 uhours35 | 55751 1.668436 .4707793 1 2 -------------+-------------------------------------------------------- why35lw | 55937 10.28611 3.871961 1 15 class | 293588 2.015586 1.803881 1 8 uhours | 198034 37.86454 11.04479 0 99 paidhr | 196925 1.414615 .4926567 1 2 earnhr | 100535 552.944 301.2935 1 9999 -------------+-------------------------------------------------------- uearnwk | 169283 252.2269 168.8095 0 999 earnwt | 385941 5215.409 2736.843 8.36 44499.5 eligible | 385941 1.483162 .499717 1 2 uhourse | 199469 37.94065 10.89433 0 99 paidhre | 199469 1.413172 .4924044 1 2 -------------+-------------------------------------------------------- earnhre | 117054 560.8108 297.8469 50 9999 earnwke | 199469 256.7321 169.7244 0 999 I25a | 385941 .0102295 .1006227 0 1 I25b | 385941 .0125356 .1112586 0 1 I25c | 385941 .04033 .1967323 0 1 -------------+-------------------------------------------------------- I25d | 385941 .0818545 .2741432 0 1 uearnwke | 117054 212.3484 134.9266 0 999 year | 385941 1980 0 1980 1980 ym_file | 385941 245.5204 3.451041 240 251 ym | 385941 236.04 7.353872 224 248 -------------+-------------------------------------------------------- smsa70 | 118030 1.611794 .487344 1 2 dind | 293556 29.32555 14.30962 1 52 . aef2 1981 81 79_83 infile successful no observations obs 363984 (0 real changes made) (0 real changes made) (0 real changes made) (181500 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (182484 real changes made) Geography smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (58688 real changes made, 58688 to missing) replace centcity = . if centcity==4 | centcity<=0 (67882 real changes made, 67882 to missing) replace smsasize=. if smsasize<=0 generate byte smsa70 = smsasize (249176 missing values generated) drop smsasize drop unioncov unionmme occ80 ind80 Demography if 1981 > 1983 & 1981 < 1989 { (363984 real changes made) (85040 real changes made) Employment docc80 ** The renaming is part of the Census reweighting ; docc00 dind (88283 missing values generated) (dind: 275701 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) (177061 real changes made) (360601 real changes made) (359836 real changes made) (350091 real changes made) (335512 real changes made) (0 real changes made) Hours, Unions ym_file was float now int ym was float now int dind was float now byte file /home/data/morg/annual/morg81.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- minsamp | 363984 6.005407 1.999995 4 8 intmonth | 363984 6.390427 3.479246 1 12 hhid | 0 state | 363984 53.41301 26.16066 11 95 smsarank | 363984 5.114824 10.47965 0 57 -------------+-------------------------------------------------------- hurespli | 362842 1.720608 .8644023 1 7 hhnum | 363984 1.091317 .3339931 1 7 activlwr | 363984 2.901108 2.223085 1 7 hourslw | 203238 38.06018 13.91941 1 99 reasonlw | 58654 9.899632 3.85213 1 15 -------------+-------------------------------------------------------- absentlw | 16093 3.637979 2.650431 1 8 classer | 277842 1.38844 .7440087 1 5 ind70 | 275701 551.4165 291.868 17 937 occ70 | 275768 480.9712 280.1837 1 984 lineno | 363984 1.812363 1.105825 0 34 -------------+-------------------------------------------------------- relahh | 363984 2.420365 1.285449 1 6 age | 363984 42.01484 18.57653 16 99 marital | 363984 2.871975 2.50014 1 7 race | 363984 1.154534 .4380307 1 3 sex | 363984 1.530537 .4990673 1 2 -------------+-------------------------------------------------------- veteran | 171124 4.807549 1.802343 1 6 gradeat | 363984 12.09262 3.088726 0 18 gradecp | 363984 1.233716 .4231944 1 2 esr | 363984 2.624415 2.098625 1 7 weight | 363984 1402.229 685.6873 26.09 9906.14 -------------+-------------------------------------------------------- smsastat | 305296 1.343047 .4747279 1 2 centcity | 296102 2.071563 .7941762 1 3 ethnic | 363139 7.790452 1.123267 1 9 ptstat | 363984 .6157908 1.781938 0 6 ftpt79 | 363984 1.041059 1.212307 0 5 -------------+-------------------------------------------------------- agri | 363984 .0257209 .1583017 0 1 docc70 | 363984 13.17402 13.87955 0 44 doinglw | 363409 2.970155 2.364599 1 8 hourslwa | 202596 38.03145 13.9397 0 99 uhours35 | 58006 1.61404 .4868254 1 2 -------------+-------------------------------------------------------- why35lw | 58116 9.896965 3.85175 1 15 class | 275889 2.0039 1.798595 1 8 uhours | 185096 37.76877 10.95491 0 99 paidhr | 184021 1.414616 .4926569 1 2 earnhr | 94746 601.2668 326.1211 1 9900 -------------+-------------------------------------------------------- uearnwk | 159358 274.5421 182.9372 0 999 earnwt | 363984 5608.774 2754.411 114.46 40008.34 eligible | 363984 1.486453 .4998171 1 2 uhourse | 186923 37.81842 10.85401 0 99 paidhre | 186923 1.413363 .4924381 1 2 -------------+-------------------------------------------------------- earnhre | 109656 608.4292 322.6415 50 9900 earnwke | 186923 278.7924 183.6497 0 999 I25a | 363984 .0092944 .0959583 0 1 I25b | 363984 .0113961 .1061427 0 1 I25c | 363984 .0381693 .191605 0 1 -------------+-------------------------------------------------------- I25d | 363984 .0782232 .2685229 0 1 uearnwke | 109656 229.7955 146.6328 0 999 year | 363984 1981 0 1981 1981 ym_file | 363984 257.3904 3.479246 252 263 ym | 363984 247.8729 7.382528 236 260 -------------+-------------------------------------------------------- smsa70 | 114808 1.608512 .4880853 1 2 dind | 275701 29.44118 14.22292 1 52 . aef2 1982 82 79_83 infile successful no observations obs 351023 (0 real changes made) (0 real changes made) (0 real changes made) (174913 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (176110 real changes made) Geography smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (53627 real changes made, 53627 to missing) replace centcity = . if centcity==4 | centcity<=0 (61922 real changes made, 61922 to missing) replace smsasize=. if smsasize<=0 generate byte smsa70 = smsasize (237789 missing values generated) drop smsasize drop unioncov unionmme occ80 ind80 Demography if 1982 > 1983 & 1982 < 1989 { (351023 real changes made) (82295 real changes made) Employment docc80 ** The renaming is part of the Census reweighting ; docc00 dind (85949 missing values generated) (dind: 265074 changes made) Wages (0 real changes made) (0 real changes made) (130 real changes made, 130 to missing) (0 real changes made) (0 real changes made) (175226 real changes made) (348192 real changes made) (347715 real changes made) (339353 real changes made) (326914 real changes made) (0 real changes made) Hours, Unions ym_file was float now int ym was float now int dind was float now byte file /home/data/morg/annual/morg82.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- minsamp | 351023 6.00682 1.999991 4 8 intmonth | 351023 6.524478 3.460076 1 12 hhid | 0 state | 351023 53.1937 26.11066 11 95 smsarank | 351023 5.22276 10.55091 0 57 -------------+-------------------------------------------------------- hurespli | 349992 1.701105 .8117339 1 7 hhnum | 351023 1.087296 .3256449 1 7 activlwr | 351023 2.949265 2.238934 1 7 hourslw | 191874 37.88886 14.11454 1 99 reasonlw | 54026 9.810813 4.135223 1 15 -------------+-------------------------------------------------------- absentlw | 16814 3.959201 2.691762 1 8 classer | 267523 1.393252 .7582854 1 5 ind70 | 265074 554.4574 290.3273 17 937 occ70 | 265127 479.8098 282.1107 1 984 lineno | 351023 1.811616 1.096687 0 36 -------------+-------------------------------------------------------- relahh | 351023 2.425223 1.289619 1 6 age | 351023 42.21639 18.5831 16 99 marital | 351023 2.885671 2.500958 1 7 race | 351023 1.157038 .4426517 1 3 sex | 351023 1.531182 .4990275 1 2 -------------+-------------------------------------------------------- veteran | 164825 4.82846 1.792136 1 6 gradeat | 351023 12.16515 3.065511 0 18 gradecp | 351023 1.229711 .4206478 1 2 esr | 351023 2.654715 2.101672 1 7 weight | 351023 1472.308 693.6578 23.03 11759.53 -------------+-------------------------------------------------------- smsastat | 297396 1.339867 .4736645 1 2 centcity | 289101 2.067911 .7916542 1 3 ethnic | 350213 7.787601 1.129287 1 9 ptstat | 351023 .6462369 1.8112 0 6 ftpt79 | 351023 1.073257 1.235784 0 5 -------------+-------------------------------------------------------- agri | 351023 .0258786 .1587735 0 1 docc70 | 351023 13.14218 13.90419 0 44 doinglw | 350553 3.025326 2.390278 1 8 hourslwa | 191404 37.86076 14.1391 0 99 uhours35 | 53468 1.671149 .4698001 1 2 -------------+-------------------------------------------------------- why35lw | 53537 9.809795 4.137438 1 15 class | 266066 2.01556 1.820293 1 8 uhours | 174273 37.48574 11.12291 0 99 paidhr | 173471 1.418272 .4932767 1 2 earnhr | 90211 634.0993 355.9528 1 9999 -------------+-------------------------------------------------------- uearnwk | 152553 291.13 196.201 0 999 earnwt | 351023 5889.487 2787.22 82.18 46281.37 eligible | 351023 1.499187 .5000001 1 2 uhourse | 175797 37.51368 11.0329 0 99 paidhre | 175797 1.416532 .4929852 1 2 -------------+-------------------------------------------------------- earnhre | 102572 641.9364 350.0285 50 9999 earnwke | 175797 295.3449 197.2201 0 999 I25a | 351023 .008065 .0894426 0 1 I25b | 351023 .0094239 .0966183 0 1 I25c | 351023 .0332457 .1792777 0 1 -------------+-------------------------------------------------------- I25d | 351023 .0686821 .2529131 0 1 uearnwke | 102572 239.388 155.7694 0 999 year | 351023 1982 0 1982 1982 ym_file | 351023 269.5245 3.460076 264 275 ym | 351023 260.0023 7.362244 248 272 -------------+-------------------------------------------------------- smsa70 | 113234 1.608386 .4881132 1 2 dind | 265074 29.57871 14.12654 1 52 . aef2 1983 83 79_83 infile successful no observations obs 348521 (0 real changes made) (0 real changes made) (0 real changes made) (174479 real changes made) (0 real changes made) (0 real changes made) (0 real changes made) (174042 real changes made) Geography smsasize = . if smsasize <=0 inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (53411 real changes made, 53411 to missing) replace centcity = . if centcity==4 | centcity<=0 (61562 real changes made, 61562 to missing) replace smsasize=. if smsasize<=0 generate byte smsa70 = smsasize (236428 missing values generated) drop smsasize Demography if 1983 > 1983 & 1983 < 1989 { (348521 real changes made) (82076 real changes made) Employment docc80 (86372 missing values generated) recode docc80 (docc80: 262149 changes made) ** The renaming is part of the Census reweighting ; docc00 dind (86372 missing values generated) (dind: 262149 changes made) Wages (0 real changes made) (0 real changes made) (130 real changes made, 130 to missing) (0 real changes made) (0 real changes made) (174589 real changes made) (345921 real changes made) (345442 real changes made) (336774 real changes made) (324506 real changes made) (0 real changes made) Hours, Unions ym_file was float now int ym was float now int docc80 was int now byte dind was float now byte file /home/data/morg/annual/morg83.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- minsamp | 348521 5.997492 2.000001 4 8 intmonth | 348521 6.513714 3.457829 1 12 hhid | 0 state | 348521 53.37944 26.15401 11 95 smsarank | 348521 5.219482 10.54804 0 57 -------------+-------------------------------------------------------- hurespli | 347373 1.684253 .7921095 1 7 hhnum | 348521 1.085496 .3217394 1 8 activlwr | 348521 2.950118 2.245813 1 7 hourslw | 190986 38.20078 14.14888 1 99 reasonlw | 51906 9.915039 4.043624 1 15 -------------+-------------------------------------------------------- absentlw | 15467 3.835004 2.677151 1 8 classer | 264498 1.397028 .7614176 1 5 ind70 | 262437 708.7819 144.5394 17 937 occ80 | 262149 404.1251 243.9768 3 905 lineno | 348521 1.810399 1.088934 0 32 -------------+-------------------------------------------------------- relahh | 348521 2.431544 1.295036 1 6 age | 348521 42.37974 18.57154 16 99 marital | 348521 2.897561 2.502914 1 7 race | 348521 1.158722 .4452776 1 3 sex | 348521 1.529853 .4991087 1 2 -------------+-------------------------------------------------------- veteran | 164054 4.858675 1.779971 1 6 gradeat | 348521 12.23501 3.062933 0 18 gradecp | 348521 1.225246 .4177449 1 2 esr | 348521 2.661447 2.114205 1 7 weight | 348521 1499.613 712.4353 22.24 10617.25 -------------+-------------------------------------------------------- ind80 | 262149 547.3287 286.0425 10 991 unioncov | 139633 1.960274 .1953144 1 2 smsastat | 295110 1.34234 .4744936 1 2 centcity | 286959 2.07063 .7927873 1 3 ethnic | 347769 7.784391 1.133441 1 9 -------------+-------------------------------------------------------- ptstat | 348521 .6392183 1.801896 0 6 ftpt79 | 348521 1.067921 1.228882 0 5 agri | 348521 .0253213 .1570993 0 1 doinglw | 348024 3.023527 2.392589 1 8 hourslwa | 190508 38.17607 14.17428 0 99 -------------+-------------------------------------------------------- uhours35 | 51339 1.700345 .4581114 1 2 why35lw | 51453 9.915846 4.044108 1 15 class | 263375 2.034441 1.832809 1 8 uhours | 172494 37.46962 11.1351 0 99 paidhr | 172032 1.414504 .4926377 1 2 -------------+-------------------------------------------------------- earnhr | 89765 655.7097 370.8328 1 9999 uearnwk | 150653 303.3553 206.3797 0 999 earnwt | 348521 5999.475 2862.394 90.01 41428.26 eligible | 348521 1.500943 .4999998 1 2 uhourse | 173932 37.50175 11.05899 0 99 -------------+-------------------------------------------------------- paidhre | 173932 1.412253 .4922417 1 2 earnhre | 102228 662.8943 362.3422 50 9999 earnwke | 173932 307.5514 207.0172 0 999 unionmme | 173932 1.803038 .3977045 1 2 I25a | 348521 .0074601 .0860492 0 1 -------------+-------------------------------------------------------- I25b | 348521 .0088345 .0935759 0 1 I25c | 348521 .0337053 .1804698 0 1 I25d | 348521 .0689055 .2532937 0 1 uearnwke | 102228 247.3718 161.8239 0 999 year | 348521 1983 0 1983 1983 -------------+-------------------------------------------------------- ym_file | 348521 281.5137 3.457829 276 287 ym | 348521 272.0219 7.366328 260 284 smsa70 | 112093 1.612152 .4872617 1 2 docc80 | 262149 24.77129 12.15505 1 46 dind | 262149 29.65229 14.00936 1 52 . aef2 1984 84 84_88 infile successful no observations obs 343665 (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) 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 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 /home/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 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 year | 343665 1984 0 1984 1984 ym_file | 343665 293.4973 3.455863 288 299 ym | 343665 283.9364 7.335542 272 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 infile successful no observations obs 343591 (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) 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 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 /home/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 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 year | 343591 1985 0 1985 1985 ym_file | 343591 305.4986 3.454322 300 311 ym | 343591 295.9766 7.371532 284 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 infile successful no observations obs 338051 (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) 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 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 /home/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 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 year | 338051 1986 0 1986 1986 ym_file | 338051 317.4743 3.461136 312 323 -------------+-------------------------------------------------------- ym | 338051 307.981 7.361314 296 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 infile successful no observations obs 337000 (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) 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 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 /home/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 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 year | 337000 1987 0 1987 1987 ym_file | 337000 329.5133 3.454732 324 335 -------------+-------------------------------------------------------- ym | 337000 320.0356 7.365623 308 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 infile successful no observations obs 320821 (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) 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 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 /home/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 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 year | 320821 1988 0 1988 1988 ym_file | 320821 341.4402 3.482284 336 347 -------------+-------------------------------------------------------- ym | 320821 331.9666 7.369594 320 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 infile successful no observations obs 324711 (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) 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 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 /home/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 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 year | 324711 1989 0 1989 1989 ym_file | 324711 353.558 3.465807 348 359 ym | 324711 344.1261 7.369432 332 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 infile successful no observations obs 341162 (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) 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 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 /home/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 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 year | 341162 1990 0 1990 1990 ym_file | 341162 365.5065 3.456717 360 371 ym | 341162 355.9923 7.355988 344 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 infile successful no observations obs 337649 (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) 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 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 /home/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 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 year | 337649 1991 0 1991 1991 ym_file | 337649 377.5031 3.458029 372 383 ym | 337649 367.9328 7.355969 356 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 infile successful no observations obs 332184 (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) 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 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 /home/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 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 -------------+-------------------------------------------------------- year | 332184 1992 0 1992 1992 ym_file | 332184 389.4972 3.458479 384 395 ym | 332184 379.9522 7.369413 368 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 infile successful no observations obs 328085 (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) 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 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 /home/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 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 -------------+-------------------------------------------------------- year | 328085 1993 0 1993 1993 ym_file | 328085 401.4935 3.454551 396 407 ym | 328085 391.9711 7.344123 380 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 infile successful no observations obs 319234 (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 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) (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) 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) 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 /home/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 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 ind80 | 220332 578.7263 277.2676 10 991 -------------+-------------------------------------------------------- occ80 | 220332 372.2304 247.4334 3 905 uhourse | 181677 38.95988 12.07523 0 99 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 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 year | 319234 1994 0 1994 1994 ym_file | 319234 413.4879 3.454723 408 419 ym | 319234 403.9302 7.369162 392 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 infile successful no observations obs 314351 (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 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) (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) (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) 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 /home/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 -------------+-------------------------------------------------------- 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 ind80 | 217021 580.0291 276.9189 10 991 occ80 | 217021 368.2459 249.0915 3 905 -------------+-------------------------------------------------------- uhourse | 179741 39.09786 11.93249 0 99 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 -------------+-------------------------------------------------------- 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 year | 314351 1995 0 1995 1995 ym_file | 314351 425.4593 3.446737 420 431 -------------+-------------------------------------------------------- ym | 314351 416.0062 7.355723 404 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 infile successful no observations obs 277856 (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 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) (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) (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) ym_file was float now int ym was float now int docc80 was int now byte dind was float now byte file /home/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 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 ind80 | 192442 580.1935 276.8235 10 991 occ80 | 192442 366.6342 248.9975 4 905 -------------+-------------------------------------------------------- uhourse | 158435 39.1856 11.88232 0 99 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 -------------+-------------------------------------------------------- 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 year | 277856 1996 0 1996 1996 ym_file | 277856 437.5366 3.458798 432 443 -------------+-------------------------------------------------------- ym | 277856 428.0621 7.36468 416 440 docc80 | 192442 22.55874 12.71377 1 46 dind | 192442 31.12334 13.49404 1 52 . aef2 1997 97 94_97 infile successful no observations obs 280655 (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 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) (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) (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) ym_file was float now int ym was float now int docc80 was int now byte dind was float now byte file /home/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 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 ind80 | 194787 581.8828 276.1969 10 991 -------------+-------------------------------------------------------- occ80 | 194787 364.6048 249.3395 4 905 uhourse | 161480 39.18818 11.72508 0 99 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 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 year | 280655 1997 0 1997 1997 -------------+-------------------------------------------------------- ym_file | 280655 449.5096 3.458554 444 455 ym | 280655 440.0269 7.348757 428 452 docc80 | 194787 22.42661 12.73607 1 46 dind | 194787 31.18692 13.46024 1 52 . aef2 1998 98 98_02 infile successful no observations obs 280392 (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 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) (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) (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) 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 /home/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 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 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 -------------+-------------------------------------------------------- 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 year | 280392 1998 0 1998 1998 ym_file | 280392 461.5107 3.456178 456 467 -------------+-------------------------------------------------------- ym | 280392 452.0481 7.356813 440 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 infile successful no observations obs 282716 (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 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) (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) (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) 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 /home/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 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 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 -------------+-------------------------------------------------------- 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 -------------+-------------------------------------------------------- year | 282716 1999 0 1999 1999 ym_file | 282716 473.5165 3.459193 468 479 ym | 282716 464.0493 7.354865 452 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 infile successful no observations obs 283236 total obs pre-revise 2000 283236 file /homes/data/morg/annual/rw/annual.dta saved (259098 observations deleted) 1 jan obs 24138 (127449 observations deleted) file /homes/data/morg/annual/rw/jan.dta saved (258977 observations deleted) 2 feb obs 24259 (126222 observations deleted) file /homes/data/morg/annual/rw/feb.dta saved (259756 observations deleted) 3 mar obs 23480 (126673 observations deleted) file /homes/data/morg/annual/rw/mar.dta saved (259784 observations deleted) 4 apr obs 23452 (127495 observations deleted) file /homes/data/morg/annual/rw/apr.dta saved (259859 observations deleted) 5 may obs 23377 (127513 observations deleted) file /homes/data/morg/annual/rw/may.dta saved (259858 observations deleted) 6 jun obs 23378 (128017 observations deleted) file /homes/data/morg/annual/rw/jun.dta saved (259670 observations deleted) 7 jul obs 23566 (127434 observations deleted) file /homes/data/morg/annual/rw/jul.dta saved (259798 observations deleted) 8 aug obs 23438 (127194 observations deleted) file /homes/data/morg/annual/rw/aug.dta saved (259527 observations deleted) 9 sep obs 23709 (127006 observations deleted) file /homes/data/morg/annual/rw/sep.dta saved (259673 observations deleted) 10 oct obs 23563 (126989 observations deleted) file /homes/data/morg/annual/rw/oct.dta saved (259662 observations deleted) 11 nov obs 23574 (127098 observations deleted) file /homes/data/morg/annual/rw/nov.dta saved (259934 observations deleted) 12 dec obs 23302 (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 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) (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) (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) 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 /home/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 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 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 -------------+-------------------------------------------------------- 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 -------------+-------------------------------------------------------- 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 475.8705 7.342638 464 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 infile successful no observations obs 303036 total obs pre-revise 2001 303036 file /homes/data/morg/annual/rw/annual.dta saved (279404 observations deleted) 1 jan obs 23632 (124875 observations deleted) file /homes/data/morg/annual/rw/jan.dta saved (279455 observations deleted) 2 feb obs 23581 (124184 observations deleted) file /homes/data/morg/annual/rw/feb.dta saved (280298 observations deleted) 3 mar obs 22738 (124008 observations deleted) file /homes/data/morg/annual/rw/mar.dta saved (280587 observations deleted) 4 apr obs 22449 (124399 observations deleted) file /homes/data/morg/annual/rw/apr.dta saved (280419 observations deleted) 5 may obs 22617 (124564 observations deleted) file /homes/data/morg/annual/rw/may.dta saved (280445 observations deleted) 6 jun obs 22591 (125024 observations deleted) file /homes/data/morg/annual/rw/jun.dta saved (275493 observations deleted) 7 jul obs 27543 (147563 observations deleted) file /homes/data/morg/annual/rw/jul.dta saved (275658 observations deleted) 8 aug obs 27378 (149145 observations deleted) file /homes/data/morg/annual/rw/aug.dta saved (275476 observations deleted) 9 sep obs 27560 (148656 observations deleted) file /homes/data/morg/annual/rw/sep.dta saved (275072 observations deleted) 10 oct obs 27964 (148542 observations deleted) file /homes/data/morg/annual/rw/oct.dta saved (275172 observations deleted) 11 nov obs 27864 (148458 observations deleted) file /homes/data/morg/annual/rw/nov.dta saved (275917 observations deleted) 12 dec obs 27119 (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 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) (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) (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) 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 /home/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 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 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 -------------+-------------------------------------------------------- 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 -------------+-------------------------------------------------------- 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.2195 7.391867 476 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 infile successful no observations obs 329972 total obs pre-revise 2002 329972 file /homes/data/morg/annual/rw/annual.dta saved (302400 observations deleted) 1 jan obs 27572 (148089 observations deleted) file /homes/data/morg/annual/rw/jan.dta saved (302521 observations deleted) 2 feb obs 27451 (148216 observations deleted) file /homes/data/morg/annual/rw/feb.dta saved (302697 observations deleted) 3 mar obs 27275 (148082 observations deleted) file /homes/data/morg/annual/rw/mar.dta saved (302919 observations deleted) 4 apr obs 27053 (148938 observations deleted) file /homes/data/morg/annual/rw/apr.dta saved (302762 observations deleted) 5 may obs 27210 (149450 observations deleted) file /homes/data/morg/annual/rw/may.dta saved (302564 observations deleted) 6 jun obs 27408 (149024 observations deleted) file /homes/data/morg/annual/rw/jun.dta saved (302241 observations deleted) 7 jul obs 27731 (149333 observations deleted) file /homes/data/morg/annual/rw/jul.dta saved (302943 observations deleted) 8 aug obs 27029 (150315 observations deleted) file /homes/data/morg/annual/rw/aug.dta saved (302288 observations deleted) 9 sep obs 27684 (149484 observations deleted) file /homes/data/morg/annual/rw/sep.dta saved (301863 observations deleted) 10 oct obs 28109 (149145 observations deleted) file /homes/data/morg/annual/rw/oct.dta saved (302039 observations deleted) 11 nov obs 27933 (148868 observations deleted) file /homes/data/morg/annual/rw/nov.dta saved (302455 observations deleted) 12 dec obs 27517 (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 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) (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) (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) 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 /home/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 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 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 -------------+-------------------------------------------------------- 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 -------------+-------------------------------------------------------- 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.0412 7.364449 488 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 infile successful no observations obs 328608 (33 real changes made, 33 to missing) (0 real changes made) (0 real changes made) (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 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) (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) (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) 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 /home/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 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 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 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 -------------+-------------------------------------------------------- linedad | 0 linemom | 0 year | 328608 2003 0 2003 2003 ym_file | 328608 521.4785 3.450795 516 527 ym | 328608 511.9502 7.322876 500 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 infile successful no observations obs 322929 (60 real changes made, 60 to missing) (0 real changes made) (0 real changes made) (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 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) (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) (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) 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 /home/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 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 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 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 linedad | 0 linemom | 0 -------------+-------------------------------------------------------- year | 322929 2004 0 2004 2004 ym_file | 322929 533.4966 3.455653 528 539 ym | 322929 523.8955 7.37158 512 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 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 obs 322991 (52 real changes made, 52 to missing) (53493 real changes made, 53493 to missing) (53493 real changes made, 53493 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 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) (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) (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) 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 /home/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 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 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 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 linedad | 0 -------------+-------------------------------------------------------- linemom | 0 year | 322991 2005 0 2005 2005 ym_file | 322991 545.4933 3.45407 540 551 ym | 322991 535.9568 7.381615 524 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 infile successful no observations obs 320551 (38 real changes made, 38 to missing) (320551 real changes made, 320551 to missing) (320551 real changes made, 320551 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 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) (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) (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) 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 /home/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 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 -------------+-------------------------------------------------------- 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 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 linedad | 0 linemom | 0 -------------+-------------------------------------------------------- year | 320551 2006 0 2006 2006 ym_file | 320551 557.5051 3.457604 552 563 ym | 320551 547.9806 7.352725 536 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 infile successful no observations obs 318207 (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 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) (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) (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) 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 /home/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 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 -------------+-------------------------------------------------------- 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 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 -------------+-------------------------------------------------------- year | 318207 2007 0 2007 2007 ym_file | 318207 569.5059 3.447105 564 575 ym | 318207 560.0105 7.343953 548 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 . . exit, clear end of do-file . exit,clear