------------------------------------------------------------------------------- log: /disk/nber10/SCCS/morg/sources/annual2003.log log type: text opened on: 4 Mar 2004, 13:10:00 . set memory 1000m (1024000k) . 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 . ! /bin/rm -f /tmp/aef.raw aef.dct dcthead . * run with stata6 -p0 do annual2002 to get Stata 5 format . * run with nohup stata -b do annual2002 & to run in batch mode . ! echo >dcthead dictionary using /tmp/aef.raw . program define aef2 1. * '-A' are missing value indicators in the earlier files. . if `1' <= 1993 { 2. !zcat /home/data/morg/raw/morg`2'.Z |tr "\-A" " " >/tmp/aef.raw 3. } 4. if `1' >= 1994 { 5. !zcat /home/data/morg/raw/morg`2'.Z >/tmp/aef.raw 6. } 7. ! cat /home/data/morg/sources/dcthead /home/data/morg/sources/aef`3'.dbd > > ./aef.dct 8. quietly infile using aef if age>15&age!=. 9. #delimit cr delimiter now cr . generate int year = `1' 10. quietly describe 11. display "obs " r(N) 12. ** Revised Census 2000-based Weights. Impact employment and union variabl > es . if inlist( `1', 2000 , 2001 , 2002 ) { 13. gen id = _n 14. local rwlist qstnum intmonth year occurnum 15. sort `rwlist' 16. quietly describe 17. display "total obs pre-revise `1' " r(N) 18. save /homes/data/morg/annual/rw/annual, replace 19. rw `2' jan 1 20. rw `2' feb 2 21. rw `2' mar 3 22. rw `2' apr 4 23. rw `2' may 5 24. rw `2' jun 6 25. rw `2' jul 7 26. rw `2' aug 8 27. rw `2' sep 9 28. rw `2' oct 10 29. rw `2' nov 11 30. rw `2' dec 12 31. local monlist feb mar apr may jun jul aug sep oct nov dec 32. clear 33. display "using jan" 34. use /homes/data/morg/annual/rw/jan 35. foreach mon in `monlist' { 36. append using /home/data/morg/annual/rw/`mon' 37. } 38. quietly describe 39. display "total obs post-revise" r(N) 40. display "start renaming" 41. rename ind80 ind80p 42. rename neio1icd ind02 43. rename class94 class94p 44. rename earnwt earnwtp 45. rename nworwgt earnwt 46. rename weight weightp 47. display "done renaming" 48. display "drop 2000" 49. if `1' == 2000 { 50. drop neerncov neernlab 51. } 52. display "rename 2001-2002" 53. if inlist( `1' , 2001 , 2002 ) { 54. rename unioncov punionco 55. rename neerncov unioncov 56. rename unionmme punionme 57. rename neernlab unionmme 58. } 59. sort id 60. drop id _merge 61. } 62. . * Miscellaneous (record keeping) variables . if `1' == 1994 { 63. replace hhid = hhid94 64. drop hhid94 65. } 66. if `1'== 1995 { 67. replace hhid = hhid94 if intmonth<9 68. drop hhid94 69. } 70. if inlist( `1', 1996 , 1997 ) { 71. drop hhid94 72. } 73. * Geography . display "Geography" 74. if `1' >= 1996 { 75. replace smsa93 = . if smsa93<2 76. } 77. display "smsasize = . if smsasize <=0" 78. replace smsasize = . if smsasize <=0 79. if `1' == 1995 { 80. replace smsastat = smsa995 if intmonth>8 81. replace icntcity = icntct94 if intmonth<9 82. replace centcity = centcitx if intmonth<9 83. replace smsa93 = . if intmonth>=9 & smsa93<2 84. replace smsa93 = . if intmonth<9 85. drop pmsarank 86. generate smsa80 = smsasize if intmonth < 10 87. } 88. display "inlisting 96 97" 89. if inlist( `1', 1996 , 1997 ) { 90. replace smsastat = smsa995 91. } 92. display "replace smsastat = . if smsastat==3 | smsastat<0" 93. replace smsastat = . if smsastat==3 | smsastat<0 94. if `1' == 1994 { 95. drop smsa93 96. replace centcity = centcitx 97. replace icntcity = icntct94 98. replace pmsarank = . if intmonth > 3 99. replace pmsarank = . if pmsarank <= 0 100. replace cmsarank = . if intmonth > 3 101. } 102. if inlist( `1', 1996 , 1997 ) { 103. drop pmsarank 104. } 105. if `1' >= 1994 & `1' <= 1997 { 106. drop centcitx icntct94 smsa995 107. } 108. if `1' >= 1994 { 109. replace hurespli =. if hurespli <0 110. replace peinusyr = . if peinusyr < 0 111. } 112. display "replace centcity = . if centcity==4 | centcity<=0" 113. replace centcity = . if centcity==4 | centcity<=0 114. if `1' >= 1986 & `1' < 1994 { 115. replace pmsarank = . if pmsarank<=0 116. } 117. if `1' >= 1995 & `1' <= 1997 { 118. drop cmsarank 119. } 120. if `1' >= 1986 { 121. replace icntcity = . if icntcity<=0 122. } 123. if `1' > 1984 & `1' < 1995 { 124. replace cmsarank = . if cmsarank<=0 125. } 126. if `1' >= 1989 { 127. replace msafips = . if msafips <=0 128. replace cmsacode = . if cmsacode<=0 129. } 130. if `1' == 1983 { 131. drop docc70 occ70 132. } 133. if `1' == 1985 { 134. replace smsarank = . if intmonth > 9 135. } 136. if `1' == 1984 { 137. display "drop icntcity pmsarank cmsarank" 138. drop icntcity pmsarank cmsarank 139. } 140. if `1' == 1985 & intmonth < 10 { 141. drop icntcity pmsarank cmsarank 142. } 143. if `1' == 1994 { 144. replace cmsarank = . if intmonth>3 145. } 146. display "replace smsasize=. if smsasize<=0" 147. **should line below be commented out??? . replace smsasize=. if smsasize<=0 148. if `1' < 1985 { 149. display "generate byte smsa70 = smsasize" 150. generate byte smsa70 = smsasize 151. } 152. if `1' > 1985 & `1' < 1995 { 153. generate byte smsa80 = smsasize 154. } 155. if `1' == 1985 { 156. generate byte smsa70 = smsasize if intmonth<10 157. } 158. if `1' == 1985 { 159. generate byte smsa80 = smsasize if intmonth>9 160. } 161. display "drop smsasize" 162. drop smsasize 163. if `1' > 1985 & `1' < 1989 { 164. drop smsarank 165. } 166. if `1' < 1983 { 167. display "drop unioncov unionmme occ80 ind80" 168. drop unioncov unionmme occ80 ind80 169. } 170. . * Demography . display "Demography" 171. if `1' > 1983 & `1' < 1994 { 172. replace ownchild = . if ownchild ==0 173. replace ownchild = ownchild - 1 174. generate int ch613=chldpres 175. generate int ch1417=chldpres 176. } 177. display "if `1' > 1983 & `1' < 1989 {" 178. if `1' > 1983 & `1' < 1989 { 179. generate int ch05= chldpres 180. recode ch05 (4 6/8 = 1) (0/3 5 = 0) 181. recode ch613 (3 5 7/8 = 1) (0/2 4 6 = 0) 182. recode ch1417 (2 5/6 8 =1) (0/1 3/4 7 = 0) 183. } 184. if `1' > 1988 & `1' < 1994 { 185. display "if `1' > 1988 & `1' < 1994 {" 186. generate int ch02 = chldpres 187. generate int ch35 = chldpres 188. recode ch02 (2 6/8 12/14 16 = 1) (0/1 3/5 9/11 15 = 0) 189. recode ch35 (3 6 9/10 12/13 15/16 = 1) (0/2 4/5 7/8 11 14 = 0) 190. recode ch613 (4 7 9 11/12 14/16 = 1) (0/3 5/6 8 10 13 = 0) 191. recode ch1417 (5 8 10/11 13/16 = 1) (0/4 6/7 9 12 = 0 ) 192. generate int ch05 = ch02 193. replace ch05 = ch35 if ch35 == 1 194. label variable ch02 "Children 0-2" 195. label variable ch35 "Children 3-5" 196. } 197. if `1' > 1983 & `1' < 1994 { 198. display "if `1' > 1983 & `1' < 1994 {" 199. label variable ch05 "Children 0-5" 200. label variable ch613 "Children 6-13" 201. label variable ch1417 "Children 6-17" 202. } 203. if `1' == 1998 { 204. drop ownchild chldpres 205. } 206. if `1' >= 1999 { 207. replace ownchild = . if ownchild < 0 208. replace chldpres = . if chldpres < 0 209. generate int ch02 = chldpres 210. generate int ch35 = chldpres 211. generate int ch613 = chldpres 212. generate int ch1417 = chldpres 213. recode ch02 (1 5/7 11/13 15 = 1) (0 2/4 8/10 14 = 0) 214. recode ch35 (2 5 8/9 11/12 14/15 = 1) (0/1 3/4 6/7 10 13 =0) 215. recode ch613 (3 6 8 10/11 13/15 = 1) (0/2 4/5 7 9 12 = 0) 216. recode ch1417 (4 7 9/10 12/15 = 1) (0/3 5/6 8 11 = 0) 217. generate int ch05 = ch02 218. replace ch05 = ch35 if ch35 == 1 219. } 220. . if `1' == 1999 { 221. replace ownchild = . if intmonth < 10 222. replace chldpres = . if intmonth < 10 223. replace ch613 = . if intmonth < 10 224. replace ch1417 = . if intmonth < 10 225. replace ch05 = . if intmonth < 10 226. replace ch02 = . if intmonth < 10 227. replace ch35 = . if intmonth < 10 228. } 229. if `1' > 1988 & `1' < 1992 { 230. drop grade92 231. } 232. if `1' < 1989 { 233. replace gradeat = gradeat - 1 234. replace marital = 7 if marital==5 235. } 236. if `1' > 1991 { 237. replace grade92 = . if grade92 < 0 238. } 239. if `1' >= 1998 { 240. replace ged = . if ged < 0 241. replace gedhigr = . if gedhigr < 0 242. replace yrcoll = . if yrcoll < 0 243. replace grprof = . if grprof < 0 244. replace gr6cor = . if gr6cor < 0 245. replace ms123 = . if ms123 < 0 246. generate double ihigrdc = . 247. label var ihigrdc "Imputed highest grade completed" 248. replace ihigrdc = 0 if grade92==31 249. replace ihigrdc = 2.5 if grade92==32 250. replace ihigrdc = 5.5 if grade92==33 251. replace ihigrdc = 7.5 if grade92==34 252. replace ihigrdc = 9 if grade92==35 253. replace ihigrdc =10 if grade92==36 254. replace ihigrdc =11 if grade92==37 255. replace ihigrdc =12 if grade92==38 256. replace ihigrdc = 0 if grade92==39 & ged==2 & gedhigr==1 257. replace ihigrdc = 2.5 if grade92==39 & ged==2 & gedhigr==2 258. replace ihigrdc = 5.5 if grade92==39 & ged==2 & gedhigr==3 259. replace ihigrdc = 7.5 if grade92==39 & ged==2 & gedhigr==4 260. replace ihigrdc = 9 if grade92==39 & ged==2 & gedhigr==5 261. replace ihigrdc = 10 if grade92==39 & ged==2 & gedhigr==6 262. replace ihigrdc = 11 if grade92==39 & ged==2 & gedhigr==7 263. replace ihigrdc = 12 if grade92==39 & ged==2 & gedhigr==8 264. replace ihigrdc = 12 if ged==1 265. replace ihigrdc = 12 if grade92>=40 & grade92<=42 & yrcoll==1 266. replace ihigrdc = 13 if grade92>=40 & grade92<=42 & yrcoll==2 267. replace ihigrdc = 14 if grade92>=40 & grade92<=42 & yrcoll==3 268. replace ihigrdc = 15 if grade92>=40 & grade92<=42 & yrcoll==4 269. replace ihigrdc = 16 if grade92>=40 & grade92<=42 & yrcoll==5 270. replace ihigrdc = 16 if grade92==43 & grprof==2 271. replace ihigrdc = 17 if grade92==43 & gr6cor==2 272. replace ihigrdc = 18 if grade92==43 & gr6cor==1 273. replace ihigrdc = 17 if grade92==44 & ms123==1 274. replace ihigrdc = 18 if grade92==44 & ms123>=2 & ms123<. 275. replace ihigrdc = 18 if grade92==45 | grade92==46 276. } 277. if inlist( `1', 1992 , 1993 ) { 278. drop gradecp gradeat 279. } 280. if `1' == 1995 { 281. replace relref94 = . if intmonth > 2 282. replace relref95 = . if intmonth < 3 283. } 284. if inlist( `1', 1996 , 1997 ) { 285. drop relref94 286. } 287. if `1' == 1994 { 288. drop relref95 289. } 290. if `1' >= 1994 { 291. replace veteran = . if veteran < 0 292. replace penatvty = . if penatvty < 0 293. replace pemntvty = . if pemntvty < 0 294. replace pefntvty = . if pefntvty < 0 295. replace prcitshp = . if prcitshp < 0 296. replace prcitflg = . if prcitflg < 0 297. } 298. if `1' > 1989 { 299. replace ethnic = . if ethnic < 0 300. replace ethnic = . if ethnic >= 10 301. } 302. . * Employment . display "Employment" 303. if `1' >= 1994 & `1' <= 2002 { 304. replace occ80 = . if occ80 <0 305. replace ind80 = . if ind80 < 10 306. replace class94 = . if class94<0 307. } 308. if `1' >= 2003 { 309. replace occ00 = . if occ00 <0 310. replace ind02 = . if ind02 < 10 311. replace class94 = . if class94<0 312. } 313. #delimit ; delimiter now ; . ; . display "docc80" ; 314. if `1' >= 1983 & `1' <= 2002 { > display "generate int docc80=occ80;"; 315. generate int docc80=occ80; 316. display "recode docc80"; 317. 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); 318. } ; 319. display "** The renaming is part of the Census reweighting ; " ; 320. if inlist( `1', 2000 , 2001 , 2002 ) { > rename docc80 docc80p ; 321. rename nrdtocc1 docc80 ; 322. } ; 323. display "docc00" ; 324. if `1' >= 2003 { > display "generate int docc00=occ00;"; 325. generate int docc00=occ00; 326. display "recode docc00"; 327. 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); 328. } ; 329. display "dind"; 330. gen byte dind = . ; 331. if `1'<= 1982 { > display "`1' <= 1982: creating dind from ind70"; 332. replace dind=ind70 ; 333. 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) ; 334. } ; 335. if `1' <=1991 & `1' >=1983 { > display "replacing dind for `1': `1' <=1991 & `1' >=1983"; 336. replace dind=ind80; 337. 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); 338. } ; 339. if `1' >= 1992 & `1' <= 2002 { > display "replacing dind for `1': `1' >= 1992 & `1' <= 2002 "; 340. replace dind=ind80; 341. 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) ; 342. }; 343. if `1' >= 2003 { > display "replacing dind for `1' >= 2003 " ; 344. replace dind = ind02; 345. recode > dind (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) ; 346. } ; 347. #delimit cr delimiter now cr . * Wages (If earnings are 0, then wage rate is missing, not zero). . display "Wages" 348. replace paidhr = . if paidhr <=0 349. replace paidhre = . if paidhre <=0 350. replace earnhr = . if earnhr <=0 351. replace earnhre = . if earnhre <=0 352. replace earnwke = . if earnwke < 0 353. if `1' < 1989 { 354. replace eligible = 2 if eligible == . 355. } 356. if `1' >= 1989 { 357. replace eligible = 2 if eligible <= 0 358. } 359. if `1' < 1989 { 360. replace I25a = 0 if I25a ==. 361. replace I25b = 0 if I25b ==. 362. replace I25c = 0 if I25c ==. 363. replace I25d = 0 if I25d ==. 364. } 365. if `1' >= 1994 { 366. replace I25a = 0 if I25a <= 3 367. replace I25b = 0 if I25b <= 3 368. *replace I25a = . if I25a < 0 . *replace I25b = . if I25b < 0 . replace earnhre = . if earnhre ==1 369. replace uhourse = . if lfsr94 >2 | lfsr94 <1 370. replace lfsr94 = . if lfsr94 < 0 371. } 372. if `1' >= 1996 { 373. replace I25c = . if I25c < 0 374. replace I25d = . if I25d < 0 375. } 376. if `1' == 1995 { 377. replace I25c = . if I25c < 0 378. replace I25d = . if I25d < 0 379. replace I25c = . if intmonth < 9 380. replace I25d = . if intmonth < 9 381. } 382. if `1' == 1994 { 383. drop I25c I25d 384. } 385. * Hours, Unions . display "Hours, Unions" 386. if `1' >= 1994 { 387. replace reason94 = . if reason94< 0 388. replace absent94 = . if absent94< 0 389. replace studftpt = . if studftpt< 0 390. replace schenr = . if schenr < 0 391. replace schlvl = . if schlvl < 0 392. replace ftpt94 = . if ftpt94 < 0 393. replace hourslw = . if hourslw < 0 394. replace hourslw = 99 if hourslw >99 & hourslw != . 395. replace uhourse = . if uhourse < 0 396. replace why3594 = . if why3594 < 0 397. replace unionmme = . if unionmme< 0 398. replace unioncov = . if unioncov< 0 399. } 400. . * Save and exit . compress 401. saveold /home/data/morg/annual/temp/morg`2'rw,replace 402. summarize 403. ! /bin/chmod a+r /home/data/morg/annual/m*.dta 404. ! /bin/chmod g+w /home/data/morg/annual/m*.dta 405. ! /bin/chgrp web /home/data/morg/annual/m*.dta 406. clear 407. ! /bin/rm -f aef.dct /tmp/aef.raw 408. end . . 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 "`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 . . * 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 obs 328406 Geography smsasize = . if smsasize <=0 (0 real changes made) 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 (0 real changes made) 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 (328406 missing values generated) dind was byte now int (249230 real changes made) (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) Hours, Unions dind was int now byte file /home/data/morg/annual/temp/morg79rw.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 -------------+-------------------------------------------------------- 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 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 smsa70 | 111224 1.597632 .4903776 1 2 dind | 249230 29.16633 14.2219 1 52 . aef2 1980 80 79_83 obs 385941 Geography smsasize = . if smsasize <=0 (0 real changes made) 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 (0 real changes made) 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 (385941 missing values generated) dind was byte now int (293556 real changes made) (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) Hours, Unions dind was int now byte file /home/data/morg/annual/temp/morg80rw.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 -------------+-------------------------------------------------------- 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 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 smsa70 | 118030 1.611794 .487344 1 2 dind | 293556 29.32555 14.30962 1 52 . aef2 1981 81 79_83 obs 363984 Geography smsasize = . if smsasize <=0 (0 real changes made) 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 (0 real changes made) 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 (363984 missing values generated) dind was byte now int (275701 real changes made) (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) Hours, Unions dind was int now byte file /home/data/morg/annual/temp/morg81rw.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 -------------+-------------------------------------------------------- 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 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 smsa70 | 114808 1.608512 .4880853 1 2 dind | 275701 29.44118 14.22292 1 52 . aef2 1982 82 79_83 obs 351023 Geography smsasize = . if smsasize <=0 (0 real changes made) 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 (0 real changes made) 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 (351023 missing values generated) dind was byte now int (265074 real changes made) (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) Hours, Unions dind was int now byte file /home/data/morg/annual/temp/morg82rw.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 -------------+-------------------------------------------------------- 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 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 smsa70 | 113234 1.608386 .4881132 1 2 dind | 265074 29.57871 14.12654 1 52 . aef2 1983 83 79_83 obs 348521 Geography smsasize = . if smsasize <=0 (0 real changes made) 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 (0 real changes made) 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 (348521 missing values generated) dind was byte now int (262149 real changes made) (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) Hours, Unions docc80 was int now byte dind was int now byte file /home/data/morg/annual/temp/morg83rw.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 -------------+-------------------------------------------------------- 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 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 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 obs 343665 Geography smsasize = . if smsasize <=0 (0 real changes made) 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 (0 real changes made) 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 (343665 missing values generated) dind was byte now int (258798 real changes made) (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) Hours, Unions ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc80 was int now byte dind was int now byte file /home/data/morg/annual/temp/morg84rw.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 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 -------------+-------------------------------------------------------- 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 -------------+-------------------------------------------------------- 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 obs 343591 Geography smsasize = . if smsasize <=0 (26898 real changes made, 26898 to missing) 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 (0 real changes made) (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 (343591 missing values generated) dind was byte now int (259089 real changes made) (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) Hours, Unions ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc80 was int now byte dind was int now byte file /home/data/morg/annual/temp/morg85rw.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 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 -------------+-------------------------------------------------------- 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 -------------+-------------------------------------------------------- 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 obs 338051 Geography smsasize = . if smsasize <=0 (104502 real changes made, 104502 to missing) 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 (0 real changes made) (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 (338051 missing values generated) dind was byte now int (255054 real changes made) (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) Hours, Unions ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc80 was int now byte dind was int now byte file /home/data/morg/annual/temp/morg86rw.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 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 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 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 obs 337000 Geography smsasize = . if smsasize <=0 (103786 real changes made, 103786 to missing) 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 (0 real changes made) (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 (337000 missing values generated) dind was byte now int (254602 real changes made) (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) Hours, Unions ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc80 was int now byte dind was int now byte file /home/data/morg/annual/temp/morg87rw.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 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 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 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 obs 320821 Geography smsasize = . if smsasize <=0 (103403 real changes made, 103403 to missing) 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 (0 real changes made) (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 (320821 missing values generated) dind was byte now int (242576 real changes made) (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) Hours, Unions ch613 was int now byte ch1417 was int now byte ch05 was int now byte docc80 was int now byte dind was int now byte file /home/data/morg/annual/temp/morg88rw.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 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 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 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 obs 324711 Geography smsasize = . if smsasize <=0 (104372 real changes made, 104372 to missing) 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 (0 real changes made) (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 (324711 missing values generated) dind was byte now int (246441 real changes made) (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) Hours, Unions 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 int now byte file /home/data/morg/annual/temp/morg89rw.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- intmonth | 324711 6.558025 3.465807 1 12 hhnum | 324259 1.085102 .3129083 1 7 minsamp | 324711 5.979052 1.999893 4 8 state | 324711 50.74402 25.50277 11 95 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 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 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 obs 341162 Geography smsasize = . if smsasize <=0 (105424 real changes made, 105424 to missing) 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 (0 real changes made) (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 (341162 missing values generated) dind was byte now int (258460 real changes made) (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) Hours, Unions 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 int now byte file /home/data/morg/annual/temp/morg90rw.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- intmonth | 341162 6.506539 3.456717 1 12 hhnum | 340335 1.08588 .3153555 1 7 minsamp | 341162 6.004397 1.999998 4 8 state | 341162 51.30998 26.11631 11 95 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 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 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 obs 337649 Geography smsasize = . if smsasize <=0 (104236 real changes made, 104236 to missing) 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 (0 real changes made) (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 (337649 missing values generated) dind was byte now int (254206 real changes made) (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) Hours, Unions 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 int now byte file /home/data/morg/annual/temp/morg91rw.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- intmonth | 337649 6.503073 3.458029 1 12 hhnum | 337016 1.086388 .3139366 1 5 minsamp | 337649 6.021614 1.999886 4 8 state | 337649 51.27525 26.12097 11 95 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 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 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 obs 332184 Geography smsasize = . if smsasize <=0 (103189 real changes made, 103189 to missing) 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 (0 real changes made) (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 (332184 missing values generated) dind was byte now int (250160 real changes made) (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) Hours, Unions 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 int now byte file /home/data/morg/annual/temp/morg92rw.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- intmonth | 332184 6.497188 3.458479 1 12 hhnum | 331839 1.085707 .310436 1 7 minsamp | 332184 6.013848 1.999955 4 8 state | 332184 51.02402 26.05261 11 95 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 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 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 obs 328085 Geography smsasize = . if smsasize <=0 (102816 real changes made, 102816 to missing) 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 (0 real changes made) (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 (328085 missing values generated) dind was byte now int (245642 real changes made) (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) Hours, Unions 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 int now byte file /home/data/morg/annual/temp/morg93rw.dta saved Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- intmonth | 328085 6.493473 3.454551 1 12 hhnum | 327739 1.084082 .3074319 1 7 minsamp | 328085 6.006882 1.999991 4 8 state | 328085 50.99566 26.0027 11 95 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 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 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 obs 319234 (319234 real changes made) Geography smsasize = . if smsasize <=0 (263993 real changes made, 263993 to missing) 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) (0 real changes made) (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 (0 real changes made) (263993 missing values generated) drop smsasize Demography if 1994 > 1983 & 1994 < 1989 { (0 real changes made) (1518 real changes made, 1518 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) (646 real changes made, 646 to missing) Employment (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 (319234 missing values generated) dind was byte now int (220332 real changes made) (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) (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) docc80 was int now byte dind was int now byte hhid was str15 now str12 file /home/data/morg/annual/temp/morg94rw.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 serial | 318056 -.9999937 .0025076 -1 0 hhnum | 319234 1.077686 .291013 1 5 -------------+-------------------------------------------------------- state | 319234 51.01258 26.05296 11 95 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 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 ftpt94 | 317716 2.776775 2.564107 1 12 eligible | 319234 1.464957 .4987712 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 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 obs 314351 (211516 real changes made) Geography smsasize = . if smsasize <=0 (211516 real changes made, 211516 to missing) (101766 real changes made) (211516 real changes made) (211516 real changes made) (28928 real changes made, 28928 to missing) (0 real changes made) (288527 missing values generated) inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (82212 real changes made, 82212 to missing) (0 real changes made) (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 (0 real changes made) 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) (1512 real changes made, 1512 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) Employment (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 (314351 missing values generated) dind was byte now int (217021 real changes made) (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) (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) smsa80 was float now byte docc80 was int now byte dind was int now byte file /home/data/morg/annual/temp/morg95rw.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 serial | 312155 -.9999936 .0025312 -1 0 hhnum | 314351 1.061148 .2582601 1 8 -------------+-------------------------------------------------------- state | 314351 51.10553 26.00006 11 95 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 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 ftpt94 | 312839 2.736996 2.51753 1 12 eligible | 314351 1.458227 .4982527 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 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 obs 277856 Geography (77545 real changes made, 77545 to missing) smsasize = . if smsasize <=0 (0 real changes made) 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) (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 (0 real changes made) drop smsasize Demography if 1996 > 1983 & 1996 < 1989 { (0 real changes made) (1246 real changes made, 1246 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) (1015 real changes made, 1015 to missing) Employment (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 (277856 missing values generated) dind was byte now int (192442 real changes made) (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) (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) docc80 was int now byte dind was int now byte file /home/data/morg/annual/temp/morg96rw.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 serial | 275766 -1 0 -1 -1 hhnum | 277856 1.058743 .2510864 1 5 -------------+-------------------------------------------------------- state | 277856 53.27262 26.07671 11 95 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 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 ftpt94 | 276610 2.737265 2.50568 1 12 eligible | 277856 1.452274 .4977179 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 docc80 | 192442 22.55874 12.71377 1 46 dind | 192442 31.12334 13.49404 1 52 . aef2 1997 97 94_97 obs 280655 Geography (78074 real changes made, 78074 to missing) smsasize = . if smsasize <=0 (0 real changes made) 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) (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 (0 real changes made) drop smsasize Demography if 1997 > 1983 & 1997 < 1989 { (0 real changes made) (1251 real changes made, 1251 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) (1374 real changes made, 1374 to missing) Employment (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 (280655 missing values generated) dind was byte now int (194787 real changes made) (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) (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) docc80 was int now byte dind was int now byte file /home/data/morg/annual/temp/morg97rw.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 serial | 278809 -1 0 -1 -1 hhnum | 280655 1.056197 .2461274 1 6 -------------+-------------------------------------------------------- state | 280655 53.49705 26.11888 11 95 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 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 -------------+-------------------------------------------------------- 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 ftpt94 | 279404 2.70189 2.459613 1 12 eligible | 280655 1.447881 .4972771 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 docc80 | 194787 22.42661 12.73607 1 46 dind | 194787 31.18692 13.46024 1 52 . aef2 1998 98 98_02 obs 280392 Geography (77399 real changes made, 77399 to missing) smsasize = . if smsasize <=0 (0 real changes made) inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (811 real changes made, 811 to missing) (0 real changes made) (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 (0 real changes made) drop smsasize Demography if 1998 > 1983 & 1998 < 1989 { (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) (1171 real changes made, 1171 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) (1781 real changes made, 1781 to missing) Employment (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 (280392 missing values generated) dind was byte now int (195380 real changes made) (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) (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 docc80 was int now byte dind was int now byte file /home/data/morg/annual/temp/morg98rw.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 -------------+-------------------------------------------------------- serial | 278860 -1 0 -1 -1 hhnum | 280392 1.05793 .2508091 1 6 state | 280392 53.53248 26.12936 11 95 cmsacode | 98068 53.46612 26.81658 7 97 msafips | 202593 4513.267 2517.221 80 9360 -------------+-------------------------------------------------------- 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 -------------+-------------------------------------------------------- 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 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 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 eligible | 280392 1.440105 .4964005 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 year | 280392 1998 0 1998 1998 -------------+-------------------------------------------------------- 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 obs 282716 Geography (77453 real changes made, 77453 to missing) smsasize = . if smsasize <=0 (0 real changes made) inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (839 real changes made, 839 to missing) (19 real changes made, 19 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 (0 real changes made) drop smsasize Demography if 1999 > 1983 & 1999 < 1989 { (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) (1039 real changes made, 1039 to missing) (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) Employment (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 (282716 missing values generated) dind was byte now int (196982 real changes made) (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) (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 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 int now byte file /home/data/morg/annual/temp/morg99rw.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 -------------+-------------------------------------------------------- serial | 281361 -1 0 -1 -1 hhnum | 282716 1.056771 .2514892 1 8 state | 282716 53.71741 26.15743 11 95 cmsacode | 98819 53.32955 26.8635 7 97 msafips | 204875 4515.2 2514.014 80 9360 -------------+-------------------------------------------------------- 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 -------------+-------------------------------------------------------- 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 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 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 eligible | 282716 1.436261 .4959216 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 year | 282716 1999 0 1999 1999 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 obs 283236 total obs pre-revise 2000 283236 file /homes/data/morg/annual/rw/annual.dta saved (259098 observations deleted) jan obs 24138 (127449 observations deleted) file /homes/data/morg/annual/rw/jan.dta saved (258977 observations deleted) feb obs 24259 (126222 observations deleted) file /homes/data/morg/annual/rw/feb.dta saved (259756 observations deleted) mar obs 23480 (126673 observations deleted) file /homes/data/morg/annual/rw/mar.dta saved (259784 observations deleted) apr obs 23452 (127495 observations deleted) file /homes/data/morg/annual/rw/apr.dta saved (259859 observations deleted) may obs 23377 (127513 observations deleted) file /homes/data/morg/annual/rw/may.dta saved (259858 observations deleted) jun obs 23378 (128017 observations deleted) file /homes/data/morg/annual/rw/jun.dta saved (259670 observations deleted) jul obs 23566 (127434 observations deleted) file /homes/data/morg/annual/rw/jul.dta saved (259798 observations deleted) aug obs 23438 (127194 observations deleted) file /homes/data/morg/annual/rw/aug.dta saved (259527 observations deleted) sep obs 23709 (127006 observations deleted) file /homes/data/morg/annual/rw/sep.dta saved (259673 observations deleted) oct obs 23563 (126989 observations deleted) file /homes/data/morg/annual/rw/oct.dta saved (259662 observations deleted) nov obs 23574 (127098 observations deleted) file /homes/data/morg/annual/rw/nov.dta saved (259934 observations deleted) 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 nrdtocca already defined) (label nrdtinda already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label nrdtocca already defined) (label nrdtinda already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label nrdtocca already defined) (label nrdtinda already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label nrdtocca already defined) (label nrdtinda already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label nrdtocca already defined) (label nrdtinda already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label nrdtocca already defined) (label nrdtinda already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label nrdtocca already defined) (label nrdtinda already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label nrdtocca already defined) (label nrdtinda already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label nrdtocca already defined) (label nrdtinda already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label nrdtocca already defined) (label nrdtinda already defined) (label neio1cow already defined) (label neernlab already defined) (label neerncov already defined) (label nrdtocca already defined) (label nrdtinda already defined) (label neio1cow already defined) total obs post-revise283236 start renaming done renaming drop 2000 rename 2001-2002 Geography (77322 real changes made, 77322 to missing) smsasize = . if smsasize <=0 (0 real changes made) inlisting 96 97 replace smsastat = . if smsastat==3 | smsastat<0 (852 real changes made, 852 to missing) (33 real changes made, 33 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 (0 real changes made) drop smsasize Demography if 2000 > 1983 & 2000 < 1989 { (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) (987 real changes made, 987 to missing) (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) Employment (85067 real changes made, 85067 to missing) (85067 real changes made, 85067 to missing) (85067 real changes made, 85067 to missing) docc80 (85067 missing values generated) recode docc80 (docc80: 198169 changes made) ** The renaming is part of the Census reweighting ; docc80 already defined r(110); end of do-file r(110);