1 The SAS System 10:39 Tuesday, September 10, 2002 NOTE: Copyright (c) 1989-1996 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software Release 6.12 TS020 Licensed to HARVARD SCHOOL OF PUBLIC HEALTH-INSTRUCTIONAL COMP, Site 0001177014. WARNING: Your system is scheduled to expire on September 15, 2002, which is 5 days from now. Please contact your installation representative to have your system renewed. The SAS system will no longer function on or after that date. sas license has been updated, so rest easy. - Mohan NOTE: AUTOEXEC processing beginning; file is /usr/sunos/local/sas612/autoexec.sas. NOTE: SAS initialization used: real time 0.140 seconds cpu time 0.035 seconds NOTE: AUTOEXEC processing completed. 1 /*------------------------------------------------------------------------------------*/ 2 /*by Jean Roth Fri Mar 1 17:03:25 EST 2002 Please report errors to jroth@nber.org 3 Based on IPUMS SPSS files 4 This program appends household records to their corresponding person records. 5 Remember, the household variables are repeated for each person in a household. 6 rectype, year, datanum, and serial in the person record are renamed, if present, 7 prectype, pyear, pdatanum, pserial to distinguish them from household variables 8 Space questions: 9 (1) Compress the SAS data set or not (compress=yes or compress=no) 10 (2) Read in the compressed or uncompressed raw data file. See the 11 'filename' and 'INFILE' statements. 12 (3) Check you have space to write the output file to a disk 13 (4) Select variables 14 (5) If the output file could be > 2 Gb, run with sas -largefile sasvlfs ip1980.sas 15 To make the program run: 16 (1) Specify output directories in 'libname' statements 17 (2) Specify the input file name/location in the 'filename' statement 18 (3) On a PC, use backslashes as in C:\ 19 Other changes may be user and platform specific. */ 20 /*------------------------------------------------------------------------------------*/ 21 22 *options obs=100; 23 *options compress=yes; 24 *Choose compress=yes to save space ; 25 *Choose compress=no if converting to another package using transfer software ; 26 *options pagesize=59 linesize=72; 27 28 libname library './'; NOTE: Libref LIBRARY was successfully assigned as follows: Engine: V612 Physical Name: /disk/u4/SCCS/IPUMS-98/sas 29 30 *See the codebook for more detail; 31 *PROC FORMAT cntlout=library.fip1980; 32 33 /********************************************************************************* 34 *The PROC FORMAT statement will store the formats in a sas data set called fip1980 35 *To use the stored formats in a subsequent program, include something like this: 36 * 37 *proc format cntlin=library.fip1980; 38 *PROC freq; 39 * tables pesex ; 40 * format pesex P135L.; 41 * 42 *For more information, consult the SAS Procudures Guide section of PROC FORMAT 43 *********************************************************************************/ 44 ; 45 *VALUE P101L (default=32) 46 * 11 = "New England Division" 47 * 12 = "Middle Atlantic Division" 48 * 13 = "Mixed Northeast Divisions" 49 * 21 = "East North Central Div" 50 * 22 = "West North Central Div" 51 * 23 = "Mixed Midwest Divisions" 52 * 31 = "South Atlantic Division" 53 * 32 = "East South Central Div" 2 The SAS System 10:39 Tuesday, September 10, 2002 54 * 33 = "West South Central Div" 55 * 34 = "Mixed Southern Divisions" 56 * 41 = "Mountain Division" 57 * 42 = "Pacific Division" 58 * 43 = "Mixed Western Divisions" 59 * 91 = "Military/Military reservations" 60 * 92 = "PUMA boundaries cross state lines-1% s" /* ample */ 61 * 97 = "State not identified" 62 * 99 = "Inter-regional county group" 63 *; 64 *VALUE P102L (default=32) 65 * 1 = "Connecticut" 66 * 2 = "Maine" 67 * 3 = "Massachusetts" 68 * 4 = "New Hampshire" 69 * 5 = "Rhode Island" 70 * 6 = "Vermont" 71 * 11 = "Delaware" 72 * 12 = "New Jersey" 73 * 13 = "New York" 74 * 14 = "Pennsylvania" 75 * 21 = "Illinois" 76 * 22 = "Indiana" 77 * 23 = "Michigan" 78 * 24 = "Ohio" 79 * 25 = "Wisconsin" 80 * 31 = "Iowa" 81 * 32 = "Kansas" 82 * 33 = "Minnesota" 83 * 34 = "Missouri" 84 * 35 = "Nebraska" 85 * 36 = "North Dakota" 86 * 37 = "South Dakota" 87 * 40 = "Virginia" 88 * 41 = "Alabama" 89 * 42 = "Arkansas" 90 * 43 = "Florida" 91 * 44 = "Georgia" 92 * 45 = "Louisiana" 93 * 46 = "Mississippi" 94 * 47 = "North Carolina" 95 * 48 = "South Carolina" 96 * 49 = "Texas" 97 * 51 = "Kentucky" 98 * 52 = "Maryland" 99 * 53 = "Oklahoma" 100 * 54 = "Tennessee" 101 * 56 = "West Virginia" 102 * 61 = "Arizona" 103 * 62 = "Colorado" 104 * 63 = "Idaho" 105 * 64 = "Montana" 106 * 65 = "Nevada" 107 * 66 = "New Mexico" 108 * 67 = "Utah" 109 * 68 = "Wyoming" 110 * 71 = "California" 111 * 72 = "Oregon" 112 * 73 = "Washington" 113 * 81 = "Alaska" 114 * 82 = "Hawaii" 115 * 92 = "Indian Territory" 116 * 96 = "State groupings (1980)" 117 * 97 = "Military Reservations" 118 * 98 = "District of Columbia" 119 * 99 = "State not identified" 120 *; 121 *VALUE P103L (default=32) 122 * 1 = "Alabama" 123 * 2 = "Alaska" 124 * 4 = "Arizona" 125 * 5 = "Arkansas" 126 * 6 = "California" 127 * 8 = "Colorado" 128 * 9 = "Connecticut" 129 * 10 = "Delaware" 3 The SAS System 10:39 Tuesday, September 10, 2002 130 * 11 = "District of Columbia" 131 * 12 = "Florida" 132 * 13 = "Georgia" 133 * 15 = "Hawaii" 134 * 16 = "Idaho" 135 * 17 = "Illinois" 136 * 18 = "Indiana" 137 * 19 = "Iowa" 138 * 20 = "Kansas" 139 * 21 = "Kentucky" 140 * 22 = "Louisiana" 141 * 23 = "Maine" 142 * 24 = "Maryland" 143 * 25 = "Massachusetts" 144 * 26 = "Michigan" 145 * 27 = "Minnesota" 146 * 28 = "Mississippi" 147 * 29 = "Missouri" 148 * 30 = "Montana" 149 * 31 = "Nebraska" 150 * 32 = "Nevada" 151 * 33 = "New Hampshire" 152 * 34 = "New Jersey" 153 * 35 = "New Mexico" 154 * 36 = "New York" 155 * 37 = "North Carolina" 156 * 38 = "North Dakota" 157 * 39 = "Ohio" 158 * 40 = "Oklahoma" 159 * 41 = "Oregon" 160 * 42 = "Pennsylvania" 161 * 44 = "Rhode island" 162 * 45 = "South Carolina" 163 * 46 = "South Dakota" 164 * 47 = "Tennessee" 165 * 48 = "Texas" 166 * 49 = "Utah" 167 * 50 = "Vermont" 168 * 51 = "Virginia" 169 * 53 = "Washington" 170 * 54 = "West Virginia" 171 * 55 = "Wisconsin" 172 * 56 = "Wyoming" 173 * 61 = "Maine-New Hampshire-Vermont" 174 * 62 = "Massachusetts-Rhode Island" 175 * 63 = "Minnesota-Iowa-Missouri-Kansas-Nebrask" /* a-S.Dakota-N.Dakota */ 176 * 64 = "Maryland-Delaware" 177 * 65 = "Montana-Idaho-Wyoming" 178 * 66 = "Utah-Nevada" 179 * 67 = "Arizona-New Mexico" 180 * 68 = "Alaska-Hawaii" 181 * 94 = "Indian Territory" 182 * 97 = "Military Reservation" 183 * 99 = "State not identified" 184 *; 185 *VALUE P104L (default=32) 186 * 0 = "N/A" 187 * 1 = "Rural" 188 * 2 = "Urban" 189 *; 190 *VALUE P105L (default=32) 191 * 0 = "Not identifiable" 192 * 1 = "Not in metro area" 193 * 2 = "In metro area, central city" 194 * 3 = "In metro area, not central city" 195 * 4 = "In metro area, central city status unk" /* nown */ 196 *; 197 *VALUE P106L (default=32) 198 * 0 = "N/A or household not in a metro" 199 * 40 = "Abilene, TX" 200 * 80 = "Akron, OH" 201 * 120 = "Albany, GA" 202 * 160 = "Albany-Schenectady-Troy, NY" 203 * 200 = "Albuquerque, NM" 204 * 220 = "Alexandria, LA" 205 * 240 = "Allentown-Bethlehem-Easton, PA/NJ" 4 The SAS System 10:39 Tuesday, September 10, 2002 206 * 280 = "Altoona, PA" 207 * 320 = "Amarillo, TX" 208 * 380 = "Anchorage, AK" 209 * 400 = "Anderson, IN" 210 * 440 = "Ann Arbor, MI" 211 * 450 = "Anniston, AL" 212 * 460 = "Appleton-Oskosh-Neenah, WI" 213 * 480 = "Asheville, NC" 214 * 500 = "Athens, GA" 215 * 520 = "Atlanta, GA" 216 * 560 = "Atlantic City, NJ" 217 * 600 = "Augusta-Aiken, GA-SC" 218 * 640 = "Austin, TX" 219 * 680 = "Bakersfield, CA" 220 * 720 = "Baltimore, MD" 221 * 730 = "Bangor, ME" 222 * 760 = "Baton Rouge, LA" 223 * 780 = "Battle Creek, MI" 224 * 840 = "Beaumont-Port Arthur-Orange, TX" 225 * 860 = "Bellingham, WA" 226 * 870 = "Benton Harbor, MI" 227 * 880 = "Billings, MT" 228 * 920 = "Biloxi-Gulfport, MS" 229 * 960 = "Binghamton, NY" 230 * 1000 = "Birmingham, AL" 231 * 1010 = "Bismarck, ND" 232 * 1020 = "Bloomington, IN" 233 * 1040 = "Bloomington-Normal, IL" 234 * 1080 = "Boise City, ID" 235 * 1120 = "Boston, MA" 236 * 1121 = "Lawrence-Haverhill, MA/NH" 237 * 1122 = "Lowell, MA/NH" 238 * 1123 = "Salem-Gloucester, MA" 239 * 1140 = "Bradenton, FL" 240 * 1150 = "Bremerton, WA" 241 * 1160 = "Bridgeport, CT" 242 * 1200 = "Brockton, MA" 243 * 1240 = "Brownsville-Harlingen-San Benito, TX" 244 * 1260 = "Bryan-College Station, TX" 245 * 1280 = "Buffalo-Niagara Falls, NY" 246 * 1281 = "Niagara Falls, NY" 247 * 1300 = "Burlington, NC" 248 * 1310 = "Burlington, VT" 249 * 1320 = "Canton, OH" 250 * 1350 = "Casper, WY" 251 * 1360 = "Cedar Rapids, IA" 252 * 1400 = "Champaign-Urbana-Rantoul, IL" 253 * 1440 = "Charleston-N.Charleston,SC" 254 * 1480 = "Charleston, WV" 255 * 1520 = "Charlotte-Gastonia-Rock Hill, NC-SC" 256 * 1521 = "Rock Hill, SC" 257 * 1540 = "Charlottesville, VA" 258 * 1560 = "Chattanooga, TN/GA" 259 * 1580 = "Cheyenne, WY" 260 * 1600 = "Chicago-Gary-Lake, IL" 261 * 1601 = "Aurora-Elgin, IL" 262 * 1602 = "Gary-Hammond-East Chicago, IN" 263 * 1603 = "Joliet, IL" 264 * 1604 = "Lake County, IL" 265 * 1620 = "Chico, CA" 266 * 1640 = "Cincinnati-Hamilton, OH/KY/IN" 267 * 1660 = "Clarksville- Hopkinsville, TN/KY" 268 * 1680 = "Cleveland, OH" 269 * 1720 = "Colorado Springs, CO" 270 * 1740 = "Columbia, MO" 271 * 1760 = "Columbia, SC" 272 * 1800 = "Columbus, GA/AL" 273 * 1840 = "Columbus, OH" 274 * 1880 = "Corpus Christi, TX" 275 * 1900 = "Cumberland, MD/WV" 276 * 1920 = "Dallas-Fort Worth, TX" 277 * 1921 = "Fort Worth-Arlington, TX" 278 * 1930 = "Danbury, CT" 279 * 1950 = "Danville, VA" 280 * 1960 = "Davenport, IA-Rock Island-Moline, IL" 281 * 2000 = "Dayton-Springfield, OH" 5 The SAS System 10:39 Tuesday, September 10, 2002 282 * 2001 = "Springfield, OH" 283 * 2020 = "Daytona Beach, FL" 284 * 2030 = "Decatur, AL" 285 * 2040 = "Decatur, IL" 286 * 2080 = "Denver-Boulder-Longmont, CO" 287 * 2081 = "Boulder-Longmont, CO" 288 * 2120 = "Des Moines, IA" 289 * 2160 = "Detroit, MI" 290 * 2180 = "Dothan, AL" 291 * 2200 = "Dubuque, IA" 292 * 2240 = "Duluth-Superior, MN/WI" 293 * 2290 = "Eau Claire, WI" 294 * 2310 = "El Paso, TX" 295 * 2320 = "Elkhart-Goshen, IN" 296 * 2330 = "Elmira, NY" 297 * 2340 = "Enid, OK" 298 * 2360 = "Erie, PA" 299 * 2400 = "Eugene-Springfield, OR" 300 * 2440 = "Evansville, IN/KY" 301 * 2520 = "Fargo-Moorhead, ND/MN" 302 * 2560 = "Fayetteville, NC" 303 * 2580 = "Fayetteville-Springdale, AR" 304 * 2600 = "Fitchburg-Leominster, MA" 305 * 2640 = "Flint, MI" 306 * 2650 = "Florence, AL" 307 * 2660 = "Florence, SC" 308 * 2670 = "Fort Collins-Loveland, CO" 309 * 2680 = "Fort Lauderdale, FL" 310 * 2700 = "Fort Myers-Cape Coral, FL" 311 * 2710 = "Fort Pierce, FL" 312 * 2720 = "Fort Smith, AR/OK" 313 * 2750 = "Fort Walton Beach" 314 * 2760 = "Fort Wayne, IN" 315 * 2840 = "Fresno, CA" 316 * 2880 = "Gadsden, AL" 317 * 2900 = "Gainesville, FL" 318 * 2920 = "Galveston-Texas City, TX" 319 * 2970 = "Glens Falls, NY" 320 * 2990 = "Grand Forks, ND/MN" 321 * 3000 = "Grand Rapids, MI" 322 * 3040 = "Great Falls, MT" 323 * 3060 = "Greeley, CO" 324 * 3080 = "Green Bay, WI" 325 * 3120 = "Greensboro-Winston-Salem, NC" 326 * 3121 = "Winston-Salem, NC" 327 * 3160 = "Greenville-Spartanburg-Anderson, SC" 328 * 3161 = "Anderson, SC" 329 * 3180 = "Hagerstown, MD" 330 * 3200 = "Hamilton-Middleton, OH" 331 * 3240 = "Harrisburg-Lebanon-Carlisle, PA" 332 * 3280 = "Hartford-Bristol-Middleton-New Britain" /* , CT */ 333 * 3281 = "Brisol, CT" 334 * 3282 = "Middletown, CT" 335 * 3283 = "New Britain, CT" 336 * 3290 = "Hickory-Morgantown, NC" 337 * 3320 = "Honolulu, HI" 338 * 3350 = "Houma-Thibodoux, LA" 339 * 3360 = "Houston-Brazoria, TX" 340 * 3361 = "Brazoria, TX" 341 * 3400 = "Huntington-Ashland, WV/KY/OH" 342 * 3440 = "Huntsville, AL" 343 * 3480 = "Indianapolis, IN" 344 * 3500 = "Iowa City, IA" 345 * 3520 = "Jackson, MI" 346 * 3560 = "Jackson, MS" 347 * 3590 = "Jacksonville, FL" 348 * 3600 = "Jacksonville, NC" 349 * 3610 = "Jamestown-Dunkirk, NY" 350 * 3620 = "Janesville-Beloit, WI" 351 * 3660 = "Johnson City-Kingsport-Bristol, TN/VA" 352 * 3680 = "Johnstown, PA" 353 * 3710 = "Joplin, MO" 354 * 3720 = "Kalamazoo-Portage, MI" 355 * 3740 = "Kankakee, IL" 356 * 3760 = "Kansas City, MO/KS" 357 * 3800 = "Kenosha, WI" 6 The SAS System 10:39 Tuesday, September 10, 2002 358 * 3810 = "Killeen-Temple, TX" 359 * 3840 = "Knoxville, TN" 360 * 3850 = "Kokomo, IN" 361 * 3870 = "LaCrosse, WI" 362 * 3880 = "Lafayette, LA" 363 * 3920 = "Lafayette-W. Lafayette, IN" 364 * 3960 = "Lake Charles, LA" 365 * 3980 = "Lakeland-Winterhaven, FL" 366 * 4000 = "Lancaster, PA" 367 * 4040 = "Lansing-E. Lansing, MI" 368 * 4080 = "Laredo, TX" 369 * 4100 = "Las Cruces, NM" 370 * 4120 = "Las Vegas, NV" 371 * 4150 = "Lawrence, KS" 372 * 4200 = "Lawton, OK" 373 * 4240 = "Lewiston-Auburn, ME" 374 * 4280 = "Lexington-Fayette, KY" 375 * 4320 = "Lima, OH" 376 * 4360 = "Lincoln, NE" 377 * 4400 = "Little Rock-North Little Rock, AR" 378 * 4410 = "Long Branch-Asbury Park, NJ" 379 * 4420 = "Longview-Marshall, TX" 380 * 4440 = "Lorain-Elyria, OH" 381 * 4480 = "Los Angeles-Long Beach, CA" 382 * 4481 = "Anaheim-Santa Ana-Garden Grove, CA" 383 * 4520 = "Louisville, KY/IN" 384 * 4600 = "Lubbock, TX" 385 * 4640 = "Lynchburg, VA" 386 * 4680 = "Macon-Warner Robins, GA" 387 * 4720 = "Madison, WI" 388 * 4760 = "Manchester, NH" 389 * 4800 = "Mansfield, OH" 390 * 4880 = "McAllen-Edinburg-Pharr-Mission, TX" 391 * 4890 = "Medford, OR" 392 * 4900 = "Melbourne-Titusville-Cocoa-Palm Bay, F" /* L */ 393 * 4920 = "Memphis, TN/AR/MS" 394 * 4940 = "Merced, CA" 395 * 5000 = "Miami-Hialeah, FL" 396 * 5040 = "Midland, TX" 397 * 5080 = "Milwaukee, WI" 398 * 5120 = "Minneapolis-St. Paul, MN" 399 * 5160 = "Mobile, AL" 400 * 5170 = "Modesto, CA" 401 * 5190 = "Monmouth-Ocean, NJ" 402 * 5200 = "Monroe, LA" 403 * 5240 = "Montgomery, AL" 404 * 5280 = "Muncie, IN" 405 * 5320 = "Muskegon-Norton Shores-Muskegon Height" /* s, MI */ 406 * 5340 = "Naples, FL" 407 * 5350 = "Nashua, NH" 408 * 5360 = "Nashville, TN" 409 * 5400 = "New Bedford, MA" 410 * 5460 = "New Brunswick-Perth Amboy-Sayreville, " /* NJ */ 411 * 5480 = "New Haven-Meriden, CT" 412 * 5520 = "New London-Norwich, CT/RI" 413 * 5560 = "New Orleans, LA" 414 * 5600 = "New York-Northeastern NJ" 415 * 5601 = "Nassau Co., NY" 416 * 5602 = "Bergen-Passaic, NJ" 417 * 5603 = "Jersey City, NJ" 418 * 5604 = "Middlesex-Somerset-Hunterdon, NJ" 419 * 5605 = "Newark, NJ" 420 * 5640 = "Newark, OH" 421 * 5660 = "Newburgh-Middletown, NY" 422 * 5720 = "Norfolk-VA Beach-Newport News, VA" 423 * 5760 = "Norwalk, CT" 424 * 5790 = "Ocala, FL" 425 * 5800 = "Odessa, TX" 426 * 5880 = "Oklahoma City, OK" 427 * 5910 = "Olympia, WA" 428 * 5920 = "Omaha, NE/IA" 429 * 5950 = "Orange, NY" 430 * 5960 = "Orlando, FL" 431 * 5990 = "Owensboro, KY" 432 * 6010 = "Panama City, FL" 433 * 6020 = "Parkersburg-Marietta,WV/OH" 7 The SAS System 10:39 Tuesday, September 10, 2002 434 * 6030 = "Pascagoula-Moss Point, MS" 435 * 6080 = "Pensacola, FL" 436 * 6120 = "Peoria, IL" 437 * 6160 = "Philadelphia, PA/NJ" 438 * 6200 = "Phoenix, AZ" 439 * 6240 = "Pine Bluff" 440 * 6280 = "Pittsburgh-Beaver Valley, PA" 441 * 6281 = "Beaver County, PA" 442 * 6320 = "Pittsfield, MA" 443 * 6400 = "Portland, ME" 444 * 6440 = "Portland-Vancouver, OR/WA" 445 * 6441 = "Vancouver, WA" 446 * 6450 = "Portsmouth-Dover-Rochester, NH/ME" 447 * 6460 = "Poughkeepsie, NY" 448 * 6480 = "Providence-Fall River-Pawtucket, MA/RI" 449 * 6481 = "Fall River, MA/RI" 450 * 6482 = "Pawtucket-Woonsocket-Attleboro, RI/MA" 451 * 6520 = "Provo-Orem, UT" 452 * 6560 = "Pueblo, CO" 453 * 6600 = "Racine, WI" 454 * 6640 = "Raleigh-Durham, NC" 455 * 6641 = "Durham, NC" 456 * 6660 = "Rapid City, SD" 457 * 6680 = "Reading, PA" 458 * 6690 = "Redding, CA" 459 * 6720 = "Reno, NV" 460 * 6740 = "Richland-Kennewick-Pasco, WA" 461 * 6760 = "Richmond-Peterburg, VA" 462 * 6761 = "Petersburg-Colonial Heights, VA" 463 * 6780 = "Riverside-San Bernadino, CA" 464 * 6781 = "San Bernadino, CA" 465 * 6800 = "Roanoke, VA" 466 * 6820 = "Rochester, MN" 467 * 6840 = "Rochester, NY" 468 * 6880 = "Rockford, IL" 469 * 6920 = "Sacramento, CA" 470 * 6960 = "Saginaw-Bay City-Midland, MI" 471 * 6961 = "Bay City, MI" 472 * 6980 = "St. Cloud, MN" 473 * 7000 = "St. Joseph, MO" 474 * 7040 = "St. Louis, MO-IL" 475 * 7080 = "Salem, OR" 476 * 7120 = "Salinas-Sea Side-Monterey, CA" 477 * 7140 = "Salisbury-Concord, NC" 478 * 7160 = "Salt Lake City-Ogden, UT" 479 * 7161 = "Ogden, UT" 480 * 7200 = "San Angelo, TX" 481 * 7240 = "San Antonio, TX" 482 * 7320 = "San Diego, CA" 483 * 7360 = "San Francisco-Oakland-Vallejo, CA" 484 * 7361 = "Oakland, CA" 485 * 7362 = "Vallejo-Fairfield-Napa, CA" 486 * 7400 = "San Jose, CA" 487 * 7470 = "Santa Barbara-Santa Maria-Lompoc, CA" 488 * 7480 = "Santa Cruz, CA" 489 * 7490 = "Santa Fe, NM" 490 * 7500 = "Santa Rosa-Petaluma, CA" 491 * 7510 = "Sarasota, FL" 492 * 7520 = "Savannah, GA" 493 * 7560 = "Scranton-Wilkes-Barre, PA" 494 * 7561 = "Wilkes-Barre-Hazelton, PA" 495 * 7600 = "Seattle-Everett, WA" 496 * 7610 = "Sharon, PA" 497 * 7620 = "Sheboygan, SI" 498 * 7640 = "Sherman-Denison, TX" 499 * 7680 = "Shreveport, LA" 500 * 7720 = "Sioux City, IA/NE" 501 * 7760 = "Sioux Falls, SD" 502 * 7800 = "South Bend-Mishawaka, IN" 503 * 7840 = "Spokane, WA" 504 * 7880 = "Springfield, IL" 505 * 7920 = "Springfield, MO" 506 * 8000 = "Springfield-Holyoke-Chicopee, MA" 507 * 8040 = "Stamford, CT" 508 * 8050 = "State College, PA" 509 * 8080 = "Steubenville-Weirton,OH/WV" 8 The SAS System 10:39 Tuesday, September 10, 2002 510 * 8120 = "Stockton, CA" 511 * 8160 = "Syracuse, NY" 512 * 8200 = "Tacoma, WA" 513 * 8240 = "Tallahassee, FL" 514 * 8280 = "Tampa-St. Petersburg-Clearwater, FL" 515 * 8320 = "Terre Haute, IN" 516 * 8360 = "Texarkana, TX/AR" 517 * 8400 = "Toledo, OH/MI" 518 * 8440 = "Topeka, KS" 519 * 8480 = "Trenton, NJ" 520 * 8520 = "Tucson, AZ" 521 * 8560 = "Tulsa, OK" 522 * 8600 = "Tuscaloosa, AL" 523 * 8640 = "Tyler, TX" 524 * 8680 = "Utica-Rome, NY" 525 * 8730 = "Ventura-Oxnard-Simi Valley, CA" 526 * 8750 = "Victoria, TX" 527 * 8760 = "Vineland-Milville-Bridgetown, NJ" 528 * 8780 = "Visalia-Tulare-Porterville, CA" 529 * 8800 = "Waco, TX" 530 * 8840 = "Washington, DC/MD/VA" 531 * 8880 = "Waterbury, CT" 532 * 8920 = "Waterloo-Cedar Falls, IA" 533 * 8940 = "Wausau, WI" 534 * 8960 = "West Palm Beach-Boca Raton-Delray Beac" /* h, FL */ 535 * 9000 = "Wheeling, WV/OH" 536 * 9040 = "Wichita, KS" 537 * 9080 = "Wichita Falls, TX" 538 * 9140 = "Williamsport, PA" 539 * 9160 = "Wilmington, DE/NJ,MD" 540 * 9200 = "Wilmington, NC" 541 * 9240 = "Worcester, MA" 542 * 9260 = "Yakima, WA" 543 * 9280 = "York, PA" 544 * 9320 = "Youngstown-Warren, OH-PA" 545 * 9340 = "Yuba City, CA" 546 * 9360 = "Yuma, AZ" 547 *; 548 *VALUE P107L (default=32) 549 * 0 = "Not in identifiable city (or size grou" /* p) */ 550 * 10 = "Akron, OH" 551 * 30 = "Almeda, CA" 552 * 50 = "Albany, NY" 553 * 70 = "Albuquerque, NM" 554 * 90 = "Alexandria, VA" 555 * 110 = "Allegheny, PA" 556 * 130 = "Allentown, PA" 557 * 150 = "Altoona, PA" 558 * 170 = "Amsterdam, NY" 559 * 190 = "Anaheim, CA" 560 * 210 = "Anchorage, AK" 561 * 230 = "Anderson, IN" 562 * 270 = "Ann Arbor, MI" 563 * 290 = "Arlington, TX" 564 * 310 = "Arlington, VA" 565 * 330 = "Asheville, NC" 566 * 350 = "Atlanta, GA" 567 * 370 = "Atlantic City, NJ" 568 * 390 = "Auburn, NY" 569 * 410 = "Augusta, GA" 570 * 430 = "Augusta, ME" 571 * 450 = "Aurora, CO" 572 * 470 = "Aurora, IL" 573 * 490 = "Austin, TX" 574 * 510 = "Bakersfield, CA" 575 * 530 = "Baltimore, MD" 576 * 550 = "Bangor, ME" 577 * 570 = "Bath, ME" 578 * 590 = "Baton Rouge, LA" 579 * 610 = "Battle Creek, MI" 580 * 630 = "Bay City, MI" 581 * 650 = "Bayonne, NJ" 582 * 670 = "Beaumont, TX" 583 * 710 = "Berkeley, CA" 584 * 730 = "Bethlehem, PA" 585 * 750 = "Binghampton, NY" 9 The SAS System 10:39 Tuesday, September 10, 2002 586 * 770 = "Birmingham, AL" 587 * 790 = "Bloomington, IL" 588 * 810 = "Boston, MA" 589 * 830 = "Bridgeport, CT" 590 * 850 = "Brockton, MA" 591 * 870 = "Brookline, MA" 592 * 890 = "Buffalo, NY" 593 * 910 = "Butte, MT" 594 * 930 = "Cambridge, MA" 595 * 950 = "Camden, NJ" 596 * 970 = "Camden, NY" 597 * 990 = "Canton, OH" 598 * 1010 = "Cedar Rapids, IA" 599 * 1030 = "Charlestown, MA" 600 * 1050 = "Charleston, SC" 601 * 1070 = "Charleston, WV" 602 * 1090 = "Charlotte, NC" 603 * 1110 = "Chattanooga, TN" 604 * 1130 = "Chelsea, MA" 605 * 1150 = "Chesapeake, VA" 606 * 1170 = "Chester, PA" 607 * 1190 = "Chicago, IL" 608 * 1210 = "Chicopee, MA" 609 * 1230 = "Chillicothe, OH" 610 * 1250 = "Chula Vista, CA" 611 * 1270 = "Cicero, IL" 612 * 1290 = "Cincinnati, OH" 613 * 1310 = "Clarksburg, WV" 614 * 1330 = "Cleveland, OH" 615 * 1350 = "Clifton, NJ" 616 * 1370 = "Clinton, IA" 617 * 1390 = "Colorado Springs, CO" 618 * 1410 = "Columbia, SC" 619 * 1430 = "Columbus, GA" 620 * 1450 = "Columbus, OH" 621 * 1470 = "Concord, CA" 622 * 1490 = "Concord, NH" 623 * 1510 = "Council Bluffs, IA" 624 * 1530 = "Covington, KY" 625 * 1570 = "Cumberland, MD" 626 * 1590 = "Dallas, TX" 627 * 1610 = "Danvers, MA" 628 * 1630 = "Danville, IL" 629 * 1650 = "Davenport, IA" 630 * 1670 = "Dayton, OH" 631 * 1690 = "Decatur, IL" 632 * 1710 = "Denver, CO" 633 * 1730 = "Des Moines, IA" 634 * 1750 = "Detroit, MI" 635 * 1770 = "Dorchester, MA" 636 * 1790 = "Dover, NH" 637 * 1810 = "Dubuque, IA" 638 * 1830 = "Duluth, MN" 639 * 1850 = "Durham, NC" 640 * 1870 = "East Chicago, IN" 641 * 1890 = "East Cleveland, OH" 642 * 1910 = "East Los Angeles, CA" 643 * 1930 = "East Orange, NJ" 644 * 1950 = "East St. Louis, IL" 645 * 1970 = "Easton, PA" 646 * 1990 = "El Monte, CA" 647 * 2010 = "El Paso, TX" 648 * 2030 = "Elgin, IL" 649 * 2050 = "Elizabeth, NJ" 650 * 2070 = "Elmira, NY" 651 * 2090 = "Erie, PA" 652 * 2110 = "Escondido, CA" 653 * 2130 = "Eugene, OR" 654 * 2150 = "Evanston, IL" 655 * 2170 = "Evansville, IN" 656 * 2190 = "Everett, MA" 657 * 2210 = "Everette, WA" 658 * 2230 = "Fall River, MA" 659 * 2250 = "Fitchburg, MA" 660 * 2270 = "Flint, MI" 661 * 2290 = "Fort Lauderdale, FL" 10 The SAS System 10:39 Tuesday, September 10, 2002 662 * 2310 = "Fort Smith, AR" 663 * 2330 = "Fort Wayne, IN" 664 * 2350 = "Fort Worth, TX" 665 * 2370 = "Fresno, CA" 666 * 2390 = "Fullerton, CA" 667 * 2410 = "Galveston, TX" 668 * 2430 = "Garden Grove, CA" 669 * 2450 = "Garland, TX" 670 * 2470 = "Gary, IN" 671 * 2490 = "Glendale, CA" 672 * 2510 = "Gloucester, MA" 673 * 2530 = "Grand Rapids, MI" 674 * 2550 = "Green Bay, WI" 675 * 2570 = "Greensboro, NC" 676 * 2590 = "Hagerstown, MD" 677 * 2610 = "Hamilton, OH" 678 * 2630 = "Hammond, IN" 679 * 2650 = "Hampton, VA" 680 * 2670 = "Hamtramck Village, MI" 681 * 2690 = "Harrisburg, PA" 682 * 2710 = "Hartford, CT" 683 * 2730 = "Haverhill, MA" 684 * 2750 = "Hazleton, PA" 685 * 2770 = "Hialeah, FL" 686 * 2790 = "Highland Park, MI" 687 * 2810 = "Hoboken, NJ" 688 * 2830 = "Hollywood, FL" 689 * 2850 = "Holyoke, MA" 690 * 2870 = "Honolulu, HI" 691 * 2890 = "Houston, TX" 692 * 2910 = "Huntington, WV" 693 * 2930 = "Huntingon Beach, CA" 694 * 2950 = "Huntsville, AL" 695 * 2970 = "Independence, MO" 696 * 2990 = "Indianapolis, IN" 697 * 3010 = "Inglewood, CA" 698 * 3030 = "Irving, TX" 699 * 3050 = "Irvington, NJ" 700 * 3070 = "Jackson, MI" 701 * 3090 = "Jackson, MS" 702 * 3110 = "Jacksonville, FL" 703 * 3130 = "Jamestown , NY" 704 * 3150 = "Jersey City, NJ" 705 * 3170 = "Johnstown, PA" 706 * 3190 = "Joliet, IL" 707 * 3210 = "Joplin, MO" 708 * 3230 = "Kalamazoo, MI" 709 * 3250 = "Kansas City, KS" 710 * 3260 = "Kansas City, MO" 711 * 3270 = "Kearny, NJ" 712 * 3290 = "Kenosha, WI" 713 * 3310 = "Kingston, NY" 714 * 3330 = "Knoxville, TN" 715 * 3350 = "Kokomo, IN" 716 * 3370 = "La Crosse, WI" 717 * 3390 = "Lafayette, LA" 718 * 3410 = "Lakewood, CO" 719 * 3430 = "Lakewood, OH" 720 * 3450 = "Lancaster, PA" 721 * 3470 = "Lansing, MI" 722 * 3490 = "Las Vegas, NV" 723 * 3510 = "Lawrence, MA" 724 * 3530 = "LeHigh, PA" 725 * 3550 = "Lewiston, ME" 726 * 3570 = "Lexington, KY" 727 * 3590 = "Lexington-Fayette, KY" 728 * 3610 = "Lima, OH" 729 * 3630 = "Lincoln, NE" 730 * 3650 = "Little Rock, AR" 731 * 3670 = "Livonia, MI" 732 * 3690 = "Long Beach, CA" 733 * 3710 = "Lorain, OH" 734 * 3730 = "Los Angeles, CA" 735 * 3750 = "Louisville, KY" 736 * 3770 = "Lowell, MA" 737 * 3790 = "Lynchburg, VA" 11 The SAS System 10:39 Tuesday, September 10, 2002 738 * 3810 = "Lynn, MA" 739 * 3830 = "Macon, GA" 740 * 3850 = "Madison, IN" 741 * 3870 = "Madison, WI" 742 * 3890 = "Malden, MA" 743 * 3910 = "Manchester, NH" 744 * 3930 = "Mansfield, OH" 745 * 3950 = "Marion, OH" 746 * 3970 = "McKeesport, PA" 747 * 3990 = "Medford, MA" 748 * 4010 = "Memphis, TN" 749 * 4030 = "Meriden, CT" 750 * 4050 = "Mesa, AZ" 751 * 4070 = "Mesquite, TX" 752 * 4090 = "Metairie, LA" 753 * 4110 = "Miami, FL" 754 * 4130 = "Milwaukee, WI" 755 * 4150 = "Minneapolis, MN" 756 * 4170 = "Mobile, AL" 757 * 4190 = "Modesto, CA" 758 * 4210 = "Moline, IL" 759 * 4230 = "Montclair, NJ" 760 * 4250 = "Montgomery, AL" 761 * 4270 = "Moreno Valley, CA" 762 * 4290 = "Mount Vernon, NY" 763 * 4310 = "Muncie, IN" 764 * 4330 = "Muskegon, MI" 765 * 4350 = "Muskogee, OK" 766 * 4370 = "Nantucket, MA" 767 * 4390 = "Nashua, NH" 768 * 4410 = "Nashville-Davidson, TN" 769 * 4411 = "Nashville, TN" 770 * 4430 = "New Albany, IN" 771 * 4450 = "New Bedford, MA" 772 * 4470 = "New Britain, CT" 773 * 4490 = "New Brunswick, NJ" 774 * 4510 = "New Castle, PA" 775 * 4530 = "New Haven, CT" 776 * 4550 = "New London, CT" 777 * 4570 = "New Orleans, LA" 778 * 4590 = "New Rochelle, NY" 779 * 4610 = "New York, NY" 780 * 4611 = "Bronx, NY" 781 * 4630 = "Newark, NJ" 782 * 4650 = "Newark, OH" 783 * 4670 = "Newburgh, NY" 784 * 4690 = "Newburyport, MA" 785 * 4710 = "Newport, KY" 786 * 4730 = "Newport, RI" 787 * 4750 = "Newport News, VA" 788 * 4770 = "Newton, MA" 789 * 4790 = "Niagara Falls, NY" 790 * 4810 = "Norfolk, VA" 791 * 4830 = "Norristown Boro, PA" 792 * 4850 = "North Providence, RI" 793 * 4870 = "Norwalk, CT" 794 * 4890 = "Norwich, CT" 795 * 4910 = "Oak Park Village" 796 * 4930 = "Oakland, CA" 797 * 4950 = "Oceanside, CA" 798 * 4970 = "Ogden, UT" 799 * 4990 = "Oklahoma City, OK" 800 * 5010 = "Omaha, NE" 801 * 5030 = "Ontario, CA" 802 * 5050 = "Orange, NJ" 803 * 5070 = "Orlando, FL" 804 * 5090 = "Oshkosh, WI" 805 * 5110 = "Oswego, NY" 806 * 5130 = "Oxnard, CA" 807 * 5150 = "Pasadena, CA" 808 * 5170 = "Pasadena, TX" 809 * 5190 = "Passaic, NJ" 810 * 5210 = "Paterson, NJ" 811 * 5230 = "Pawtucket, RI" 812 * 5250 = "Pensacola, FL" 813 * 5270 = "Peoria, IL" 12 The SAS System 10:39 Tuesday, September 10, 2002 814 * 5290 = "Perth Amboy, NJ" 815 * 5310 = "Petersburg, VA" 816 * 5330 = "Philadelphia, PA" 817 * 5331 = "Kensington, PA" 818 * 5332 = "Mayamensing, PA" 819 * 5333 = "Northern Liberties, PA" 820 * 5334 = "Southwark, PA" 821 * 5335 = "Spring Garden, PA" 822 * 5350 = "Phoenix, AZ" 823 * 5370 = "Pittsburgh, PA" 824 * 5390 = "Pittsfield, MA" 825 * 5410 = "Plainfield, NJ" 826 * 5430 = "Plano, TX" 827 * 5450 = "Pomona, CA" 828 * 5470 = "Pontiac, MI" 829 * 5490 = "Port Huron, MI" 830 * 5510 = "Portland, ME" 831 * 5530 = "Portland, OR" 832 * 5550 = "Portsmouth, NH" 833 * 5570 = "Portsmouth, OH" 834 * 5590 = "Portsmouth, VA" 835 * 5610 = "Pottsville,PA" 836 * 5630 = "Poughkeepsie, NY" 837 * 5650 = "Providence, RI" 838 * 5670 = "Pueblo, CO" 839 * 5690 = "Quincy, IL" 840 * 5710 = "Quincy, MA" 841 * 5730 = "Racine, WI" 842 * 5750 = "Raleigh, NC" 843 * 5770 = "Rancho Cucamonga, CA" 844 * 5790 = "Reading, PA" 845 * 5810 = "Reno, NV" 846 * 5830 = "Revere, MA" 847 * 5850 = "Richmond, IN" 848 * 5870 = "Richmond, VA" 849 * 5890 = "Riverside, CA" 850 * 5910 = "Roanoke, VA" 851 * 5930 = "Rochester, NY" 852 * 5950 = "Rock Island, IL" 853 * 5970 = "Rockford, IL" 854 * 5990 = "Rome, NY" 855 * 6010 = "Roxbury, MA" 856 * 6030 = "Sacramento, CA" 857 * 6050 = "Saginaw, MI" 858 * 6070 = "Saint Joseph, MO" 859 * 6090 = "Saint Louis, MO" 860 * 6110 = "Saint Paul, MN" 861 * 6130 = "Saint Petersburg, FL" 862 * 6150 = "Salem, MA" 863 * 6170 = "Salem, OR" 864 * 6190 = "Salinas, CA" 865 * 6210 = "Salt Lake City, UT" 866 * 6230 = "San Antonio, TX" 867 * 6250 = "San Bernadino, CA" 868 * 6270 = "San Diego, CA" 869 * 6290 = "San Francisco, CA" 870 * 6310 = "San Jose, CA" 871 * 6330 = "Santa Ana, CA" 872 * 6350 = "Santa Rosa, CA" 873 * 6370 = "Savannah, GA" 874 * 6390 = "Schenectedy, NY" 875 * 6410 = "Scranton, PA" 876 * 6430 = "Seattle, WA" 877 * 6450 = "Sheboygan, WI" 878 * 6470 = "Shenandoah Borough, PA" 879 * 6490 = "Shreveport, LA" 880 * 6510 = "Sioux City, IA" 881 * 6530 = "Sioux Falls, SD" 882 * 6550 = "Smithfield, RI" 883 * 6570 = "Somerville, MA" 884 * 6590 = "South Bend, IN" 885 * 6610 = "South Omaha, NE" 886 * 6630 = "Spokane, WA" 887 * 6650 = "Springfield, IL" 888 * 6670 = "Springfield, MA" 889 * 6690 = "Springfield, MO" 13 The SAS System 10:39 Tuesday, September 10, 2002 890 * 6710 = "Springfield, OH" 891 * 6730 = "Stamford, CT" 892 * 6750 = "Sterling Heights, MI" 893 * 6770 = "Steubenville, OH" 894 * 6790 = "Stockton, CA" 895 * 6810 = "Sunnyvale, CA" 896 * 6830 = "Superior, WI" 897 * 6850 = "Syracuse, NY" 898 * 6870 = "Tacoma, WA" 899 * 6890 = "Tampa, FL" 900 * 6910 = "Taunton, MA" 901 * 6930 = "Tempe, AZ" 902 * 6950 = "Terre Haute, IN" 903 * 6970 = "Toledo, OH" 904 * 6990 = "Topeka, KS" 905 * 7010 = "Trenton, NJ" 906 * 7030 = "Troy, NY" 907 * 7050 = "Tucson, AZ" 908 * 7070 = "Tulsa, OK" 909 * 7090 = "Utica, NY" 910 * 7110 = "Vallejo, CA" 911 * 7130 = "Virginia Beach, VA" 912 * 7150 = "Waco, TX" 913 * 7170 = "Waltham, MA" 914 * 7190 = "Warren, OH" 915 * 7210 = "Warwick Town, RI" 916 * 7230 = "Washington, DC" 917 * 7231 = "Georgetown, DC" 918 * 7250 = "Waterbury, CT" 919 * 7270 = "Waterloo, IA" 920 * 7290 = "Waterloo, NY" 921 * 7310 = "Watertown, NY" 922 * 7330 = "West Hoboken, NJ" 923 * 7350 = "West New York, NJ" 924 * 7370 = "West Troy, NY" 925 * 7390 = "Wheeling, WV" 926 * 7410 = "Wichita, KS" 927 * 7430 = "Wichita Falls, TX" 928 * 7450 = "Wilkes-Barre, PA" 929 * 7470 = "Williamsport, PA" 930 * 7490 = "Wilmington, DE" 931 * 7510 = "Wilmington, NC" 932 * 7530 = "Winston-Salem, NC" 933 * 7550 = "Woonsocket, RI" 934 * 7570 = "Worcester, MA" 935 * 7590 = "Yonkers, NY" 936 * 7610 = "York, PA" 937 * 7630 = "Youngstown, OH" 938 * 7650 = "Zanesville, OH" 939 * 8100 = "20,000-24,999" 940 * 8105 = "20,000-24,999 New England" 941 * 8110 = "10,000-19,999" 942 * 8115 = "10,000-19,999 New England" 943 * 8120 = "City 10,000-24,999" 944 * 8125 = "New England Town Over 10000" 945 * 8200 = "City 8,000-9,999" 946 * 8205 = "New England Town 8,000-9999" 947 * 8300 = "City 5,000-7,999" 948 * 8305 = "New England Town 5,000-7999" 949 * 8400 = "City 4,000-4,999" 950 * 8405 = "New England Town 4,000-4,999" 951 * 8500 = "City 2,500-3,999" 952 * 8505 = "New England Town 2,500-3999" 953 * 8600 = "City 1,000-2,499" 954 * 8605 = "New England Town 1,000-2499" 955 * 8700 = "Rural - Under 1,000" 956 * 8705 = "Under 1,000 New England" 957 * 8800 = "Unincorporated" 958 * 8810 = "Military Reservation" 959 * 8820 = "Indian Reservation" 960 *; 961 *VALUE P108L (default=32) 962 * 0 = "Not identifiable" 963 * 1 = "Under 1,000, or unincorporated" 964 * 2 = "1,000 - 2,499" 965 * 3 = "2,500 - 3,999" 14 The SAS System 10:39 Tuesday, September 10, 2002 966 * 4 = "4,000 - 4,999" 967 * 5 = "5,000 - 9,999" 968 * 6 = "10,000 - 24,999" 969 * 7 = "25,000 - 49,999" 970 * 8 = "50,000 - 74,999" 971 * 9 = "75,000 - 99,999" 972 * 10 = "100,000 - 199,999" 973 * 20 = "200,000 - 299,999" 974 * 30 = "300,000 - 399,999" 975 * 40 = "400,000 - 499,999" 976 * 50 = "500,000 - 599,999" 977 * 60 = "600,000 - 749,999" 978 * 70 = "750,000 - 799,999" 979 * 80 = "1,000,000 - 1,999,999" 980 * 90 = "2,000,000+" 981 *; 982 *VALUE P109L (default=32) 983 * 0 = "Vacant unit" 984 * 1 = "HH in 1970 definition, but sampled as " /* larger unit */ 985 * 2 = "Additional hhs under 1990 definition" 986 * 3 = "Institution" 987 * 4 = "Other group quarters" 988 * 5 = "Boarders and lodgers in 1900" 989 * 6 = "Fragment" 990 *; 991 *VALUE P110L (default=32) 992 * 0 = "NA (not GQ)" 993 * 10 = "GQ in IPUMS, family group" 994 * 20 = "GQ in IPUMS, unrelated indivs" 995 * 100 = "Institution (1990)" 996 * 200 = "Correctional institution" 997 * 210 = "Fed/state correctional" 998 * 211 = "Prison" 999 * 212 = "Penitentiary" 1000 * 213 = "Military prison" 1001 * 220 = "Local correctional" 1002 * 221 = "Jail" 1003 * 230 = "School juvenile delinquents" 1004 * 240 = "Reformatory" 1005 * 250 = "Camp or chain-gang" 1006 * 260 = "House of correction" 1007 * 300 = "Mental institutions, disease & treatme" /* nt center */ 1008 * 400 = "Instits for elderly, handicap, poor" 1009 * 410 = "Homes for elderly" 1010 * 411 = "Aged, dependent home" 1011 * 412 = "Nursing/convalescnt home" 1012 * 413 = "Old soldiers home" 1013 * 420 = "Other Instits (Not Aged)" 1014 * 430 = "Homes neglected/depend children" 1015 * 431 = "Orphan school" 1016 * 432 = "Orphans home, asylum" 1017 * 440 = "Other instits for children" 1018 * 441 = "Childrens home, asylum" 1019 * 450 = "Handicapped homes, school, hosp" 1020 * 451 = "Deaf, blind school" 1021 * 452 = "Deaf, blind, epilepsy" 1022 * 460 = "Mentally handicapped home, school" 1023 * 461 = "School for feeblemind" 1024 * 470 = "TB & chronic disease hospital" 1025 * 471 = "Chronic hospitals" 1026 * 472 = "Sanataria" 1027 * 480 = "Poor houses and farms" 1028 * 481 = "Poor house, almshouse" 1029 * 482 = "Poor farm, workhouse" 1030 * 491 = "Maternity homes for unmarried mothers" 1031 * 492 = "Homes for widows, single, fallen women" 1032 * 493 = "Detention homes" 1033 * 494 = "Misc asylums" 1034 * 495 = "Home, other dependent" 1035 * 496 = "Instit combo or unknown" 1036 * 500 = "Non-instit group quarters" 1037 * 600 = "Military" 1038 * 601 = "U.S. army installation" 1039 * 602 = "Navy, marine intallation" 1040 * 603 = "Navy ships" 1041 * 604 = "Air service" 15 The SAS System 10:39 Tuesday, September 10, 2002 1042 * 700 = "College dormitory" 1043 * 701 = "Military service academys" 1044 * 800 = "Rooming house" 1045 * 801 = "Hotel" 1046 * 802 = "House, lodging apart." 1047 * 803 = "YMCA, YWCA" 1048 * 804 = "Club" 1049 * 900 = "Other non-instit GQ" 1050 * 910 = "Schools" 1051 * 911 = "Boarding schools" 1052 * 912 = "Academy, institute" 1053 * 913 = "Industrial training" 1054 * 914 = "Indian school" 1055 * 920 = "Hospitals" 1056 * 921 = "Hospital, charity" 1057 * 922 = "Infirmary" 1058 * 923 = "Maternity hospital" 1059 * 924 = "Childrens hospital" 1060 * 931 = "Church, Abbey" 1061 * 932 = "Convent" 1062 * 933 = "Monastery" 1063 * 934 = "Mission" 1064 * 935 = "Seminary" 1065 * 936 = "Religious commune" 1066 * 937 = "Other religious" 1067 * 940 = "Work sites" 1068 * 941 = "Construction, not rr" 1069 * 942 = "Lumber" 1070 * 943 = "Mining" 1071 * 944 = "Railroad" 1072 * 945 = "Farms, ranches" 1073 * 946 = "Ships, boats" 1074 * 947 = "Other industrial" 1075 * 948 = "Other worksites" 1076 * 950 = "Nurses home, dorm" 1077 * 960 = "Other group quarters" 1078 * 999 = "Fragment" 1079 *; 1080 *VALUE P111L (default=32) 1081 * 1 = "Non-Farm" 1082 * 2 = "Farm" 1083 *; 1084 *VALUE P112L (default=32) 1085 * 0 = "N/A" 1086 * 10 = "Owned or being bought" 1087 * 11 = "Check mark on manuscript" 1088 * 12 = "Owned free and clear" 1089 * 13 = "Owned with mortgage or loan" 1090 * 20 = "Rents" 1091 * 21 = "No cash rent" 1092 * 22 = "With cash rent" 1093 *; 1094 *VALUE P113L (default=32) 1095 * 0 = "N/A" 1096 * 1 = "No, owned free and clear" 1097 * 2 = "Check mark on manuscript" 1098 * 3 = "Yes, mortgaged/ deed of trust or simil" /* ar debt */ 1099 * 4 = "Yes, contract to purchase" 1100 *; 1101 *VALUE P114L (default=32) 1102 * 0 = "N/A" 1103 * 1 = "No" 1104 * 2 = "Yes" 1105 *; 1106 *VALUE P115L (default=32) 1107 * 0 = "N/A" 1108 * 1 = "No commercial use" 1109 * 2 = "Yes, used commercially" 1110 * 3 = "Unknown, unit on 10+ acres" 1111 *; 1112 *VALUE P116L (default=32) 1113 * 0 = "N/A" 1114 * 1 = "City or suburban lot" 1115 * 2 = "On less than 1 acre or city or suburba" /* n lot */ 1116 * 3 = "Under 10 acres" 1117 * 4 = "1-9 acres" 16 The SAS System 10:39 Tuesday, September 10, 2002 1118 * 5 = "10+ acres" 1119 *; 1120 *VALUE P117L (default=32) 1121 * 0 = "N/A" 1122 * 1 = "House on less than 10 acres" 1123 * 2 = "House on 10 acres or more" 1124 *; 1125 *VALUE P118L (default=32) 1126 * 0 = "N/A" 1127 * 1 = "No" 1128 * 2 = "Yes" 1129 *; 1130 *VALUE P119L (default=32) 1131 * 0 = "N/A" 1132 * 1 = "No" 1133 * 2 = "Yes, payment includes insurance premiu" /* ms */ 1134 *; 1135 *VALUE P120L (default=32) 1136 * 0 = "N/A" 1137 * 1 = "Not a condominium unit" 1138 * 2 = "Condominium unit" 1139 *; 1140 *VALUE P121L (default=32) 1141 * 0 = "N/A" 1142 * 1 = "For rent or sale" 1143 * 2 = "For sale only" 1144 * 3 = "Rented or sold but not (yet) occupied" 1145 * 4 = "For seasonal, recreational or other oc" /* casional use */ 1146 * 5 = "For occasional use" 1147 * 6 = "For seasonal use" 1148 * 7 = "For migrant farm workers" 1149 * 8 = "For seasoanl use or migratory workers" 1150 * 9 = "Other vacant" 1151 *; 1152 *VALUE P122L (default=32) 1153 * 0 = "N/A" 1154 * 1 = "Usual home elsewhere (UHE)" 1155 * 2 = "(UHE) Owner" 1156 * 3 = "(UHE) Renter" 1157 * 4 = "(UHE) Owneship undetermined" 1158 *; 1159 *VALUE P123L (default=32) 1160 * 0 = "N/A" 1161 * 1 = "No, not boarded up" 1162 * 2 = "Yes, boarded up" 1163 *; 1164 *VALUE P124L (default=32) 1165 * 0 = "N/A" 1166 * 1 = "Less than 1 month" 1167 * 2 = "1-2 months" 1168 * 3 = "2-6 months" 1169 * 4 = "6-12 months" 1170 * 5 = "12-24 months" 1171 * 6 = "More than 24 months" 1172 *; 1173 *VALUE P125L (default=32) 1174 * 0 = "N/A" 1175 * 1 = "Direct access" 1176 * 2 = "Indirect access" 1177 *; 1178 *VALUE P126L (default=32) 1179 * 0 = "N/A" 1180 * 1 = "No" 1181 * 2 = "No, or shared use" 1182 * 3 = "Yes, shared use" 1183 * 4 = "Yes (shared or exclusive use)" 1184 * 5 = "Yes, exclusive use" 1185 *; 1186 *VALUE P127L (default=32) 1187 * 0 = "N/A" 1188 * 1 = "1 room" 1189 * 2 = "2" 1190 * 3 = "3" 1191 * 4 = "4" 1192 * 5 = "5" 1193 * 6 = "6" 17 The SAS System 10:39 Tuesday, September 10, 2002 1194 * 7 = "7" 1195 * 8 = "8" 1196 * 9 = "9+" 1197 *; 1198 *VALUE P128L (default=32) 1199 * 0 = "N/A" 1200 * 10 = "Without complete plumbing" 1201 * 11 = "Incomplete, lacks hot water" 1202 * 12 = "Incomplete, lacks other or all plumbin" /* g */ 1203 * 13 = "Incomplete, has some facilities" 1204 * 14 = "Incomplete, has no facilities" 1205 * 20 = "With complete plumbing" 1206 * 21 = "Complete, exclusive use" 1207 * 22 = "Complete, shared use" 1208 *; 1209 *VALUE P129L (default=32) 1210 * 0 = "N/A" 1211 * 1 = "0-1 year old" 1212 * 2 = "2-5" 1213 * 3 = "6-10" 1214 * 4 = "11-20" 1215 * 5 = "21-30" 1216 * 6 = "31-40" 1217 * 7 = "41-50" 1218 * 8 = "51+" 1219 *; 1220 *VALUE P130L (default=32) 1221 * 0 = "N/A" 1222 * 1 = "1 unit" 1223 * 2 = "2" 1224 * 3 = "3" 1225 * 4 = "4" 1226 * 5 = "5" 1227 * 6 = "6" 1228 * 7 = "7" 1229 * 8 = "8" 1230 * 9 = "9" 1231 * 10 = "10+" 1232 * 11 = "Mobile home or trailer" 1233 *; 1234 *VALUE P131L (default=32) 1235 * 0 = "N/A" 1236 * 1 = "Mobile home or trailer" 1237 * 2 = "Boat, tent, van, other" 1238 * 3 = "1-family house, detached" 1239 * 4 = "1-family house, attached" 1240 * 5 = "2-family building" 1241 * 6 = "3-4 family building" 1242 * 7 = "5-9 family building" 1243 * 8 = "10-19 family building" 1244 * 9 = "20-49 family building" 1245 * 10 = "50+ family building" 1246 *; 1247 *VALUE P132L (default=32) 1248 * 0 = "N/A" 1249 * 1 = "Public system or private company" 1250 * 2 = "Individual well" 1251 * 3 = "Drilled individual well" 1252 * 4 = "Dug individual well" 1253 * 5 = "Other source" 1254 *; 1255 *VALUE P133L (default=32) 1256 * 0 = "N/A" 1257 * 1 = "Public sewer" 1258 * 2 = "Septic tank or cesspool" 1259 * 3 = "Other means" 1260 *; 1261 *VALUE P134L (default=32) 1262 * 0 = "N/A" 1263 * 1 = "0 or 1/2 baths" 1264 * 2 = "1 complete bathroom" 1265 * 3 = "1 complete bathroom plus 1/2 bath(s)" 1266 * 4 = "2+ complete (1960, 1980)" 1267 * 5 = "2 (1970)" 1268 * 6 = "2 1/2 (1970)" 1269 * 7 = "3+ (1970)" 18 The SAS System 10:39 Tuesday, September 10, 2002 1270 *; 1271 *VALUE P135L (default=32) 1272 * 0 = "N/A" 1273 * 1 = "No bedrooms" 1274 * 2 = "1" 1275 * 3 = "2" 1276 * 4 = "3" 1277 * 5 = "4 (4+ 1960)" 1278 * 6 = "5+" 1279 *; 1280 *VALUE P136L (default=32) 1281 * 0 = "N/A" 1282 * 1 = "1-3 stories" 1283 * 2 = "4+ (1960)" 1284 * 3 = "7-12" 1285 * 4 = "13+" 1286 *; 1287 *VALUE P137L (default=32) 1288 * 0 = "N/A" 1289 * 1 = "No, no elevator" 1290 * 2 = "Yes, elevator" 1291 *; 1292 *VALUE P138L (default=32) 1293 * 0 = "N/A" 1294 * 1 = "No phone available" 1295 * 2 = "Yes, phone available" 1296 *; 1297 *VALUE P139L (default=32) 1298 * 0 = "N/A" 1299 * 1 = "No air conditioning" 1300 * 2 = "1 one-room unit" 1301 * 3 = "2+ one-room units" 1302 * 4 = "Central system" 1303 *; 1304 *VALUE P140L (default=32) 1305 * 0 = "N/A" 1306 * 10 = "Not heated" 1307 * 20 = "Steam or hot water system" 1308 * 30 = "Central warm-air furnace (excluding ce" /* ntral heat pumps) */ 1309 * 40 = "Built-in electric unit (including cent" /* ral heat pumps) */ 1310 * 41 = "Electric heat pump" 1311 * 42 = "Other built-in electric units" 1312 * 50 = "Floor, wall, or pipeless furnace" 1313 * 61 = "Other w/ flue" 1314 * 62 = "Other w/out flue" 1315 * 63 = "With flue/Room heater, liquid fuel," 1316 * 64 = "Without flue/Room heater, liquid fuel," 1317 * 65 = "Fireplace, coal/wood stove, or portabl" /* e room heater */ 1318 *; 1319 *VALUE P141L (default=32) 1320 * 0 = "N/A" 1321 * 1 = "No fuel used" 1322 * 2 = "Utility gas from underground pipes se" /* rving neighborhood */ 1323 * 3 = "Bottled, tank, or LP gas" 1324 * 4 = "Electricity" 1325 * 5 = "Fuel oil, kerosene, and other liquid f" /* uels */ 1326 * 6 = "Coal or coke" 1327 * 7 = "Wood" 1328 * 8 = "Other" 1329 *; 1330 *VALUE P142L (default=32) 1331 * 0 = "N/A" 1332 * 1 = "No fuel used" 1333 * 2 = "Utility gas from underground pipes se" /* rving neighborhood */ 1334 * 3 = "Bottled, tank, or LP gas" 1335 * 4 = "Electricity" 1336 * 5 = "Fuel oil, kerosene, other liquid fuels" 1337 * 6 = "Coal or coke" 1338 * 7 = "Wood" 1339 * 8 = "Solar energy" 1340 * 9 = "Other" 1341 *; 1342 *VALUE P143L (default=32) 1343 * 0 = "N/A" 1344 * 1 = "No fuel used" 1345 * 2 = "Utility gas from underground pipes ser" /* ving neighborhood */ 19 The SAS System 10:39 Tuesday, September 10, 2002 1346 * 3 = "Bottled, tank, or LP gas" 1347 * 4 = "Electricity" 1348 * 5 = "Fuel oil, kerosene, and other liquid f" /* uels */ 1349 * 6 = "Coal or coke" 1350 * 7 = "Wood" 1351 * 8 = "Other" 1352 *; 1353 *VALUE P144L (default=32) 1354 * 0 = "N/A" 1355 * 1 = "No automobile" 1356 * 2 = "1 automobile available" 1357 * 3 = "2" 1358 * 4 = "3+" 1359 *; 1360 *VALUE P145L (default=32) 1361 * 0 = "N/A" 1362 * 1 = "No trucks or vans" 1363 * 2 = "1 available" 1364 * 3 = "2" 1365 * 4 = "3+" 1366 *; 1367 *VALUE P146L (default=32) 1368 * 101 = "Head/Householder" 1369 * 201 = "Spouse" 1370 * 202 = "2nd/3rd Wife (Polygamous)" 1371 * 301 = "Child" 1372 * 302 = "Adopted Child" 1373 * 303 = "Stepchild" 1374 * 401 = "Child-in-law" 1375 * 402 = "Step Child-in-law" 1376 * 501 = "Parent" 1377 * 502 = "Stepparent" 1378 * 601 = "Parent-in-Law" 1379 * 602 = "Stepparent-in-law" 1380 * 701 = "Sibling" 1381 * 702 = "Step/Half/Adopted Sibling" 1382 * 801 = "Sibling-in-Law" 1383 * 802 = "Step/Half Sibling-in-law" 1384 * 901 = "Grandchild" 1385 * 902 = "Adopted Grandchild" 1386 * 903 = "Step Grandchild" 1387 * 904 = "Grandchild-in-law" 1388 * 1001 = "Other Relative, n.s." 1389 * 1011 = "Grandparent" 1390 * 1012 = "Step Grandparent" 1391 * 1013 = "Grandparent-in-law" 1392 * 1021 = "Aunt or Uncle" 1393 * 1022 = "Aunt,Uncle-in-law" 1394 * 1031 = "Nephew, Niece" 1395 * 1032 = "Neph/Niece-in-law" 1396 * 1033 = "Step/Adopted Nephew/Niece" 1397 * 1034 = "Grand Niece/Nephew" 1398 * 1041 = "Cousin" 1399 * 1042 = "Cousin-in-law" 1400 * 1051 = "Great Grandchild" 1401 * 1061 = "Other relative, nec" 1402 * 1100 = "Partner, Friend, Visitor" 1403 * 1110 = "Partner/friend" 1404 * 1111 = "Friend" 1405 * 1112 = "Partner" 1406 * 1113 = "Partner/roomate" 1407 * 1114 = "Unmarried Partner" 1408 * 1115 = "Housemate/roommate" 1409 * 1120 = "Relative of partner" 1410 * 1130 = "Concubine/Mistress" 1411 * 1131 = "Visitor" 1412 * 1132 = "Companion and his/her family" 1413 * 1139 = "Allocated partner/friend/visitor" 1414 * 1201 = "Roomers/Boarders/Lodgers" 1415 * 1202 = "Boarders" 1416 * 1203 = "Lodgers" 1417 * 1204 = "Roomer" 1418 * 1205 = "Tenant" 1419 * 1206 = "Foster child" 1420 * 1211 = "Servant" 1421 * 1212 = "Housekeeper" 20 The SAS System 10:39 Tuesday, September 10, 2002 1422 * 1213 = "Maid" 1423 * 1214 = "Cook" 1424 * 1215 = "Nurse" 1425 * 1216 = "Other probable domestic employee" 1426 * 1217 = "Other employee" 1427 * 1219 = "Relative of employee" 1428 * 1221 = "Military" 1429 * 1222 = "Students" 1430 * 1223 = "Members of religious orders" 1431 * 1230 = "Other non-relatives" 1432 * 1239 = "Allocated other non-relative" 1433 * 1240 = "Roomers/boarders/lodgers and foster ch" /* ildren */ 1434 * 1241 = "Roomers/boarders/lodgers" 1435 * 1242 = "Foster children" 1436 * 1250 = "Employees" 1437 * 1251 = "Domestic employees" 1438 * 1252 = "Non-domestic employees" 1439 * 1253 = "Relative of employee" 1440 * 1260 = "Other non-relatives" 1441 * 1270 = "Non-inmate, 1990" 1442 * 1281 = "Head of GQ" 1443 * 1282 = "Employee of GQ" 1444 * 1283 = "Relative of GQ head or employee" 1445 * 1284 = "Other non-inmate 1940-1950" 1446 * 1291 = "Military" 1447 * 1292 = "College dormitories" 1448 * 1293 = "Residents of rooming houses" 1449 * 1294 = "Other non-inmate, 1980" 1450 * 1295 = "Other non-inmate, 1960-1970" 1451 * 1296 = "Non-inmates in institutions" 1452 * 1301 = "Institutional inmates" 1453 *; 1454 *VALUE P147L (default=32) 1455 * 1 = "Male" 1456 * 2 = "Female" 1457 *; 1458 *VALUE P148L (default=32) 1459 * 100 = "White" 1460 * 110 = "Spanish write-in" 1461 * 120 = "Blank (white)" 1462 * 200 = "Black/Negro" 1463 * 210 = "Mulatto" 1464 * 300 = "American Indian" 1465 * 301 = "Alaskan Athabaskan" 1466 * 302 = "Apache" 1467 * 303 = "Blackfoot" 1468 * 304 = "Cherokee" 1469 * 305 = "Cheyenne" 1470 * 306 = "Chickasaw" 1471 * 307 = "Chippewa" 1472 * 308 = "Choctaw" 1473 * 309 = "Comanche" 1474 * 310 = "Creek" 1475 * 311 = "Crow" 1476 * 312 = "Iroquois" 1477 * 313 = "Kiowa" 1478 * 314 = "Lumbee" 1479 * 315 = "Navajo" 1480 * 316 = "Osage" 1481 * 317 = "Paiute" 1482 * 318 = "Pima" 1483 * 319 = "Potawatomi" 1484 * 320 = "Pueblo" 1485 * 321 = "Seminole" 1486 * 322 = "Shoshone" 1487 * 323 = "Sioux" 1488 * 324 = "Tlingit" 1489 * 325 = "Tohono Odham" 1490 * 326 = "All other tribes" 1491 * 327 = "Tribe not specified" 1492 * 330 = "Aleut" 1493 * 340 = "Eskimo" 1494 * 400 = "Chinese" 1495 * 410 = "Taiwanese" 1496 * 500 = "Japanese" 1497 * 600 = "Filipino" 21 The SAS System 10:39 Tuesday, September 10, 2002 1498 * 610 = "Asian Indian/Hindu" 1499 * 620 = "Korean" 1500 * 630 = "Hawaiian" 1501 * 640 = "Vietnamese" 1502 * 650 = "Other Asian and Pacific Islanders" 1503 * 660 = "Cambodian" 1504 * 661 = "Hmong" 1505 * 662 = "Laotian" 1506 * 663 = "Thai" 1507 * 664 = "Bangladeshi" 1508 * 665 = "Burmese" 1509 * 666 = "Indonesian" 1510 * 667 = "Malayan" 1511 * 668 = "Okinawan" 1512 * 669 = "Pakistani" 1513 * 670 = "Sri Lankan" 1514 * 671 = "All other Asian" 1515 * 680 = "Samoan" 1516 * 681 = "Tahitian" 1517 * 682 = "Tongan" 1518 * 683 = "Other Polynesian" 1519 * 685 = "Guamanian" 1520 * 686 = "Northern Mariana Islander" 1521 * 687 = "Palauan" 1522 * 688 = "Other Micronesian" 1523 * 690 = "Fijian" 1524 * 691 = "Other Melanesian" 1525 * 699 = "Pacific Islander, n.s." 1526 * 700 = "Other race, nec" 1527 *; 1528 *VALUE P149L (default=32) 1529 * 1 = "Married, spouse present" 1530 * 2 = "Married, spouse absent" 1531 * 3 = "Separated" 1532 * 4 = "Divorced" 1533 * 5 = "Widowed" 1534 * 6 = "Never married/single" 1535 *; 1536 *VALUE P150L (default=32) 1537 * 0 = "Not Applicable" 1538 * 1 = "Married once" 1539 * 2 = "Married twice (or more)" 1540 * 3 = "Three times" 1541 * 4 = "Four times" 1542 * 5 = "Five times" 1543 * 6 = "Six times" 1544 * 7 = "Unknown" 1545 * 8 = "Illegible" 1546 * 9 = "Missing" 1547 *; 1548 *VALUE P151L (default=32) 1549 * 0 = "N/A" 1550 * 1 = "No children" 1551 * 2 = "1 child" 1552 * 3 = "2 children" 1553 * 4 = "3" 1554 * 5 = "4" 1555 * 6 = "5" 1556 * 7 = "6" 1557 * 8 = "7" 1558 * 9 = "8" 1559 * 10 = "9" 1560 * 11 = "10 children" 1561 * 12 = "11" 1562 * 13 = "12 (12+ 1960-1990)" 1563 * 14 = "13" 1564 * 15 = "14" 1565 * 16 = "15" 1566 * 17 = "16" 1567 * 18 = "17" 1568 * 19 = "18" 1569 * 20 = "19" 1570 * 21 = "20" 1571 * 22 = "21" 1572 * 23 = "22" 1573 * 24 = "23" 22 The SAS System 10:39 Tuesday, September 10, 2002 1574 * 25 = "24" 1575 * 26 = "25 (25+ 1950)" 1576 * 27 = "26" 1577 * 28 = "27" 1578 * 31 = "30" 1579 * 34 = "33" 1580 * 51 = "50" 1581 * 57 = "56" 1582 * 61 = "60" 1583 *; 1584 *VALUE P152L (default=32) 1585 * 100 = "Alabama" 1586 * 200 = "Alaska" 1587 * 400 = "Arizona" 1588 * 500 = "Arkansas" 1589 * 600 = "California" 1590 * 800 = "Colorado" 1591 * 900 = "Connecticut" 1592 * 1000 = "Delaware" 1593 * 1100 = "District of Columbia" 1594 * 1200 = "Florida" 1595 * 1300 = "Georgia" 1596 * 1500 = "Hawaii" 1597 * 1600 = "Idaho" 1598 * 1610 = "Idaho Territory" 1599 * 1700 = "Illinois" 1600 * 1800 = "Indiana" 1601 * 1900 = "Iowa" 1602 * 2000 = "Kansas" 1603 * 2100 = "Kentucky" 1604 * 2200 = "Louisiana" 1605 * 2300 = "Maine" 1606 * 2400 = "Maryland" 1607 * 2500 = "Massachusetts" 1608 * 2600 = "Michigan" 1609 * 2700 = "Minnesota" 1610 * 2800 = "Mississippi" 1611 * 2900 = "Missouri" 1612 * 3000 = "Montana" 1613 * 3100 = "Nebraska" 1614 * 3200 = "Nevada" 1615 * 3300 = "New Hampshire" 1616 * 3400 = "New Jersey" 1617 * 3500 = "New Mexico" 1618 * 3510 = "New Mexico Territory" 1619 * 3600 = "New York" 1620 * 3700 = "North Carolina" 1621 * 3800 = "North Dakota" 1622 * 3900 = "Ohio" 1623 * 4000 = "Oklahoma" 1624 * 4010 = "Indian Territory" 1625 * 4100 = "Oregon" 1626 * 4200 = "Pennsylvania" 1627 * 4400 = "Rhode Island" 1628 * 4500 = "South Carolina" 1629 * 4600 = "South Dakota" 1630 * 4610 = "Dakota Territory" 1631 * 4700 = "Tennessee" 1632 * 4800 = "Texas" 1633 * 4900 = "Utah" 1634 * 4910 = "Utah Territory" 1635 * 5000 = "Vermont" 1636 * 5100 = "Virginia" 1637 * 5300 = "Washington" 1638 * 5400 = "West Virginia" 1639 * 5500 = "Wisconsin" 1640 * 5600 = "Wyoming" 1641 * 5610 = "Wyoming Territory" 1642 * 9000 = "Native American" 1643 * 9900 = "United States, ns" 1644 * 10000 = "American Samoa" 1645 * 10010 = "Samoa, 1940-1950" 1646 * 10500 = "Guam" 1647 * 11000 = "Puerto Rico" 1648 * 11500 = "U.S. Virgin Islands" 1649 * 11510 = "St. Croix" 23 The SAS System 10:39 Tuesday, September 10, 2002 1650 * 11520 = "St. John" 1651 * 11530 = "St. Thomas" 1652 * 12000 = "Other US Possessions:" 1653 * 12010 = "Johnston Atoll" 1654 * 12020 = "Midway Islands" 1655 * 12030 = "Wake Island" 1656 * 12040 = "Other US Caribbean Islands" 1657 * 12050 = "Other US Pacific Islands" 1658 * 12090 = "US outlying areas, ns" 1659 * 12091 = "US possession, ns" 1660 * 12092 = "US territory, ns" 1661 * 15000 = "Canada" 1662 * 15010 = "English Canada" 1663 * 15011 = "British Columbia" 1664 * 15013 = "Alberta" 1665 * 15015 = "Saskatchewan" 1666 * 15017 = "Northwest Terr." 1667 * 15019 = "Ruperts Land" 1668 * 15020 = "Manitoba" 1669 * 15021 = "Red River" 1670 * 15030 = "Ontario/Upper Canada" 1671 * 15031 = "Upper Canada" 1672 * 15032 = "Canada West" 1673 * 15040 = "New Brunswick" 1674 * 15050 = "Nova Scotia" 1675 * 15051 = "Cape Breton" 1676 * 15052 = "Halifax" 1677 * 15060 = "Prince Edward Island" 1678 * 15070 = "Newfoundland" 1679 * 15080 = "French Canada" 1680 * 15081 = "Quebec" 1681 * 15082 = "Lower Canada" 1682 * 15083 = "Canada East" 1683 * 15500 = "St. Pierre & Miquelon" 1684 * 16000 = "Atlantic Islands" 1685 * 16010 = "Bermuda" 1686 * 16020 = "Cape Verde" 1687 * 16030 = "Falkland Islands" 1688 * 16040 = "Greenland" 1689 * 16050 = "St. Helena & Ascension" 1690 * 16060 = "Canary Islands" 1691 * 19900 = "North America, ns" 1692 * 20000 = "Mexico" 1693 * 21000 = "Central America" 1694 * 21010 = "Belize/British Honduras" 1695 * 21020 = "Costa Rica" 1696 * 21030 = "El Salvador" 1697 * 21040 = "Guatemala" 1698 * 21050 = "Honduras" 1699 * 21060 = "Nicaragua" 1700 * 21070 = "Panama" 1701 * 21071 = "Canal Zone" 1702 * 21090 = "Central America, ns" 1703 * 25000 = "Cuba" 1704 * 26000 = "West Indies" 1705 * 26010 = "Dominican Republic" 1706 * 26020 = "Haiti" 1707 * 26030 = "Jamaica" 1708 * 26040 = "British West Indies" 1709 * 26041 = "Anguilla" 1710 * 26042 = "Antigua-Barbuda" 1711 * 26043 = "Bahamas" 1712 * 26044 = "Barbados" 1713 * 26045 = "British Virgin Islands" 1714 * 26046 = "Anegada" 1715 * 26047 = "Cooper" 1716 * 26048 = "Jost Van Dyke" 1717 * 26049 = "Peter" 1718 * 26050 = "Tortola" 1719 * 26051 = "Virgin Gorda" 1720 * 26052 = "Br. Virgin Islands, ns" 1721 * 26053 = "Cayman Islands" 1722 * 26054 = "Dominica" 1723 * 26055 = "Grenada" 1724 * 26056 = "Montserrat" 1725 * 26057 = "St. Kitts-Nevis" 24 The SAS System 10:39 Tuesday, September 10, 2002 1726 * 26058 = "St. Lucia" 1727 * 26059 = "St. Vincent" 1728 * 26060 = "Trinidad & Tobago" 1729 * 26061 = "Turks & Caicos" 1730 * 26069 = "British West Indies, ns" 1731 * 26070 = "Other West Indies" 1732 * 26071 = "Aruba" 1733 * 26072 = "Netherlands Antilles" 1734 * 26073 = "Bonaire" 1735 * 26074 = "Curacao" 1736 * 26075 = "Dutch St. Maarten" 1737 * 26076 = "Saba" 1738 * 26077 = "St. Eustatius" 1739 * 26079 = "Dutch Caribbean, ns" 1740 * 26080 = "French St. Maarten" 1741 * 26081 = "Guadeloupe" 1742 * 26082 = "Martinique" 1743 * 26083 = "St. Barthelemy" 1744 * 26089 = "French Caribbean, ns" 1745 * 26090 = "Antilles, ns" 1746 * 26091 = "Caribbean, ns" 1747 * 26092 = "Latin America, ns" 1748 * 26094 = "West Indies, ns" 1749 * 26095 = "Windward Islands, ns" 1750 * 30000 = "South America" 1751 * 30005 = "Argentina" 1752 * 30010 = "Bolivia" 1753 * 30015 = "Brazil" 1754 * 30020 = "Chile" 1755 * 30025 = "Colombia" 1756 * 30030 = "Ecuador" 1757 * 30035 = "French Guiana" 1758 * 30040 = "Guyana/British Guiana" 1759 * 30045 = "Paraguay" 1760 * 30050 = "Peru" 1761 * 30055 = "Suriname" 1762 * 30060 = "Uruguay" 1763 * 30065 = "Venezuela" 1764 * 30090 = "South America, ns" 1765 * 40000 = "Denmark" 1766 * 40010 = "Faeroe Islands" 1767 * 40100 = "Finland" 1768 * 40200 = "Iceland" 1769 * 40300 = "Lapland" 1770 * 40400 = "Norway" 1771 * 40410 = "Svalbard & Jan Meyen" 1772 * 40411 = "Svalbard" 1773 * 40412 = "Jan Meyen" 1774 * 40500 = "Sweden" 1775 * 41000 = "England" 1776 * 41010 = "Channel Islands" 1777 * 41011 = "Guernsey" 1778 * 41012 = "Jersey" 1779 * 41020 = "Isle of Man" 1780 * 41100 = "Scotland" 1781 * 41200 = "Wales" 1782 * 41300 = "United Kingdom, ns" 1783 * 41400 = "Ireland" 1784 * 41410 = "Northern Ireland" 1785 * 41900 = "Northern Europe, ns" 1786 * 42000 = "Belgium" 1787 * 42100 = "France" 1788 * 42110 = "Alsace-Lorraine" 1789 * 42111 = "Alsace" 1790 * 42112 = "Lorraine" 1791 * 42200 = "Liechtenstein" 1792 * 42300 = "Luxembourg" 1793 * 42400 = "Monaco" 1794 * 42500 = "Netherlands" 1795 * 42600 = "Switerland" 1796 * 42900 = "Western Europe, ns" 1797 * 43000 = "Albania" 1798 * 43100 = "Andorra" 1799 * 43200 = "Gibraltar" 1800 * 43300 = "Greece" 1801 * 43310 = "Dodecanese Islands" 25 The SAS System 10:39 Tuesday, September 10, 2002 1802 * 43320 = "Turkey Greece" 1803 * 43330 = "Macedonia" 1804 * 43400 = "Italy" 1805 * 43500 = "Malta" 1806 * 43600 = "Portugal" 1807 * 43610 = "Azores" 1808 * 43620 = "Madeira Islands" 1809 * 43630 = "Cape Verde Is" 1810 * 43640 = "St. Miguel" 1811 * 43700 = "San Marino" 1812 * 43800 = "Spain" 1813 * 43900 = "Vatican City" 1814 * 44000 = "Southern Europe, ns" 1815 * 45000 = "Austria" 1816 * 45010 = "Austria-Hungary" 1817 * 45020 = "Austria-Graz" 1818 * 45030 = "Austria-Linz" 1819 * 45040 = "Austria-Salzburg" 1820 * 45050 = "Austria-Tyrol" 1821 * 45060 = "Austria-Vienna" 1822 * 45100 = "Bulgaria" 1823 * 45200 = "Czechoslovakia" 1824 * 45210 = "Bohemia" 1825 * 45211 = "Bohemia-Moravia" 1826 * 45213 = "Slovakia" 1827 * 45300 = "Germany" 1828 * 45301 = "Berlin" 1829 * 45310 = "West Germany" 1830 * 45311 = "Baden" 1831 * 45312 = "Bavaria" 1832 * 45313 = "Bremen" 1833 * 45314 = "Brunswick" 1834 * 45315 = "Hamburg" 1835 * 45316 = "Hanover" 1836 * 45317 = "Hessen" 1837 * 45318 = "Hessen Nassau" 1838 * 45319 = "Holstein" 1839 * 45320 = "Lippe" 1840 * 45321 = "Lubeck" 1841 * 45322 = "Oldenburg" 1842 * 45323 = "Rhine Province" 1843 * 45324 = "Schleswig" 1844 * 45325 = "Schleswig-Holstein" 1845 * 45326 = "Schwarzburg" 1846 * 45327 = "Waldeck" 1847 * 45328 = "West Berlin" 1848 * 45329 = "Westphalia" 1849 * 45330 = "Wurttemberg" 1850 * 45331 = "Frankfurt" 1851 * 45340 = "East Germany" 1852 * 45341 = "Anhalt" 1853 * 45342 = "Brandenburg" 1854 * 45343 = "East Berlin" 1855 * 45344 = "Mecklenburg" 1856 * 45345 = "Sachsen-Altenburg" 1857 * 45346 = "Sachsen-Coburg" 1858 * 45347 = "Sachsen-Gotha" 1859 * 45348 = "Sachsen-Meiningen" 1860 * 45349 = "Sachsen-Weimar-Eisenach" 1861 * 45350 = "Saxony" 1862 * 45351 = "Schwerin" 1863 * 45352 = "Strelitz" 1864 * 45353 = "Thuringian States" 1865 * 45360 = "Prussia, nec" 1866 * 45361 = "Hohenzollern" 1867 * 45362 = "Niedersachsen" 1868 * 45400 = "Hungary" 1869 * 45500 = "Poland" 1870 * 45510 = "Austrian Poland" 1871 * 45511 = "Galicia" 1872 * 45520 = "German Poland" 1873 * 45521 = "East Prussia" 1874 * 45522 = "Pomerania" 1875 * 45523 = "Posen" 1876 * 45524 = "Prussian Poland" 1877 * 45525 = "Silesia" 26 The SAS System 10:39 Tuesday, September 10, 2002 1878 * 45526 = "West Prussia" 1879 * 45530 = "Russian Poland" 1880 * 45600 = "Romania" 1881 * 45700 = "Yugoslavia" 1882 * 45710 = "Croatia" 1883 * 45720 = "Montenegro" 1884 * 45730 = "Serbia" 1885 * 45740 = "Bosnia" 1886 * 45750 = "Dalmatia" 1887 * 45760 = "Slovonia" 1888 * 45770 = "Carniola" 1889 * 45800 = "Central Europe, ns" 1890 * 45900 = "Eastern Europe, ns" 1891 * 46000 = "Estonia" 1892 * 46100 = "Latvia" 1893 * 46200 = "Lithuania" 1894 * 46300 = "Baltic States, ns" 1895 * 46500 = "Other USSR/"Russia"" 1896 * 46510 = "Byelorussia" 1897 * 46520 = "Moldavia" 1898 * 46521 = "Bessarabia" 1899 * 46530 = "Ukraine" 1900 * 46540 = "Armenia" 1901 * 46541 = "Azerbaijan" 1902 * 46542 = "Georgia" 1903 * 46543 = "Kazakhstan" 1904 * 46544 = "Kirghizia" 1905 * 46545 = "Tadzhik" 1906 * 46546 = "Turkmenistan" 1907 * 46547 = "Uzbekistan" 1908 * 46548 = "Siberia" 1909 * 46590 = "USSR, ns" 1910 * 49900 = "Europe, ns" 1911 * 50000 = "China" 1912 * 50010 = "Hong Kong" 1913 * 50020 = "Macau" 1914 * 50030 = "Mongolia" 1915 * 50040 = "Taiwan" 1916 * 50100 = "Japan" 1917 * 50200 = "Korea" 1918 * 50210 = "North Korea" 1919 * 50220 = "South Korea" 1920 * 50900 = "East Asia, ns" 1921 * 51000 = "Brunei" 1922 * 51100 = "Cambodia (Kampuchea)" 1923 * 51200 = "Indonesia" 1924 * 51210 = "East Indies" 1925 * 51220 = "East Timor" 1926 * 51300 = "Laos" 1927 * 51400 = "Malaysia" 1928 * 51500 = "Philippines" 1929 * 51600 = "Singapore" 1930 * 51700 = "Thailand" 1931 * 51800 = "Vietnam" 1932 * 51900 = "Southeast Asia, ns" 1933 * 51910 = "Indochina, ns" 1934 * 52000 = "Afghanistan" 1935 * 52100 = "India" 1936 * 52110 = "Bangladesh" 1937 * 52120 = "Bhutan" 1938 * 52130 = "Burma (Myanmar)" 1939 * 52140 = "Pakistan" 1940 * 52150 = "Sri Lanka (Ceylon)" 1941 * 52200 = "Iran" 1942 * 52300 = "Maldives" 1943 * 52400 = "Nepal" 1944 * 53000 = "Bahrain" 1945 * 53100 = "Cyprus" 1946 * 53200 = "Iraq" 1947 * 53210 = "Mesopotamia" 1948 * 53300 = "Iraq/Saudi Arabia" 1949 * 53400 = "Israel/Palestine" 1950 * 53410 = "Gaza Strip" 1951 * 53420 = "Palestine" 1952 * 53430 = "West Bank" 1953 * 53500 = "Jordan" 27 The SAS System 10:39 Tuesday, September 10, 2002 1954 * 53600 = "Kuwait" 1955 * 53700 = "Lebanon" 1956 * 53800 = "Oman" 1957 * 53900 = "Qatar" 1958 * 54000 = "Saudi Arabia" 1959 * 54100 = "Syria" 1960 * 54200 = "Turkey" 1961 * 54210 = "European Turkey" 1962 * 54220 = "Asian Turkey" 1963 * 54300 = "United Arab Emirates" 1964 * 54400 = "Yemen Arab Republic (North)" 1965 * 54500 = "Yemen, PDR (South)" 1966 * 54600 = "Persian Gulf States, ns" 1967 * 54700 = "Middle East, ns" 1968 * 54800 = "Southwest Asia, nec/ns" 1969 * 54900 = "Asia Minor, ns" 1970 * 55000 = "South Asia, nec" 1971 * 59900 = "Asia, nec/ns" 1972 * 60000 = "Africa" 1973 * 60010 = "Northern Africa" 1974 * 60011 = "Algeria" 1975 * 60012 = "Egypt/United Arab Rep." 1976 * 60013 = "Libya" 1977 * 60014 = "Morocco" 1978 * 60015 = "Sudan" 1979 * 60016 = "Tunisia" 1980 * 60017 = "Western Sahara" 1981 * 60019 = "North Africa, ns" 1982 * 60020 = "Benin" 1983 * 60021 = "Burkina Faso" 1984 * 60022 = "Gambia" 1985 * 60023 = "Ghana" 1986 * 60024 = "Guinea" 1987 * 60025 = "Guinea-Bissau" 1988 * 60026 = "Ivory Coast" 1989 * 60027 = "Liberia" 1990 * 60028 = "Mali" 1991 * 60029 = "Mauritania" 1992 * 60030 = "Niger" 1993 * 60031 = "Nigeria" 1994 * 60032 = "Senegal" 1995 * 60033 = "Sierra Leone" 1996 * 60034 = "Togo" 1997 * 60038 = "Western Africa, ns" 1998 * 60039 = "French West Africa, ns" 1999 * 60040 = "British Indian Ocean Territory" 2000 * 60041 = "Burundi" 2001 * 60042 = "Comoros" 2002 * 60043 = "Djibouti" 2003 * 60044 = "Ethiopia" 2004 * 60045 = "Kenya" 2005 * 60046 = "Madagascar" 2006 * 60047 = "Malawi" 2007 * 60048 = "Mauritius" 2008 * 60049 = "Mozambique" 2009 * 60050 = "Reunion" 2010 * 60051 = "Rwanda" 2011 * 60052 = "Seychelles" 2012 * 60053 = "Somalia" 2013 * 60054 = "Tanzania" 2014 * 60055 = "Uganda" 2015 * 60056 = "Zambia" 2016 * 60057 = "Zimbabwe" 2017 * 60058 = "Bassas da India" 2018 * 60059 = "Europa" 2019 * 60060 = "Gloriosos" 2020 * 60061 = "Juan de Nova" 2021 * 60062 = "Mayotte" 2022 * 60063 = "Tromelin" 2023 * 60064 = "Eastern Africa, nec/ns" 2024 * 60070 = "Central Africa" 2025 * 60071 = "Angola" 2026 * 60072 = "Cameroon" 2027 * 60073 = "Central African Republic" 2028 * 60074 = "Chad" 2029 * 60075 = "Congo" 28 The SAS System 10:39 Tuesday, September 10, 2002 2030 * 60076 = "Equatorial Guinea" 2031 * 60079 = "Zaire" 2032 * 60080 = "Central Africa, ns" 2033 * 60081 = "Equatorial Africe, ns" 2034 * 60082 = "French Equatorial Africa, ns" 2035 * 60090 = "Southern Africa:" 2036 * 60091 = "Botswana" 2037 * 60092 = "Lesotho" 2038 * 60093 = "Namibia" 2039 * 60094 = "South Africa (Union of)" 2040 * 60095 = "Swaziland" 2041 * 60096 = "Southern Africa, ns" 2042 * 60099 = "Africa, ns/nec" 2043 * 70000 = "Australia and New Zealand" 2044 * 70010 = "Australia" 2045 * 70011 = "Ashmore and Cartier Is" 2046 * 70012 = "Coral Sea Is. Terr." 2047 * 70020 = "New Zealand" 2048 * 71000 = "Pacific Islands" 2049 * 71010 = "New Caledonia" 2050 * 71011 = "Norfolk Islands" 2051 * 71012 = "Papua New Guinea" 2052 * 71014 = "Vanuatu (New Hebrides)" 2053 * 71019 = "Melanesia, ns" 2054 * 71020 = "Cook Islands" 2055 * 71021 = "Fiji" 2056 * 71022 = "French Polynesia" 2057 * 71023 = "Tonga" 2058 * 71025 = "Western Samoa" 2059 * 71029 = "Polynesia, ns" 2060 * 71030 = "Christmas Is." 2061 * 71031 = "Cocos Is." 2062 * 71032 = "Kiribati" 2063 * 71033 = "Canton & Enderbury" 2064 * 71034 = "Nauru" 2065 * 71035 = "Niue" 2066 * 71036 = "Pitcairn Island" 2067 * 71037 = "Tokelau" 2068 * 71038 = "Tuvalu" 2069 * 71039 = "Micronesia, ns" 2070 * 71040 = "US Pacific Trust Territories" 2071 * 71041 = "Marshall Islands" 2072 * 71042 = "Micronesia" 2073 * 71043 = "Kosrae" 2074 * 71044 = "Pohnpei" 2075 * 71045 = "Truk" 2076 * 71046 = "Yap" 2077 * 71047 = "Northern Mariana Islands" 2078 * 71048 = "Palau" 2079 * 71049 = "Pacific Trust Terr, ns" 2080 * 71090 = "Oceania, ns/nec" 2081 * 80000 = "Antarctica, ns/nec" 2082 * 80010 = "Bouvet Islands" 2083 * 80020 = "British Antarctic Terr." 2084 * 80030 = "Dronning Maud Land" 2085 * 80040 = "French Sthrn and Antarctic Lands" 2086 * 80050 = "Heard and McDonald Is" 2087 * 90000 = "Abroad (unknown) or at sea" 2088 * 90010 = "Abroad, ns" 2089 * 90011 = "Abroad (US citizen)" 2090 * 90020 = "At sea" 2091 * 90021 = "At sea (US citizen)" 2092 * 99700 = "Missing/Unknown" 2093 * 99900 = "Unknown value" 2094 *; 2095 *VALUE P153L (default=32) 2096 * 10 = "Alsatian, Alsace-Lorraine" 2097 * 20 = "Andorran" 2098 * 30 = "Austrian" 2099 * 40 = "Tirolean" 2100 * 51 = "Basque" 2101 * 52 = "Spanish Basque, Vasco, Euskalduna" 2102 * 53 = "Basque, Euskalduna" 2103 * 54 = "Spanish Basque, Vasco" 2104 * 60 = "French Basque" 2105 * 80 = "Belgian" 29 The SAS System 10:39 Tuesday, September 10, 2002 2106 * 90 = "Flemish/Vlamand" 2107 * 100 = "Walloon" 2108 * 110 = "British, Great Britain" 2109 * 120 = "British Isles" 2110 * 130 = "Channel Islander" 2111 * 140 = "Gibraltan" 2112 * 150 = "Cornish" 2113 * 160 = "Corsican" 2114 * 170 = "Cypriot" 2115 * 180 = "Greek Cypriote" 2116 * 190 = "Turkish Cypriote" 2117 * 200 = "Danish" 2118 * 210 = "Dutch, Hollander, Netherlander" 2119 * 211 = "Dutch-French-Irish" 2120 * 212 = "Dutch-German-Irish" 2121 * 213 = "Dutch-Irish-Scotch" 2122 * 220 = "English, Anglican" 2123 * 221 = "English-French-German" 2124 * 222 = "English-French-Irish" 2125 * 223 = "English-German-Irish" 2126 * 224 = "English-German-Swedish" 2127 * 225 = "English-Irish-Scotch" 2128 * 226 = "English-Scotch-Welsh" 2129 * 230 = "Faeroe Islander" 2130 * 240 = "Finnish" 2131 * 250 = "Karelian" 2132 * 260 = "French, Gascon, Huguenot, Norman, Wall" /* is Islander, (French */ 2133 * 270 = "Lorrainian" 2134 * 280 = "Breton" 2135 * 290 = "Frisian" 2136 * 300 = "Friulian" 2137 * 320 = "German" 2138 * 321 = "Pennsylvania German, Amish, Hutterite," /* Mennonite, Pennsylv */ 2139 * 323 = "West German, Palatinate, Rhineland" 2140 * 324 = "German-French-Irish" 2141 * 325 = "German-Irish-Italian" 2142 * 326 = "German-Irish-Scotch" 2143 * 327 = "German-Irish-Swedish" 2144 * 330 = "Bavarian" 2145 * 340 = "Berliner" 2146 * 350 = "Hamburger" 2147 * 360 = "Hanoverian" 2148 * 370 = "Hessian" 2149 * 380 = "Lubecker" 2150 * 390 = "Pomeranian," 2151 * 400 = "Prussian" 2152 * 410 = "Saxon" 2153 * 420 = "Sudetenlander" 2154 * 430 = "Westphalian" 2155 * 460 = "Greek" 2156 * 470 = "Cretan" 2157 * 480 = "Cycladic Islander, Dodecanese Islander" /* , Peloponnesian */ 2158 * 490 = "Icelander" 2159 * 500 = "Irish, various subheads," 2160 * 501 = "Celtic" 2161 * 510 = "Italian," 2162 * 530 = "Abruzzi" 2163 * 540 = "Apulian" 2164 * 550 = "Basilicata, Lucanian" 2165 * 560 = "Calabrian" 2166 * 570 = "Campanian, Amalfian" 2167 * 580 = "Emilia Romagna" 2168 * 590 = "Lazio, Rome, Vat. City" 2169 * 600 = "Ligurian" 2170 * 610 = "Lombardian" 2171 * 620 = "Marches" 2172 * 650 = "Piedmontese" 2173 * 660 = "Puglia" 2174 * 680 = "Sicilian" 2175 * 690 = "Tuscan" 2176 * 700 = "Trentino" 2177 * 720 = "Valle d Aosta" 2178 * 730 = "Venetian" 2179 * 750 = "Lapp, Samelat" 2180 * 760 = "Liechtensteiner" 2181 * 770 = "Luxemburger" 30 The SAS System 10:39 Tuesday, September 10, 2002 2182 * 780 = "Maltese, Gozo" 2183 * 790 = "Manx, Isle of Man" 2184 * 800 = "Monegasque, Monacan" 2185 * 810 = "Northern Irelander" 2186 * 820 = "Norwegian, Jan Meyen Is, Spitsbergen," /* Svalbard Islander */ 2187 * 840 = "Portuguese, Lusitanian" 2188 * 850 = "Azorean" 2189 * 860 = "Madeiran" 2190 * 870 = "Scotch Irish" 2191 * 880 = "Scottish, Orkney Islander, Pict, She" /* tland Islander */ 2192 * 890 = "Swedish" 2193 * 900 = "Aland Islander" 2194 * 910 = "Swiss" 2195 * 920 = "Suisse, Schweiz, Switzter" 2196 * 950 = "Romansch," 2197 * 960 = "Suisse Romane," 2198 * 961 = "Ticino" 2199 * 970 = "Welsh" 2200 * 980 = "Scandinavian, Nordic" 2201 * 1000 = "Albanian, Gleg, Tosc" 2202 * 1010 = "Azerbaijani, Azeri" 2203 * 1020 = "Belourussian" 2204 * 1030 = "Bulgarian, East Rumelian" 2205 * 1050 = "Carpathian, Carpatho" 2206 * 1051 = "Carpatho Rusyn" 2207 * 1052 = "Rusyn" 2208 * 1080 = "Cossack," 2209 * 1081 = "Cossack/Kazak" 2210 * 1082 = "Turkestani, Karakalpak, Kazak, Kirghiz" /* , Turcoman, Uigur */ 2211 * 1090 = "Croatian, Dalmatian, Zadar" 2212 * 1110 = "Czechoslovakian" 2213 * 1111 = "Czech" 2214 * 1120 = "Bohemian," 2215 * 1150 = "Estonian" 2216 * 1160 = "Livonian" 2217 * 1180 = "Mordovian" 2218 * 1200 = "Georgian" 2219 * 1221 = "Black Sea German, Volga, Volhynian Ge" /* rman */ 2220 * 1222 = "German from Russia" 2221 * 1240 = "Gypsy, Rom," 2222 * 1250 = "Hungarian, (Szekler 1990)" 2223 * 1260 = "Magyar" 2224 * 1280 = "Latvian, Lettish" 2225 * 1290 = "Lithuanian, Jmoud" 2226 * 1300 = "Macedonian, (Slavophone 1990)" 2227 * 1320 = "North Caucasian: Abkhazian, Adyge, Av" /* ar, Caucausus Mountain */ 2228 * 1400 = "Ossetian" 2229 * 1420 = "Polish, Masurian, (Gorali 1990)" 2230 * 1430 = "Kashubian" 2231 * 1440 = "Romanian," 2232 * 1441 = "Transylvanian" 2233 * 1450 = "Bessarabian, Dobruja," 2234 * 1460 = "Moldavian" 2235 * 1470 = "Wallachian, Vlach" 2236 * 1480 = "Russian, (Black Russian, Great Russian" /* , Red Russian 90) */ 2237 * 1500 = "Muscovite" 2238 * 1520 = "Serbian" 2239 * 1522 = "Montenegrin, (Orna Gora 90)" 2240 * 1530 = "Slovak" 2241 * 1540 = "Slovene" 2242 * 1550 = "Sorb, Lusatian, Wend" 2243 * 1570 = "Bashkir" 2244 * 1580 = "Chevash" 2245 * 1630 = "Yakut" 2246 * 1640 = "Soviet Union, nec" 2247 * 1650 = "Tatar, Crimean Tatar, Kazan, Tatar, No" /* gay Tatar, Volga Tatar */ 2248 * 1651 = "Tatar/Tartar" 2249 * 1652 = "Crimean, Kurile Islander, Sakhalin Isl" /* ander, Siberian, Bur */ 2250 * 1690 = "Uzbek" 2251 * 1710 = "Ukrainian" 2252 * 1711 = "Ukrainian, Little Russian, Malo Russia" /* n */ 2253 * 1712 = "Ruthenian, Little Russian, Malo Russi" /* an */ 2254 * 1713 = "Ruthenian" 2255 * 1717 = "Windish, Prekmurje" 2256 * 1760 = "Yugoslavian" 2257 * 1780 = "Slav, Slavic," 31 The SAS System 10:39 Tuesday, September 10, 2002 2258 * 1810 = "Central European, nec" 2259 * 1830 = "Northern European, nec" 2260 * 1850 = "Southern European, nec" 2261 * 1870 = "Western European, nec" 2262 * 1900 = "Eastern European, nec" 2263 * 1950 = "European, nec" 2264 * 2000 = "Spaniard, Iberian," 2265 * 2040 = "Catalonian" 2266 * 2050 = "Balearic Islander, Majorcan" 2267 * 2060 = "Gallego" 2268 * 2061 = "Galician" 2269 * 2100 = "Mexican," 2270 * 2110 = "Mexican American" 2271 * 2130 = "Chicano/Chicana" 2272 * 2180 = "Nuevo Mexicano" 2273 * 2190 = "Californio" 2274 * 2210 = "Costa Rican" 2275 * 2220 = "Guatemalan" 2276 * 2230 = "Honduran" 2277 * 2240 = "Nicaraguan" 2278 * 2250 = "Panamanian" 2279 * 2260 = "Salvadoran" 2280 * 2270 = "Latin American, Central American, Lati" /* no/Latina */ 2281 * 2271 = "Central American" 2282 * 2272 = "Latin American" 2283 * 2310 = "Argentinean" 2284 * 2320 = "Bolivian" 2285 * 2330 = "Chilean" 2286 * 2340 = "Colombian" 2287 * 2350 = "Ecuadorian, Galapagos Islander" 2288 * 2360 = "Paraguayan" 2289 * 2370 = "Peruvian" 2290 * 2380 = "Uruguayan" 2291 * 2390 = "Venezuelan" 2292 * 2480 = "South American," 2293 * 2610 = "Puerto Rican, Boricua" 2294 * 2710 = "Cuban, Guajiro" 2295 * 2750 = "Dominican" 2296 * 2900 = "Hispanic" 2297 * 2910 = "Spanish" 2298 * 2950 = "Spanish American" 2299 * 3000 = "Bahamian" 2300 * 3010 = "Barbadian" 2301 * 3020 = "Belizean, British Honduran" 2302 * 3030 = "Bermudan" 2303 * 3040 = "Cayman Islander" 2304 * 3080 = "Jamaican" 2305 * 3100 = "Dutch West Indies, Black Dutch, Nether" /* lands Antilles */ 2306 * 3110 = "Aruba Islander, Bonaire Islander, Cura" /* cao Islander */ 2307 * 3120 = "St Maarten, Saba, St Eustatius Islande" /* r */ 2308 * 3140 = "Trinidadian/Tobagonian" 2309 * 3150 = "Trinidadian" 2310 * 3160 = "Tobagonian" 2311 * 3170 = "U.S. Virgin Islander," 2312 * 3210 = "British Virgin Islander, Barbudan, Tor" /* tolan, Anegada, Anegad */ 2313 * 3220 = "British West Indian" 2314 * 3241 = "Anguilla, Montserrat, St Kitts/Nevis, " /* Redonda, Sombrero Isl */ 2315 * 3244 = "St Christopher, St Vincent Islander, G" /* renadine Islander */ 2316 * 3280 = "Dominica Islander" 2317 * 3290 = "Grenadian" 2318 * 3310 = "St Lucia Islander" 2319 * 3320 = "French West Indies" 2320 * 3331 = "Guadeloupe, Martinique, and French St " /* Martin */ 2321 * 3340 = "Cayenne/French Guiana" 2322 * 3350 = "West Indian, West Indies, Arawak, Cari" /* b, Garifuna */ 2323 * 3351 = "West Indian" 2324 * 3352 = "Caribbean" 2325 * 3353 = "Arawak, Black Carib, Carib Garifuna" 2326 * 3360 = "Haitian" 2327 * 3600 = "Brazilian" 2328 * 3700 = "Guyanese/British Guiana" 2329 * 3750 = "Providencia" 2330 * 3800 = "Surinam/Dutch Guiana" 2331 * 4000 = "Algerian" 2332 * 4020 = "Egyptian, Copt, Fellaheen, United Arab" /* Republic */ 2333 * 4040 = "Libyan, Tripolitanian" 32 The SAS System 10:39 Tuesday, September 10, 2002 2334 * 4060 = "Moroccan, Tangier, Moor" 2335 * 4061 = "Moroccan, Tangier" 2336 * 4062 = "Moor" 2337 * 4070 = "Ifni" 2338 * 4080 = "Tunisian" 2339 * 4110 = "North African" 2340 * 4120 = "Alhucemas, Ceuta, Chafarinas, Melilla" 2341 * 4130 = "Berber" 2342 * 4140 = "Rio de Oro, Saguiael Hamra" 2343 * 4150 = "Bahraini" 2344 * 4160 = "Iranian, Persian, Teheran" 2345 * 4170 = "Iraqi" 2346 * 4190 = "Israeli" 2347 * 4210 = "Jordanian, Hashemite" 2348 * 4230 = "Kuwaiti" 2349 * 4250 = "Lebanese, Beirut (Maronite 90)" 2350 * 4270 = "Saudi Arabian" 2351 * 4290 = "Syrian, Druze," 2352 * 4292 = "Jebel Druse" 2353 * 4310 = "Armenian" 2354 * 4340 = "Turkish, Hatay (Gordian, Asia Minor 19" /* 80) */ 2355 * 4350 = "Yemeni, Yemen Arab Rep." 2356 * 4360 = "Omani" 2357 * 4370 = "Muscat" 2358 * 4380 = "Trucial Oman, (Trucial States 1990)" 2359 * 4420 = "Kurdish" 2360 * 4440 = "Kuria Muria Islander" 2361 * 4650 = "Palestinian" 2362 * 4660 = "Gazan" 2363 * 4710 = "Aden" 2364 * 4800 = "United Arab Emirates, Abu Dhabi, Ajman" /* , Dubai, Fujairah, Ras */ 2365 * 4820 = "Assyrian, Aramean, Chaldean, Jacobite," /* Kasddem, Nestorian, T */ 2366 * 4821 = "Assyrian, Chaldean, Jacobite, Nestoria" /* n */ 2367 * 4822 = "Aramean" 2368 * 4900 = "Middle Eastern" 2369 * 4950 = "Arab, Arabian" 2370 * 5000 = "Angolan, Cabinda" 2371 * 5020 = "Benin, Dahoman, Fon" 2372 * 5040 = "Botswana, Bechuana" 2373 * 5060 = "Burundian, Urundi" 2374 * 5080 = "Cameroonian, Fako" 2375 * 5100 = "Cape Verdean, Brava, Ubangi-Shari" 2376 * 5130 = "Chadian" 2377 * 5150 = "Congolese" 2378 * 5160 = "Congo-Brazzaville" 2379 * 5190 = "Djibouti, Afars, Issas" 2380 * 5200 = "Equatorial Guinea, Rio Muni, Bioko Isl" /* ander, Corsico Islande */ 2381 * 5220 = "Ethiopian, Abyssinian" 2382 * 5230 = "Eritrean" 2383 * 5250 = "Gabonese" 2384 * 5270 = "Gambian" 2385 * 5290 = "Ghanian, Ashanti, Gold Coast, Twi" 2386 * 5300 = "Guinean" 2387 * 5310 = "Guinea Bissau" 2388 * 5320 = "Ivory Coast" 2389 * 5340 = "Kenyan" 2390 * 5380 = "Lesotho, Basuto" 2391 * 5410 = "Liberian" 2392 * 5450 = "Malawian" 2393 * 5460 = "Malian" 2394 * 5490 = "Mozambican" 2395 * 5500 = "Namibian" 2396 * 5510 = "Niger" 2397 * 5530 = "Nigerian" 2398 * 5540 = "Fulani, Fulah" 2399 * 5550 = "Hausa" 2400 * 5560 = "Ibo" 2401 * 5610 = "Rwandan" 2402 * 5640 = "Senegalese, Dakar" 2403 * 5660 = "Sierra Leonean" 2404 * 5680 = "Somalian" 2405 * 5690 = "Swaziland" 2406 * 5700 = "South African, Republic of South Afric" /* a, Orange Free State, */ 2407 * 5720 = "Afrikaner, Boer" 2408 * 5740 = "Zulu" 2409 * 5760 = "Sudanese" 33 The SAS System 10:39 Tuesday, September 10, 2002 2410 * 5820 = "Tanzanian" 2411 * 5860 = "Togo" 2412 * 5880 = "Ugandan, Lugbara" 2413 * 5910 = "Zairian, Belgian Congo, Kinshasa" 2414 * 5920 = "Zambian" 2415 * 5930 = "Zimbabwean, Rhodesian" 2416 * 5940 = "African Islands: Comoros, Principe, Re" /* union, Sao Tome, Seych */ 2417 * 5960 = "Central African, Middle Congo" 2418 * 5970 = "East African, Galla, Kikuyu, Masai" 2419 * 5980 = "West African" 2420 * 5990 = "African (Afro 80)" 2421 * 6000 = "Afghan" 2422 * 6020 = "Pathan" 2423 * 6030 = "Bangladeshi, East Pakistani," 2424 * 6070 = "Bhutanese" 2425 * 6090 = "Nepali" 2426 * 6150 = "Asian Indian: India, Behar, Bharati, D" /* elhi, Dravidian, East */ 2427 * 6151 = "India, Behar, Bharati, Delhi, Dravidia" /* n, Hindu, Asian Indi */ 2428 * 6220 = "Andaman Islander, Nicobar Islander" 2429 * 6240 = "Andhra Pradesh" 2430 * 6260 = "Assamese" 2431 * 6280 = "Goanese" 2432 * 6320 = "Karnatakan" 2433 * 6380 = "Maharashtran" 2434 * 6400 = "Madrasi" 2435 * 6420 = "Mysore, Mizoran" 2436 * 6440 = "Naga" 2437 * 6500 = "Punjabi" 2438 * 6560 = "Tamil" 2439 * 6800 = "Pakistani, Jammu, Sind, West Pakistani" /* , */ 2440 * 6900 = "Sri Lankan, Ceylonese" 2441 * 6910 = "Singhalese" 2442 * 6950 = "Maldivian" 2443 * 7000 = "Burmese, Cachin, Chin, Karen, Mon, Pal" /* aung, */ 2444 * 7001 = "Burman" 2445 * 7020 = "Shan" 2446 * 7030 = "Cambodian, Kampuchean" 2447 * 7040 = "Khmer" 2448 * 7060 = "Chinese, Jehol, Yao," 2449 * 7061 = "Uigur" 2450 * 7070 = "Cantonese," 2451 * 7120 = "Mongolian, Buriat" 2452 * 7121 = "Mongolian, Kalmuck" 2453 * 7122 = "Kalmuck" 2454 * 7140 = "Tibetan" 2455 * 7160 = "Hong Kong, H.K. Chinese, Riau Islander" 2456 * 7180 = "Macao, Portuguese Macao" 2457 * 7200 = "Filipino, Cebuanos, Illocanos, Tagalog" /* , (Visayan 1990) */ 2458 * 7300 = "Indonesian, Ascension Islander, Bangka" /* , Billiton, Celebesian */ 2459 * 7400 = "Japanese, Nipponese," 2460 * 7460 = "Ryukyu Islander" 2461 * 7480 = "Okinawan, Onik" 2462 * 7500 = "Korean, Chosen" 2463 * 7650 = "Laotian" 2464 * 7660 = "Meo" 2465 * 7680 = "Hmong" 2466 * 7700 = "Malaysian, Sabah, Sakai, Sarawak, Sema" /* ng, Senoi */ 2467 * 7701 = "Malaysian, Sakai, Semang, Senoi, Sabah" /* , Sarawak */ 2468 * 7740 = "Singaporean" 2469 * 7760 = "Thai, Siamese" 2470 * 7770 = "Thaidam, Black Thai" 2471 * 7780 = "Western Lao" 2472 * 7820 = "Taiwanese" 2473 * 7850 = "Vietnamese, Annamese" 2474 * 7860 = "Katu" 2475 * 7900 = "Montagnard, Cham, Chom" 2476 * 7920 = "Indochinese" 2477 * 7930 = "Eurasian, Indo European" 2478 * 7931 = "Amerasian" 2479 * 7950 = "Asian, Oriental" 2480 * 8000 = "Australian, (Moen 1990)" 2481 * 8010 = "Tasmanian" 2482 * 8030 = "New Zealander" 2483 * 8080 = "Polynesia Islander" 2484 * 8100 = "Maori" 2485 * 8110 = "Hawaiian" 34 The SAS System 10:39 Tuesday, September 10, 2002 2486 * 8130 = "Part Hawaiian" 2487 * 8140 = "Samoan," 2488 * 8141 = "American Samoan" 2489 * 8143 = "French Samoan" 2490 * 8150 = "Tongan, (Niukro 1990)" 2491 * 8160 = "Tokelauan" 2492 * 8170 = "Cook Islander" 2493 * 8180 = "Tahitian, French Polynesian, Society I" /* slander */ 2494 * 8190 = "Niuean" 2495 * 8200 = "Micronesian, FSM, US Pacific Trust te" /* rritory */ 2496 * 8210 = "Guamanian" 2497 * 8220 = "Chamorro Islander" 2498 * 8230 = "Saipanese, Micanina, Rotanese, Norther" /* n, Marianas Islander */ 2499 * 8240 = "Palauan" 2500 * 8250 = "Marshall Islander" 2501 * 8270 = "Ponapean, Prohnpeian," 2502 * 8280 = "Chuukese, Palapese, Pulasukese, Tama" /* tamian */ 2503 * 8285 = "Truk Islander" 2504 * 8290 = "Yap Islander" 2505 * 8300 = "Caroline Islander, Satawalese, Eauripi" /* kese */ 2506 * 8340 = "Tinian Islander" 2507 * 8400 = "Melanesian Islander" 2508 * 8410 = "Fijian" 2509 * 8430 = "New Guinean" 2510 * 8450 = "Solomon Islander" 2511 * 8500 = "Pacific Islander," 2512 * 8502 = "Christmas Islander," 2513 * 8504 = "Midway Islander," 2514 * 8600 = "Oceania, Pacific, nec" 2515 * 8601 = "Oceania, Pacitic Islander" 2516 * 9000 = "Afro-American, Nigritian" 2517 * 9130 = "Central American Indian" 2518 * 9140 = "South Amerianc Indian" 2519 * 9200 = "American Indian (all tribes)" 2520 * 9201 = "American Indian-English-French" 2521 * 9202 = "American Indian-English-German" 2522 * 9203 = "American Indian-English-Irish" 2523 * 9204 = "American Indian-German-Irish" 2524 * 9210 = "Aleut" 2525 * 9220 = "Eskimo" 2526 * 9240 = "White/Caucasian" 2527 * 9300 = "Greenlander" 2528 * 9310 = "Canadian (most provinces)" 2529 * 9330 = "Newfoundland" 2530 * 9340 = "Nova Scotian" 2531 * 9350 = "French Canadian, Quebecois, (Franco Am" /* erican 1990) */ 2532 * 9360 = "Acadian" 2533 * 9390 = "American" 2534 * 9400 = "United States" 2535 * 9930 = "Southerner" 2536 * 9940 = "North American" 2537 * 9950 = "Mixture" 2538 * 9960 = "Uncodable" 2539 * 9961 = "Not Classified" 2540 * 9980 = "Other (Usually a Religion)" 2541 * 9990 = "Not Reported" 2542 *; 2543 *VALUE P154L (default=32) 2544 * 10 = "Alsatian, Alsace-Lorraine" 2545 * 20 = "Andorran" 2546 * 30 = "Austrian" 2547 * 40 = "Tirolean" 2548 * 51 = "Basque" 2549 * 52 = "Spanish Basque, Vasco, Euskalduna" 2550 * 53 = "Basque, Euskalduna" 2551 * 54 = "Spanish Basque, Vasco" 2552 * 60 = "French Basque" 2553 * 80 = "Belgian" 2554 * 90 = "Flemish/Vlamand" 2555 * 100 = "Walloon" 2556 * 110 = "British, Great Britain" 2557 * 120 = "British Isles" 2558 * 130 = "Channel Islander" 2559 * 140 = "Gibraltan" 2560 * 150 = "Cornish" 2561 * 160 = "Corsican" 35 The SAS System 10:39 Tuesday, September 10, 2002 2562 * 170 = "Cypriot" 2563 * 180 = "Greek Cypriote" 2564 * 190 = "Turkish Cypriote" 2565 * 200 = "Danish" 2566 * 210 = "Dutch, Hollander, Netherlander" 2567 * 211 = "Dutch-French-Irish" 2568 * 212 = "Dutch-German-Irish" 2569 * 213 = "Dutch-Irish-Scotch" 2570 * 220 = "English, Anglican" 2571 * 221 = "English-French-German" 2572 * 222 = "English-French-Irish" 2573 * 223 = "English-German-Irish" 2574 * 224 = "English-German-Swedish" 2575 * 225 = "English-Irish-Scotch" 2576 * 226 = "English-Scotch-Welsh" 2577 * 230 = "Faeroe Islander" 2578 * 240 = "Finnish" 2579 * 250 = "Karelian" 2580 * 260 = "French, Gascon, Huguenot, Norman, Wall" /* is Islander, (French */ 2581 * 270 = "Lorrainian" 2582 * 280 = "Breton" 2583 * 290 = "Frisian" 2584 * 300 = "Friulian" 2585 * 320 = "German" 2586 * 321 = "Pennsylvania German, Amish, Hutterite," /* Mennonite, Pennsylv */ 2587 * 323 = "West German, Palatinate, Rhineland" 2588 * 324 = "German-French-Irish" 2589 * 325 = "German-Irish-Italian" 2590 * 326 = "German-Irish-Scotch" 2591 * 327 = "German-Irish-Swedish" 2592 * 330 = "Bavarian" 2593 * 340 = "Berliner" 2594 * 350 = "Hamburger" 2595 * 360 = "Hanoverian" 2596 * 370 = "Hessian" 2597 * 380 = "Lubecker" 2598 * 390 = "Pomeranian," 2599 * 400 = "Prussian" 2600 * 410 = "Saxon" 2601 * 420 = "Sudetenlander" 2602 * 430 = "Westphalian" 2603 * 460 = "Greek" 2604 * 470 = "Cretan" 2605 * 480 = "Cycladic Islander, Dodecanese Islander" /* , Peloponnesian */ 2606 * 490 = "Icelander" 2607 * 500 = "Irish, various subheads," 2608 * 501 = "Celtic" 2609 * 510 = "Italian," 2610 * 530 = "Abruzzi" 2611 * 540 = "Apulian" 2612 * 550 = "Basilicata, Lucanian" 2613 * 560 = "Calabrian" 2614 * 570 = "Campanian, Amalfian" 2615 * 580 = "Emilia Romagna" 2616 * 590 = "Lazio, Rome, Vat. City" 2617 * 600 = "Ligurian" 2618 * 610 = "Lombardian" 2619 * 620 = "Marches" 2620 * 650 = "Piedmontese" 2621 * 660 = "Puglia" 2622 * 680 = "Sicilian" 2623 * 690 = "Tuscan" 2624 * 700 = "Trentino" 2625 * 720 = "Valle d Aosta" 2626 * 730 = "Venetian" 2627 * 750 = "Lapp, Samelat" 2628 * 760 = "Liechtensteiner" 2629 * 770 = "Luxemburger" 2630 * 780 = "Maltese, Gozo" 2631 * 790 = "Manx, Isle of Man" 2632 * 800 = "Monegasque, Monacan" 2633 * 810 = "Northern Irelander" 2634 * 820 = "Norwegian, Jan Meyen Is, Spitsbergen," /* Svalbard Islander */ 2635 * 840 = "Portuguese, Lusitanian" 2636 * 850 = "Azorean" 2637 * 860 = "Madeiran" 36 The SAS System 10:39 Tuesday, September 10, 2002 2638 * 870 = "Scotch Irish" 2639 * 880 = "Scottish, Orkney Islander, Pict, She" /* tland Islander */ 2640 * 890 = "Swedish" 2641 * 900 = "Aland Islander" 2642 * 910 = "Swiss" 2643 * 920 = "Suisse, Schweiz, Switzter" 2644 * 950 = "Romansch," 2645 * 960 = "Suisse Romane," 2646 * 961 = "Ticino" 2647 * 970 = "Welsh" 2648 * 980 = "Scandinavian, Nordic" 2649 * 1000 = "Albanian, Gleg, Tosc" 2650 * 1010 = "Azerbaijani, Azeri" 2651 * 1020 = "Belourussian" 2652 * 1030 = "Bulgarian, East Rumelian" 2653 * 1050 = "Carpathian, Carpatho" 2654 * 1051 = "Carpatho Rusyn" 2655 * 1052 = "Rusyn" 2656 * 1080 = "Cossack," 2657 * 1081 = "Cossack/Kazak" 2658 * 1082 = "Turkestani, Karakalpak, Kazak, Kirghiz" /* , Turcoman, Uigur */ 2659 * 1090 = "Croatian, Dalmatian, Zadar" 2660 * 1110 = "Czechoslovakian" 2661 * 1111 = "Czech" 2662 * 1120 = "Bohemian," 2663 * 1150 = "Estonian" 2664 * 1160 = "Livonian" 2665 * 1180 = "Mordovian" 2666 * 1200 = "Georgian" 2667 * 1221 = "Black Sea German, Volga, Volhynian Ge" /* rman */ 2668 * 1222 = "German from Russia" 2669 * 1240 = "Gypsy, Rom," 2670 * 1250 = "Hungarian, (Szekler 1990)" 2671 * 1260 = "Magyar" 2672 * 1280 = "Latvian, Lettish" 2673 * 1290 = "Lithuanian, Jmoud" 2674 * 1300 = "Macedonian, (Slavophone 1990)" 2675 * 1320 = "North Caucasian: Abkhazian, Adyge, Av" /* ar, Caucausus Mountain */ 2676 * 1400 = "Ossetian" 2677 * 1420 = "Polish, Masurian, (Gorali 1990)" 2678 * 1430 = "Kashubian" 2679 * 1440 = "Romanian," 2680 * 1441 = "Transylvanian" 2681 * 1450 = "Bessarabian, Dobruja," 2682 * 1460 = "Moldavian" 2683 * 1470 = "Wallachian, Vlach" 2684 * 1480 = "Russian, (Black Russian, Great Russian" /* , Red Russian 90) */ 2685 * 1500 = "Muscovite" 2686 * 1520 = "Serbian" 2687 * 1522 = "Montenegrin, (Orna Gora 90)" 2688 * 1530 = "Slovak" 2689 * 1540 = "Slovene" 2690 * 1550 = "Sorb, Lusatian, Wend" 2691 * 1570 = "Bashkir" 2692 * 1580 = "Chevash" 2693 * 1630 = "Yakut" 2694 * 1640 = "Soviet Union, nec" 2695 * 1650 = "Tatar, Crimean Tatar, Kazan, Tatar, No" /* gay Tatar, Volga Tatar */ 2696 * 1651 = "Tatar/Tartar" 2697 * 1652 = "Crimean, Kurile Islander, Sakhalin Isl" /* ander, Siberian, Bur */ 2698 * 1690 = "Uzbek" 2699 * 1710 = "Ukrainian" 2700 * 1711 = "Ukrainian, Little Russian, Malo Russia" /* n */ 2701 * 1712 = "Ruthenian, Little Russian, Malo Russi" /* an */ 2702 * 1713 = "Ruthenian" 2703 * 1717 = "Windish, Prekmurje" 2704 * 1760 = "Yugoslavian" 2705 * 1780 = "Slav, Slavic," 2706 * 1810 = "Central European, nec" 2707 * 1830 = "Northern European, nec" 2708 * 1850 = "Southern European, nec" 2709 * 1870 = "Western European, nec" 2710 * 1900 = "Eastern European, nec" 2711 * 1950 = "European, nec" 2712 * 2000 = "Spaniard, Iberian," 2713 * 2040 = "Catalonian" 37 The SAS System 10:39 Tuesday, September 10, 2002 2714 * 2050 = "Balearic Islander, Majorcan" 2715 * 2060 = "Gallego" 2716 * 2061 = "Galician" 2717 * 2100 = "Mexican," 2718 * 2110 = "Mexican American" 2719 * 2130 = "Chicano/Chicana" 2720 * 2180 = "Nuevo Mexicano" 2721 * 2190 = "Californio" 2722 * 2210 = "Costa Rican" 2723 * 2220 = "Guatemalan" 2724 * 2230 = "Honduran" 2725 * 2240 = "Nicaraguan" 2726 * 2250 = "Panamanian" 2727 * 2260 = "Salvadoran" 2728 * 2270 = "Latin American, Central American, Lati" /* no/Latina */ 2729 * 2271 = "Central American" 2730 * 2272 = "Latin American" 2731 * 2310 = "Argentinean" 2732 * 2320 = "Bolivian" 2733 * 2330 = "Chilean" 2734 * 2340 = "Colombian" 2735 * 2350 = "Ecuadorian, Galapagos Islander" 2736 * 2360 = "Paraguayan" 2737 * 2370 = "Peruvian" 2738 * 2380 = "Uruguayan" 2739 * 2390 = "Venezuelan" 2740 * 2480 = "South American," 2741 * 2610 = "Puerto Rican, Boricua" 2742 * 2710 = "Cuban, Guajiro" 2743 * 2750 = "Dominican" 2744 * 2900 = "Hispanic" 2745 * 2910 = "Spanish" 2746 * 2950 = "Spanish American" 2747 * 3000 = "Bahamian" 2748 * 3010 = "Barbadian" 2749 * 3020 = "Belizean, British Honduran" 2750 * 3030 = "Bermudan" 2751 * 3040 = "Cayman Islander" 2752 * 3080 = "Jamaican" 2753 * 3100 = "Dutch West Indies, Black Dutch, Nether" /* lands Antilles */ 2754 * 3110 = "Aruba Islander, Bonaire Islander, Cura" /* cao Islander */ 2755 * 3120 = "St Maarten, Saba, St Eustatius Islande" /* r */ 2756 * 3140 = "Trinidadian/Tobagonian" 2757 * 3150 = "Trinidadian" 2758 * 3160 = "Tobagonian" 2759 * 3170 = "U.S. Virgin Islander," 2760 * 3210 = "British Virgin Islander, Barbudan, Tor" /* tolan, Anegada, Anegad */ 2761 * 3220 = "British West Indian" 2762 * 3241 = "Anguilla, Montserrat, St Kitts/Nevis, " /* Redonda, Sombrero Isl */ 2763 * 3244 = "St Christopher, St Vincent Islander, G" /* renadine Islander */ 2764 * 3280 = "Dominica Islander" 2765 * 3290 = "Grenadian" 2766 * 3310 = "St Lucia Islander" 2767 * 3320 = "French West Indies" 2768 * 3331 = "Guadeloupe, Martinique, and French St " /* Martin */ 2769 * 3340 = "Cayenne/French Guiana" 2770 * 3350 = "West Indian, West Indies, Arawak, Cari" /* b, Garifuna */ 2771 * 3351 = "West Indian" 2772 * 3352 = "Caribbean" 2773 * 3353 = "Arawak, Black Carib, Carib Garifuna" 2774 * 3360 = "Haitian" 2775 * 3600 = "Brazilian" 2776 * 3700 = "Guyanese/British Guiana" 2777 * 3750 = "Providencia" 2778 * 3800 = "Surinam/Dutch Guiana" 2779 * 4000 = "Algerian" 2780 * 4020 = "Egyptian, Copt, Fellaheen, United Arab" /* Republic */ 2781 * 4040 = "Libyan, Tripolitanian" 2782 * 4060 = "Moroccan, Tangier, Moor" 2783 * 4061 = "Moroccan, Tangier" 2784 * 4062 = "Moor" 2785 * 4070 = "Ifni" 2786 * 4080 = "Tunisian" 2787 * 4110 = "North African" 2788 * 4120 = "Alhucemas, Ceuta, Chafarinas, Melilla" 2789 * 4130 = "Berber" 38 The SAS System 10:39 Tuesday, September 10, 2002 2790 * 4140 = "Rio de Oro, Saguiael Hamra" 2791 * 4150 = "Bahraini" 2792 * 4160 = "Iranian, Persian, Teheran" 2793 * 4170 = "Iraqi" 2794 * 4190 = "Israeli" 2795 * 4210 = "Jordanian, Hashemite" 2796 * 4230 = "Kuwaiti" 2797 * 4250 = "Lebanese, Beirut (Maronite 90)" 2798 * 4270 = "Saudi Arabian" 2799 * 4290 = "Syrian, Druze," 2800 * 4292 = "Jebel Druse" 2801 * 4310 = "Armenian" 2802 * 4340 = "Turkish, Hatay (Gordian, Asia Minor 19" /* 80) */ 2803 * 4350 = "Yemeni, Yemen Arab Rep." 2804 * 4360 = "Omani" 2805 * 4370 = "Muscat" 2806 * 4380 = "Trucial Oman, (Trucial States 1990)" 2807 * 4420 = "Kurdish" 2808 * 4440 = "Kuria Muria Islander" 2809 * 4650 = "Palestinian" 2810 * 4660 = "Gazan" 2811 * 4710 = "Aden" 2812 * 4800 = "United Arab Emirates, Abu Dhabi, Ajman" /* , Dubai, Fujairah, Ras */ 2813 * 4820 = "Assyrian, Aramean, Chaldean, Jacobite," /* Kasddem, Nestorian, T */ 2814 * 4821 = "Assyrian, Chaldean, Jacobite, Nestoria" /* n */ 2815 * 4822 = "Aramean" 2816 * 4900 = "Middle Eastern" 2817 * 4950 = "Arab, Arabian" 2818 * 5000 = "Angolan, Cabinda" 2819 * 5020 = "Benin, Dahoman, Fon" 2820 * 5040 = "Botswana, Bechuana" 2821 * 5060 = "Burundian, Urundi" 2822 * 5080 = "Cameroonian, Fako" 2823 * 5100 = "Cape Verdean, Brava, Ubangi-Shari" 2824 * 5130 = "Chadian" 2825 * 5150 = "Congolese" 2826 * 5160 = "Congo-Brazzaville" 2827 * 5190 = "Djibouti, Afars, Issas" 2828 * 5200 = "Equatorial Guinea, Rio Muni, Bioko Isl" /* ander, Corsico Islande */ 2829 * 5220 = "Ethiopian, Abyssinian" 2830 * 5230 = "Eritrean" 2831 * 5250 = "Gabonese" 2832 * 5270 = "Gambian" 2833 * 5290 = "Ghanian, Ashanti, Gold Coast, Twi" 2834 * 5300 = "Guinean" 2835 * 5310 = "Guinea Bissau" 2836 * 5320 = "Ivory Coast" 2837 * 5340 = "Kenyan" 2838 * 5380 = "Lesotho, Basuto" 2839 * 5410 = "Liberian" 2840 * 5450 = "Malawian" 2841 * 5460 = "Malian" 2842 * 5490 = "Mozambican" 2843 * 5500 = "Namibian" 2844 * 5510 = "Niger" 2845 * 5530 = "Nigerian" 2846 * 5540 = "Fulani, Fulah" 2847 * 5550 = "Hausa" 2848 * 5560 = "Ibo" 2849 * 5610 = "Rwandan" 2850 * 5640 = "Senegalese, Dakar" 2851 * 5660 = "Sierra Leonean" 2852 * 5680 = "Somalian" 2853 * 5690 = "Swaziland" 2854 * 5700 = "South African, Republic of South Afric" /* a, Orange Free State, */ 2855 * 5720 = "Afrikaner, Boer" 2856 * 5740 = "Zulu" 2857 * 5760 = "Sudanese" 2858 * 5820 = "Tanzanian" 2859 * 5860 = "Togo" 2860 * 5880 = "Ugandan, Lugbara" 2861 * 5910 = "Zairian, Belgian Congo, Kinshasa" 2862 * 5920 = "Zambian" 2863 * 5930 = "Zimbabwean, Rhodesian" 2864 * 5940 = "African Islands: Comoros, Principe, Re" /* union, Sao Tome, Seych */ 2865 * 5960 = "Central African, Middle Congo" 39 The SAS System 10:39 Tuesday, September 10, 2002 2866 * 5970 = "East African, Galla, Kikuyu, Masai" 2867 * 5980 = "West African" 2868 * 5990 = "African (Afro 80)" 2869 * 6000 = "Afghan" 2870 * 6020 = "Pathan" 2871 * 6030 = "Bangladeshi, East Pakistani," 2872 * 6070 = "Bhutanese" 2873 * 6090 = "Nepali" 2874 * 6150 = "Asian Indian: India, Behar, Bharati, D" /* elhi, Dravidian, East */ 2875 * 6151 = "India, Behar, Bharati, Delhi, Dravidia" /* n, Hindu, Asian Indi */ 2876 * 6220 = "Andaman Islander, Nicobar Islander" 2877 * 6240 = "Andhra Pradesh" 2878 * 6260 = "Assamese" 2879 * 6280 = "Goanese" 2880 * 6320 = "Karnatakan" 2881 * 6380 = "Maharashtran" 2882 * 6400 = "Madrasi" 2883 * 6420 = "Mysore, Mizoran" 2884 * 6440 = "Naga" 2885 * 6500 = "Punjabi" 2886 * 6560 = "Tamil" 2887 * 6800 = "Pakistani, Jammu, Sind, West Pakistani" /* , */ 2888 * 6900 = "Sri Lankan, Ceylonese" 2889 * 6910 = "Singhalese" 2890 * 6950 = "Maldivian" 2891 * 7000 = "Burmese, Cachin, Chin, Karen, Mon, Pal" /* aung, */ 2892 * 7001 = "Burman" 2893 * 7020 = "Shan" 2894 * 7030 = "Cambodian, Kampuchean" 2895 * 7040 = "Khmer" 2896 * 7060 = "Chinese, Jehol, Yao," 2897 * 7061 = "Uigur" 2898 * 7070 = "Cantonese," 2899 * 7120 = "Mongolian, Buriat" 2900 * 7121 = "Mongolian, Kalmuck" 2901 * 7122 = "Kalmuck" 2902 * 7140 = "Tibetan" 2903 * 7160 = "Hong Kong, H.K. Chinese, Riau Islander" 2904 * 7180 = "Macao, Portuguese Macao" 2905 * 7200 = "Filipino, Cebuanos, Illocanos, Tagalog" /* , (Visayan 1990) */ 2906 * 7300 = "Indonesian, Ascension Islander, Bangka" /* , Billiton, Celebesian */ 2907 * 7400 = "Japanese, Nipponese," 2908 * 7460 = "Ryukyu Islander" 2909 * 7480 = "Okinawan, Onik" 2910 * 7500 = "Korean, Chosen" 2911 * 7650 = "Laotian" 2912 * 7660 = "Meo" 2913 * 7680 = "Hmong" 2914 * 7700 = "Malaysian, Sabah, Sakai, Sarawak, Sema" /* ng, Senoi */ 2915 * 7701 = "Malaysian, Sakai, Semang, Senoi, Sabah" /* , Sarawak */ 2916 * 7740 = "Singaporean" 2917 * 7760 = "Thai, Siamese" 2918 * 7770 = "Thaidam, Black Thai" 2919 * 7780 = "Western Lao" 2920 * 7820 = "Taiwanese" 2921 * 7850 = "Vietnamese, Annamese" 2922 * 7860 = "Katu" 2923 * 7900 = "Montagnard, Cham, Chom" 2924 * 7920 = "Indochinese" 2925 * 7930 = "Eurasian, Indo European" 2926 * 7931 = "Amerasian" 2927 * 7950 = "Asian, Oriental" 2928 * 8000 = "Australian, (Moen 1990)" 2929 * 8010 = "Tasmanian" 2930 * 8030 = "New Zealander" 2931 * 8080 = "Polynesia Islander" 2932 * 8100 = "Maori" 2933 * 8110 = "Hawaiian" 2934 * 8130 = "Part Hawaiian" 2935 * 8140 = "Samoan," 2936 * 8141 = "American Samoan" 2937 * 8143 = "French Samoan" 2938 * 8150 = "Tongan, (Niukro 1990)" 2939 * 8160 = "Tokelauan" 2940 * 8170 = "Cook Islander" 2941 * 8180 = "Tahitian, French Polynesian, Society I" /* slander */ 40 The SAS System 10:39 Tuesday, September 10, 2002 2942 * 8190 = "Niuean" 2943 * 8200 = "Micronesian, FSM, US Pacific Trust te" /* rritory */ 2944 * 8210 = "Guamanian" 2945 * 8220 = "Chamorro Islander" 2946 * 8230 = "Saipanese, Micanina, Rotanese, Norther" /* n, Marianas Islander */ 2947 * 8240 = "Palauan" 2948 * 8250 = "Marshall Islander" 2949 * 8270 = "Ponapean, Prohnpeian," 2950 * 8280 = "Chuukese, Palapese, Pulasukese, Tama" /* tamian */ 2951 * 8285 = "Truk Islander" 2952 * 8290 = "Yap Islander" 2953 * 8300 = "Caroline Islander, Satawalese, Eauripi" /* kese */ 2954 * 8340 = "Tinian Islander" 2955 * 8400 = "Melanesian Islander" 2956 * 8410 = "Fijian" 2957 * 8430 = "New Guinean" 2958 * 8450 = "Solomon Islander" 2959 * 8500 = "Pacific Islander," 2960 * 8502 = "Christmas Islander," 2961 * 8504 = "Midway Islander," 2962 * 8600 = "Oceania, Pacific, nec" 2963 * 8601 = "Oceania, Pacitic Islander" 2964 * 9000 = "Afro-American, Nigritian" 2965 * 9130 = "Central American Indian" 2966 * 9140 = "South Amerianc Indian" 2967 * 9200 = "American Indian (all tribes)" 2968 * 9201 = "American Indian-English-French" 2969 * 9202 = "American Indian-English-German" 2970 * 9203 = "American Indian-English-Irish" 2971 * 9204 = "American Indian-German-Irish" 2972 * 9210 = "Aleut" 2973 * 9220 = "Eskimo" 2974 * 9240 = "White/Caucasian" 2975 * 9300 = "Greenlander" 2976 * 9310 = "Canadian (most provinces)" 2977 * 9330 = "Newfoundland" 2978 * 9340 = "Nova Scotian" 2979 * 9350 = "French Canadian, Quebecois, (Franco Am" /* erican 1990) */ 2980 * 9360 = "Acadian" 2981 * 9390 = "American" 2982 * 9400 = "United States" 2983 * 9930 = "Southerner" 2984 * 9940 = "North American" 2985 * 9950 = "Mixture" 2986 * 9960 = "Uncodable" 2987 * 9961 = "Not Classified" 2988 * 9980 = "Other (Usually a Religion)" 2989 * 9990 = "Not Reported" 2990 *; 2991 *VALUE P155L (default=32) 2992 * 0 = "N/A" 2993 * 1 = "Born abroad of American parents" 2994 * 2 = "Naturalized citizen" 2995 * 3 = "Not a citizen" 2996 * 4 = "Has received first papers, but not a c" /* itizen */ 2997 * 5 = "Foreign born, citizenship not reported" 2998 * 9 = "Missing" 2999 *; 3000 *VALUE P156L (default=32) 3001 * 0 = "N/A or blank" 3002 * 100 = "English" 3003 * 110 = "Jamaican Creole" 3004 * 120 = "Krio, Pidgin Krio" 3005 * 130 = "Hawaiian Pidgin" 3006 * 140 = "Pidgin" 3007 * 150 = "Gullah, Geechee" 3008 * 160 = "Saramacca" 3009 * 200 = "German" 3010 * 210 = "Austrian" 3011 * 220 = "Swiss" 3012 * 230 = "Luxembourgian" 3013 * 240 = "Pennsylvania Dutch" 3014 * 300 = "Yiddish, Jewish" 3015 * 400 = "Dutch" 3016 * 410 = "Dutch, Flemish, Belgian" 3017 * 420 = "Afrikaans" 41 The SAS System 10:39 Tuesday, September 10, 2002 3018 * 430 = "Frisian" 3019 * 460 = "Belgian" 3020 * 470 = "Flemish" 3021 * 500 = "Swedish" 3022 * 600 = "Danish" 3023 * 700 = "Norwegian" 3024 * 800 = "Icelandic" 3025 * 810 = "Faroese" 3026 * 1000 = "Italian" 3027 * 1010 = "Rhaeto-Romanic, Ladin" 3028 * 1100 = "French" 3029 * 1110 = "French, Walloon" 3030 * 1120 = "Provencal" 3031 * 1130 = "Patois" 3032 * 1140 = "French or Haitian Creole" 3033 * 1150 = "Cajun" 3034 * 1200 = "Spanish" 3035 * 1210 = "Catalonian, Valencian" 3036 * 1220 = "Ladino, Sefaradit, Spanol" 3037 * 1230 = "Pachuco" 3038 * 1240 = "Papia Mentae" 3039 * 1250 = "Mexican" 3040 * 1300 = "Portuguese" 3041 * 1400 = "Rumanian" 3042 * 1520 = "Welsh" 3043 * 1530 = "Breton" 3044 * 1540 = "Irish Gaelic, Gaelic" 3045 * 1560 = "Irish" 3046 * 1570 = "Scottish Gaelic" 3047 * 1600 = "Greek" 3048 * 1700 = "Albanian" 3049 * 1800 = "Russian" 3050 * 1810 = "Russian, Great Russian" 3051 * 1820 = "Bielo-, White Russian" 3052 * 1900 = "Ukrainian, Ruthenian, Little Russian" 3053 * 1910 = "Ruthenian" 3054 * 1920 = "Little Russian" 3055 * 2000 = "Czech" 3056 * 2010 = "Bohemian" 3057 * 2020 = "Moravian" 3058 * 2100 = "Polish" 3059 * 2110 = "Kashubian, Slovincian" 3060 * 2200 = "Slovak" 3061 * 2300 = "Serbo-Croatian, Yugoslavian, Slavonian" 3062 * 2310 = "Croatian" 3063 * 2320 = "Serbian" 3064 * 2331 = "Dalmatian" 3065 * 2332 = "Montenegrin" 3066 * 2400 = "Slovene" 3067 * 2500 = "Lithuanian" 3068 * 2510 = "Lettish" 3069 * 2610 = "Bulgarian" 3070 * 2620 = "Lusatian, Sorbian, Wendish" 3071 * 2630 = "Macedonian" 3072 * 2700 = "Slavic unknown" 3073 * 2800 = "Armenian" 3074 * 2900 = "Persian, Iranian, Farssi" 3075 * 3010 = "Pashto, Afghan" 3076 * 3020 = "Kurdish" 3077 * 3040 = "Tadzhik" 3078 * 3050 = "Ossete" 3079 * 3100 = "Hindi and related" 3080 * 3101 = "Hindi, Hindustani, Indic, Jaipuri, Pal" /* i, Urdu */ 3081 * 3111 = "Sanskrit" 3082 * 3112 = "Bengali" 3083 * 3113 = "Panjabi" 3084 * 3114 = "Marathi" 3085 * 3115 = "Gujarathi" 3086 * 3116 = "Bihari" 3087 * 3117 = "Rajasthani" 3088 * 3118 = "Oriya" 3089 * 3119 = "Assamese" 3090 * 3120 = "Kashmiri" 3091 * 3121 = "Sindhi" 3092 * 3123 = "Sinhalese" 3093 * 3130 = "Kannada" 42 The SAS System 10:39 Tuesday, September 10, 2002 3094 * 3200 = "Romany, Gypsy" 3095 * 3300 = "Finnish" 3096 * 3400 = "Magyar, Hungarian" 3097 * 3510 = "Estonian, Ingrian, Livonian, Vepsian, " /* Votic */ 3098 * 3520 = "Lapp, Inari, Kola, Lule, Pite, Ruija, " /* Skolt, Ume */ 3099 * 3530 = "Other Uralic" 3100 * 3600 = "Turkish" 3101 * 3701 = "Chuvash" 3102 * 3705 = "Karachay, Tatar, Balkar, Bashkir, Kumy" /* k */ 3103 * 3706 = "Uzbek, Uighur" 3104 * 3707 = "Azerbaijani" 3105 * 3710 = "Mongolian" 3106 * 3711 = "Tungus" 3107 * 3800 = "Caucasian, Georgian, Avar" 3108 * 3900 = "Basque" 3109 * 4000 = "Dravidian" 3110 * 4001 = "Brahui" 3111 * 4002 = "Gondi" 3112 * 4003 = "Telugu" 3113 * 4004 = "Malayalam" 3114 * 4005 = "Tamil" 3115 * 4011 = "Nepali" 3116 * 4110 = "Munda" 3117 * 4300 = "Chinese" 3118 * 4301 = "Chinese, Cantonese, Min, Yueh" 3119 * 4303 = "Mandarin" 3120 * 4311 = "Hakka, Fukien, K echia" 3121 * 4313 = "Hsiang, Chansa, Hunan, Iyan" 3122 * 4315 = "Wu" 3123 * 4400 = "Tibetan" 3124 * 4410 = "Miao-Yao" 3125 * 4420 = "Miao, Hmong" 3126 * 4500 = "Burmese, Lisu, Lolo" 3127 * 4510 = "Karen" 3128 * 4600 = "Kachin" 3129 * 4700 = "Thai, Siamese, Lao" 3130 * 4800 = "Japanese" 3131 * 4900 = "Korean" 3132 * 5000 = "Vietnamese" 3133 * 5110 = "Ainu" 3134 * 5120 = "Mon-Khmer, Cambodian" 3135 * 5140 = "Yukagir" 3136 * 5200 = "Indonesian" 3137 * 5250 = "Cham" 3138 * 5270 = "Malay" 3139 * 5310 = "Formosan, Taiwanese" 3140 * 5320 = "Javanese" 3141 * 5330 = "Malagasy" 3142 * 5400 = "Filipino, Tagalog" 3143 * 5410 = "Bisayan" 3144 * 5420 = "Sebuano" 3145 * 5430 = "Pangasinan" 3146 * 5440 = "Ilocano" 3147 * 5450 = "Bikol" 3148 * 5460 = "Pampangan" 3149 * 5480 = "Palau" 3150 * 5501 = "Micronesian" 3151 * 5503 = "Chamorro, Guamanian" 3152 * 5505 = "Kusaiean" 3153 * 5506 = "Marshallese" 3154 * 5510 = "Ponapean" 3155 * 5511 = "Trukese" 3156 * 5512 = "Ulithean, Fais" 3157 * 5514 = "Yapese" 3158 * 5520 = "Melanesian" 3159 * 5521 = "Polynesian" 3160 * 5522 = "Samoan" 3161 * 5523 = "Tongan" 3162 * 5524 = "Niuean" 3163 * 5525 = "Tokelauan" 3164 * 5526 = "Fijian" 3165 * 5527 = "Marquesan" 3166 * 5529 = "Maori" 3167 * 5530 = "Nukuoro, Kapingarangan" 3168 * 5600 = "Hawaiian" 3169 * 5700 = "Arabic" 43 The SAS System 10:39 Tuesday, September 10, 2002 3170 * 5810 = "Syriac, Aramaic, Chaldean" 3171 * 5900 = "Hebrew, Israeli" 3172 * 6000 = "Amharic, Ethiopian, etc." 3173 * 6110 = "Berber..." 3174 * 6120 = "Chadic, Hamitic, Hausa" 3175 * 6130 = "Cushite, Beja, Somali" 3176 * 6300 = "Nilotic" 3177 * 6303 = "Saharan" 3178 * 6306 = "Sudanic" 3179 * 6307 = "Bantu" 3180 * 6308 = "Swahili" 3181 * 6309 = "Mande" 3182 * 6310 = "Fulani" 3183 * 6311 = "Gur" 3184 * 6312 = "Kru" 3185 * 6313 = "Efik, Ibibio, Tiv" 3186 * 6400 = "African, n.s." 3187 * 7000 = "American Indian (all)" 3188 * 7110 = "Aleut" 3189 * 7130 = "Eskimo" 3190 * 7140 = "Inupik, Innuit" 3191 * 7150 = "St Lawrence Isl. Yupik" 3192 * 7160 = "Yupik" 3193 * 7200 = "Algonquian" 3194 * 7201 = "Arapaho" 3195 * 7202 = "Atsina, Gros Ventre" 3196 * 7203 = "Blackfoot" 3197 * 7204 = "Cheyenne" 3198 * 7205 = "Cree" 3199 * 7206 = "Delaware, Lenni-Lenape" 3200 * 7207 = "Fox, Sac" 3201 * 7208 = "Kickapoo" 3202 * 7209 = "Menomini" 3203 * 7210 = "Metis, French Cree" 3204 * 7211 = "Miami" 3205 * 7212 = "Micmac" 3206 * 7213 = "Ojibwa, Chippewa" 3207 * 7214 = "Ottawa" 3208 * 7215 = "Passamaquoddy, Malecite" 3209 * 7218 = "Potawatomi" 3210 * 7219 = "Shawnee" 3211 * 7300 = "Salish, Flathead, Satsop" 3212 * 7304 = "Coeur d Alene, Skitsamish" 3213 * 7309 = "Puget Sound Salish" 3214 * 7310 = "Quinault, Queets" 3215 * 7311 = "Tillamook" 3216 * 7400 = "Athapascan" 3217 * 7405 = "Kuchin" 3218 * 7407 = "Tanaina" 3219 * 7413 = "Hupa" 3220 * 7420 = "Apache" 3221 * 7421 = "Jicarilla, Lipan" 3222 * 7422 = "Chiricahua, Mescalero" 3223 * 7423 = "San Carlos, Cibecue, White Mountain" 3224 * 7430 = "Kiowa" 3225 * 7500 = "Navajo" 3226 * 7620 = "Nez Perce" 3227 * 7630 = "Sahaptian, Celilo, Klikitat, Palouse, " /* Tenino, Umatilla, Warm */ 3228 * 7705 = "Sierra Miwok, Miwok" 3229 * 7708 = "Wintun" 3230 * 7713 = "Tsimshian" 3231 * 7714 = "Upper Chinook, Clackamas, Multnomah, W" /* asco, Wishram */ 3232 * 7800 = "Zuni" 3233 * 7900 = "Yuman" 3234 * 7920 = "Cocomaricopa" 3235 * 7930 = "Mohave" 3236 * 7940 = "Diegueno" 3237 * 7950 = "Delta River Yuman" 3238 * 7970 = "Havasupai" 3239 * 7980 = "Walapai" 3240 * 7990 = "Yavapai" 3241 * 8020 = "Karok" 3242 * 8030 = "Pomo" 3243 * 8101 = "Crow, Absaroke" 3244 * 8102 = "Hidatsa" 3245 * 8104 = "Dakota, Lakota, Nakota, Sioux" 44 The SAS System 10:39 Tuesday, September 10, 2002 3246 * 8105 = "Chiwere" 3247 * 8106 = "Winnebago" 3248 * 8108 = "Omaha" 3249 * 8109 = "Osage" 3250 * 8110 = "Ponca" 3251 * 8111 = "Quapaw, Arkansas" 3252 * 8210 = "Alabama" 3253 * 8220 = "Choctaw, Chickasaw" 3254 * 8230 = "Mikasuki" 3255 * 8250 = "Koasati" 3256 * 8260 = "Muskogee, Creek, Seminole" 3257 * 8300 = "Keres" 3258 * 8410 = "Mohawk" 3259 * 8420 = "Oneida" 3260 * 8450 = "Seneca" 3261 * 8460 = "Tuscarora" 3262 * 8480 = "Cherokee" 3263 * 8500 = "Caddoan" 3264 * 8520 = "Pawnee" 3265 * 8601 = "Comanche" 3266 * 8602 = "Mono, Owens Valley Paiute" 3267 * 8603 = "Paiute" 3268 * 8608 = "Ute" 3269 * 8609 = "Shoshoni" 3270 * 8620 = "Hopi" 3271 * 8700 = "Pima, Papago" 3272 * 8800 = "Yaqui" 3273 * 8910 = "Aztecan, Mexicano, Nahua" 3274 * 9010 = "Picuris, Northern Tiwa, Taos" 3275 * 9020 = "Tiwa, Isleta" 3276 * 9040 = "Tewa, Hano, Hopi-Tewa, San Ildefonso, " /* San Juan, Santa Clara */ 3277 * 9050 = "Towa" 3278 * 9101 = "Yurok" 3279 * 9110 = "Kwakiutl" 3280 * 9112 = "Makah" 3281 * 9120 = "Kutenai" 3282 * 9130 = "Haida" 3283 * 9131 = "Tlingit, Chilkat, Sitka, Tongass, Yaku" /* tat */ 3284 * 9200 = "Misumalpan" 3285 * 9210 = "Mayan languages" 3286 * 9220 = "Tarascan" 3287 * 9240 = "Oto-Manguen" 3288 * 9250 = "Quechua" 3289 * 9260 = "Aymara" 3290 * 9270 = "Arawakian" 3291 * 9280 = "Chibchan" 3292 * 9290 = "Tupi-Guarani" 3293 * 9300 = "American Indian, n.s." 3294 * 9600 = "Other or not reported" 3295 * 9601 = "Other, not classified" 3296 * 9602 = "Other, not specified" 3297 *; 3298 *VALUE P157L (default=32) 3299 * 0 = "N/A" 3300 * 1 = "Does not speak English" 3301 * 2 = "Yes, speaks English" 3302 * 3 = "Yes, speaks only English" 3303 * 4 = "Yes, speaks very well" 3304 * 5 = "Yes, speaks well" 3305 * 6 = "Yes, but not well" 3306 * 7 = "Unknown" 3307 * 8 = "Illegible" 3308 * 9 = "Blank" 3309 *; 3310 *VALUE P158L (default=32) 3311 * 0 = "Not Hispanic" 3312 * 100 = "Mexican" 3313 * 101 = "Mexican" 3314 * 102 = "Mexican American" 3315 * 103 = "Mexicano/Mexicana" 3316 * 104 = "Chicano/Chicana" 3317 * 106 = "Mexican American Indian" 3318 * 107 = "Mexico" 3319 * 200 = "Puerto Rican" 3320 * 300 = "Cuban" 3321 * 400 = "Other Spanish, 1980" 45 The SAS System 10:39 Tuesday, September 10, 2002 3322 * 410 = "Central/South American, 1970" 3323 * 411 = "Costa Rican" 3324 * 412 = "Guatemalan" 3325 * 413 = "Honduran" 3326 * 414 = "Nicaraguan" 3327 * 415 = "Panamanian" 3328 * 416 = "Salvadoran" 3329 * 417 = "Central American" 3330 * 420 = "Argentinean" 3331 * 421 = "Bolivian" 3332 * 422 = "Chilean" 3333 * 423 = "Colombian" 3334 * 424 = "Ecuadorian" 3335 * 425 = "Paraguayan" 3336 * 426 = "Peruvian" 3337 * 427 = "Uruguayan" 3338 * 428 = "Venezuelan" 3339 * 431 = "South American" 3340 * 440 = "Other Spanish, 1970" 3341 * 450 = "Spaniard" 3342 * 453 = "Castillian" 3343 * 454 = "Catalonian" 3344 * 455 = "Balearic Islander" 3345 * 458 = "Canarian" 3346 * 459 = "Spanish Basque" 3347 * 460 = "Dominican" 3348 * 465 = "Latin American" 3349 * 470 = "Hispanic" 3350 * 480 = "Spanish" 3351 * 490 = "Californio" 3352 * 492 = "Nuevo Mexicano" 3353 * 493 = "Spanish American" 3354 * 494 = "Spanish American Indian" 3355 * 495 = "Meso American Indian" 3356 * 496 = "Mestizo" 3357 * 498 = "Not specified (FOSDIC)" 3358 * 499 = "Not classified" 3359 * 900 = "Not Reported" 3360 *; 3361 *VALUE P159L (default=32) 3362 * 0 = "N/A" 3363 * 1 = "No, not Spanish surname" 3364 * 2 = "Yes, Spanish surname" 3365 * 9 = "Not reported" 3366 *; 3367 *VALUE P160L (default=32) 3368 * 0 = "N/A" 3369 * 1 = "No, not in school" 3370 * 2 = "Yes, in school" 3371 *; 3372 *VALUE P161L (default=32) 3373 * 0 = "N/A (or none, 1980)" 3374 * 1 = "None or preschool" 3375 * 2 = "Grade 1-4" 3376 * 3 = "Grade 5-8" 3377 * 4 = "Grade 9" 3378 * 5 = "Grade 10" 3379 * 6 = "Grade 11" 3380 * 7 = "Grade 12" 3381 * 8 = "1 to 3 years of college" 3382 * 9 = "4+ years of college" 3383 *; 3384 *VALUE P162L (default=32) 3385 * 0 = "N/A" 3386 * 1 = "N/A or none" 3387 * 10 = "None" 3388 * 11 = "Did not finish nurs sch" 3389 * 12 = "Attending nurs. sch." 3390 * 20 = "Nursery school" 3391 * 21 = "Did not finish kindergart" 3392 * 22 = "Attending kindergarten" 3393 * 30 = "Kindergarten" 3394 * 31 = "Did not finish 1st grade" 3395 * 32 = "Attending 1st grade" 3396 * 40 = "1st grade" 3397 * 41 = "Did not finish 2nd grade" 46 The SAS System 10:39 Tuesday, September 10, 2002 3398 * 42 = "Attending 2nd grade" 3399 * 50 = "2nd grade" 3400 * 51 = "Did not finish 3rd grade" 3401 * 52 = "Attending 3rd grade" 3402 * 60 = "3rd grade" 3403 * 61 = "Did not finish 4th grade" 3404 * 62 = "Attending 4th grade" 3405 * 70 = "4th grade" 3406 * 71 = "Did not finish 5th grade" 3407 * 72 = "Attending 5th grade" 3408 * 80 = "5th grade" 3409 * 81 = "Did not finish 6th grade" 3410 * 82 = "Attending 6th grade" 3411 * 90 = "6th grade" 3412 * 91 = "Did not finish 7th grade" 3413 * 92 = "Attending 7th grade" 3414 * 100 = "7th grade" 3415 * 101 = "Did not finish 8th grade" 3416 * 102 = "Attending 8th grade" 3417 * 110 = "8th grade" 3418 * 111 = "Did not finish 9th grade" 3419 * 112 = "Attending 9th grade" 3420 * 120 = "9th grade" 3421 * 121 = "Did not finish 10th grade" 3422 * 122 = "Attending 10th grade" 3423 * 130 = "10th grade" 3424 * 131 = "Did not finish 11th grade" 3425 * 132 = "Attending 11th grade" 3426 * 140 = "11th grade" 3427 * 141 = "Did not finish 12th grade" 3428 * 142 = "Attending 12th grade" 3429 * 150 = "12th grade" 3430 * 151 = "Did not finish 1st year college" 3431 * 152 = "Attending 1st yesr college" 3432 * 160 = "1st year of college" 3433 * 161 = "Did not finish 2nd year of college" 3434 * 162 = "Attending 2nd year of college" 3435 * 170 = "2nd year of college" 3436 * 171 = "Did not finish 3rd year of college" 3437 * 172 = "Attending 3rd year of college" 3438 * 180 = "3rd year of college" 3439 * 181 = "Did not finish 4th year of college" 3440 * 182 = "Attending 4th year of college" 3441 * 190 = "4th year of college" 3442 * 191 = "Did not finish 5th year of college" 3443 * 192 = "Attending 5th year of college" 3444 * 200 = "5th year or more of college (1940, 50)" 3445 * 201 = "Did not finish 6th year of college" 3446 * 202 = "Attending 6th year of college" 3447 * 210 = "6th year or more of college (1960,70)" 3448 * 211 = "Did not finish 7th year of college" 3449 * 212 = "Attending 7th year of college" 3450 * 220 = "7th year of college" 3451 * 221 = "Did not finish 8th year of college" 3452 * 222 = "Attending 8th year of college" 3453 * 230 = "8th year or more of college" 3454 *; 3455 *VALUE P163L (default=32) 3456 * 0 = "N/A" 3457 * 1 = "Not enrolled" 3458 * 2 = "Public school" 3459 * 3 = "Private school (1960,1990)" 3460 * 4 = "Church-related (1980)" 3461 * 5 = "Parochial (1970)" 3462 * 6 = "Other private, 1980" 3463 * 7 = "Other private, 1970" 3464 *; 3465 *VALUE P164L (default=32) 3466 * 0 = "N/A" 3467 * 10 = "At work" 3468 * 11 = "At work, public emerg" 3469 * 12 = "Has job, not working" 3470 * 13 = "Armed forces" 3471 * 14 = "Armed forces--at work" 3472 * 15 = "Armed forces--not at work but with job" 3473 * 20 = "Unemployed" 47 The SAS System 10:39 Tuesday, September 10, 2002 3474 * 21 = "Unemp, exper worker" 3475 * 22 = "Unemp, new worker" 3476 * 30 = "Not in Labor Force" 3477 * 31 = "NILF, housework" 3478 * 32 = "NILF, unable to work" 3479 * 33 = "NILF, school" 3480 * 34 = "NILF, other" 3481 *; 3482 *VALUE P165L (default=32) 3483 * 0 = "N/A" 3484 * 1 = "No, not in labor force" 3485 * 2 = "Yes, in labor force" 3486 *; 3487 *VALUE P166L (default=32) 3488 * 0 = "Accountants and auditors" 3489 * 1 = "Actors and actresses" 3490 * 2 = "Airplane pilots and navigators" 3491 * 3 = "Architects" 3492 * 4 = "Artists and art teachers" 3493 * 5 = "Athletes" 3494 * 6 = "Authors" 3495 * 7 = "Chemists" 3496 * 8 = "Chiropractors" 3497 * 9 = "Clergymen" 3498 * 10 = "College presidents and deans" 3499 * 12 = "Aricultural sciences-Professors" 3500 * 13 = "Biological sciences-Professors" 3501 * 14 = "Chemistry-Professors" 3502 * 15 = "Economics-Professors" 3503 * 16 = "Engineering-Professors" 3504 * 17 = "Geology and geophysics-Professors" 3505 * 18 = "Mathematics-Professors" 3506 * 19 = "Medical Sciences-Professors" 3507 * 23 = "Physics-Professors" 3508 * 24 = "Psychology-Professors" 3509 * 25 = "Statistics-Professors" 3510 * 26 = "Natural science (nec)-Professors" 3511 * 27 = "Social sciences (nec)-Professors" 3512 * 28 = "Nonscientific subjects-Professors" 3513 * 29 = "Subject not specified-Professors" 3514 * 31 = "Dancers and dancing teachers" 3515 * 32 = "Dentists" 3516 * 33 = "Designers" 3517 * 34 = "Dieticians and nutritionists" 3518 * 35 = "Draftsmen" 3519 * 36 = "Editors and reporters" 3520 * 41 = "Aeronautical-Engineers" 3521 * 42 = "Chemical-Engineers" 3522 * 43 = "Civil-Engineers" 3523 * 44 = "Electrical-Engineers" 3524 * 45 = "Industrial-Engineers" 3525 * 46 = "Mechanical-Engineers" 3526 * 47 = "Metallurgical, metallurgists-Engineers" 3527 * 48 = "Mining-Engineers" 3528 * 49 = "Engineers (nec)" 3529 * 51 = "Entertainers (nec)" 3530 * 52 = "Farm and home management advisors" 3531 * 53 = "Foresters and conservationists" 3532 * 54 = "Funeral directors and embalmers" 3533 * 55 = "Lawyers and judges" 3534 * 56 = "Librarians" 3535 * 57 = "Musicians and music teachers" 3536 * 58 = "Nurses, professional" 3537 * 59 = "Nurses, student professional" 3538 * 61 = "Agricultural scientists" 3539 * 62 = "Biological scientists" 3540 * 63 = "Geologists and geophysicists" 3541 * 67 = "Mathematicians" 3542 * 68 = "Physicists" 3543 * 69 = "Misc. natural scientists" 3544 * 70 = "Optometrists" 3545 * 71 = "Osteopaths" 3546 * 72 = "Personnel and labor relations workers" 3547 * 73 = "Pharmacists" 3548 * 74 = "Photographers" 3549 * 75 = "Physicians and surgeons" 48 The SAS System 10:39 Tuesday, September 10, 2002 3550 * 76 = "Radio operators" 3551 * 77 = "Recreation and group workers" 3552 * 78 = "Religious workers" 3553 * 79 = "Social and welfare workers, except gro" /* up */ 3554 * 81 = "Economists" 3555 * 82 = "Psychologists" 3556 * 83 = "Statisticians and actuaries" 3557 * 84 = "Misc social scientists" 3558 * 91 = "Sports instructors and officials" 3559 * 92 = "Surveyors" 3560 * 93 = "Teachers (n.e.c.)" 3561 * 94 = "Medical and dental-technicians" 3562 * 95 = "Testing-technicians" 3563 * 96 = "Technicians (nec)" 3564 * 97 = "Therapists and healers (nec)" 3565 * 98 = "Veterinarians" 3566 * 99 = "Professional, technical & kindred work" /* ers (nec) */ 3567 * 100 = "Farmers (owners and tenants)" 3568 * 123 = "Farm managers" 3569 * 200 = "Buyers and dept heads, store" 3570 * 201 = "Buyers and shippers, farm products" 3571 * 203 = "Conductors, railroad" 3572 * 204 = "Credit men" 3573 * 205 = "Floormen and floor managers, store" 3574 * 210 = "Inspectors, public administration" 3575 * 230 = "Managers & superintendants, building" 3576 * 240 = "Officers, pilots, pursers and engineer" /* s, ship */ 3577 * 250 = "Officials & administratators (nec), pu" /* blic administration */ 3578 * 260 = "Officials, lodge, society, union, etc." 3579 * 270 = "Postmasters" 3580 * 280 = "Purchasing agents and buyers (nec)" 3581 * 290 = "Managers, officials, and proprietors (" /* nec) */ 3582 * 300 = "Agents (nec)" 3583 * 301 = "Attendants and assistants, library" 3584 * 302 = "Attendants, physicians and dentists of" /* fice */ 3585 * 304 = "Baggagemen, transportation" 3586 * 305 = "Bank tellers" 3587 * 310 = "Bookkeepers" 3588 * 320 = "Cashiers" 3589 * 321 = "Collectors, bill and account" 3590 * 322 = "Dispatchers and starters, vehicle" 3591 * 325 = "Express messengers and railway mail cl" /* erks */ 3592 * 335 = "Mail carriers" 3593 * 340 = "Messengers and office boys" 3594 * 341 = "Office machine operators" 3595 * 342 = "Shipping and receiving clerks" 3596 * 350 = "Stenographers, typists, and secretarie" /* s */ 3597 * 360 = "Telegraph messengers" 3598 * 365 = "Telegraph operators" 3599 * 370 = "Telephone operators" 3600 * 380 = "Ticket, station, and express agents" 3601 * 390 = "Clerical and kindred workers (n.e.c.)" 3602 * 400 = "Advertising agents and salesmen" 3603 * 410 = "Auctioneers" 3604 * 420 = "Demonstrators" 3605 * 430 = "Hucksters and peddlers" 3606 * 450 = "Insurance agents and brokers" 3607 * 460 = "Newsboys" 3608 * 470 = "Real estate agents and brokers" 3609 * 480 = "Stock and bond salesmen" 3610 * 490 = "Salesmen and sales clerks (nec)" 3611 * 500 = "Bakers" 3612 * 501 = "Blacksmiths" 3613 * 502 = "Bookbinders" 3614 * 503 = "Boilermakers" 3615 * 504 = "Brickmasons,stonemasons, and tile sett" /* ers */ 3616 * 505 = "Cabinetmakers" 3617 * 510 = "Carpenters" 3618 * 511 = "Cement and concrete finishers" 3619 * 512 = "Compositors and typesetters" 3620 * 513 = "Cranemen,derrickmen, and hoistmen" 3621 * 514 = "Decorators and window dressers" 3622 * 515 = "Electricians" 3623 * 520 = "Electrotypers and stereotypers" 3624 * 521 = "Engravers, except engravers" 3625 * 522 = "Excavating, grading, and road machiner" /* y operators */ 49 The SAS System 10:39 Tuesday, September 10, 2002 3626 * 523 = "Foremen (nec)" 3627 * 524 = "Forgemen and hammermen" 3628 * 525 = "Furriers" 3629 * 530 = "Glaziers" 3630 * 531 = "Heat treaters, annealers, temperers" 3631 * 532 = "Inspectors, scalers, and graders log a" /* nd lumber */ 3632 * 533 = "Inspectors (nec)" 3633 * 534 = "Jewelers, watchmakers, goldsmiths, and" /* silversmiths */ 3634 * 535 = "Job setters, metal" 3635 * 540 = "Linemen and servicemen, telegraph, tel" /* ephone, & power */ 3636 * 541 = "Locomotive engineers" 3637 * 542 = "Locomotive firemen" 3638 * 543 = "Loom fixers" 3639 * 544 = "Machinists" 3640 * 545 = "Airplane-mechanics and repairmen" 3641 * 550 = "Automobile-mechanics and repairmen" 3642 * 551 = "Office machine-mechanics and repairmen" 3643 * 552 = "Radio and television-mechanics and rep" /* airmen */ 3644 * 553 = "Railroad and car shop-mechanics and re" /* pairmen */ 3645 * 554 = "Mechanics and repairmen (nec)" 3646 * 555 = "Millers, grain, flour, feed, etc" 3647 * 560 = "Millwrights" 3648 * 561 = "Molders, metal" 3649 * 562 = "Motion picture projectionists" 3650 * 563 = "Opticians and lens grinders and polish" /* ers */ 3651 * 564 = "Painters, construction and maintenance" 3652 * 565 = "Paperhangers" 3653 * 570 = "Pattern and model makers, except paper" 3654 * 571 = "Photoengravers & lithographers" 3655 * 572 = "Piano and organ tuners and repairmen" 3656 * 573 = "Plasterers" 3657 * 574 = "Plumbers and pipe fitters" 3658 * 575 = "Pressmen and plate printers, printing" 3659 * 580 = "Rollers and roll hands, metal" 3660 * 581 = "Roofers and slaters" 3661 * 582 = "Shoemakers and repairers, except facto" /* ry */ 3662 * 583 = "Stationary engineers" 3663 * 584 = "Stone cutters and stone carvers" 3664 * 585 = "Structural metal workers" 3665 * 590 = "Tailors and tailoresses" 3666 * 591 = "Tinsmiths, coppersmiths, and sheet met" /* al workers */ 3667 * 592 = "Tool makers, and die makers and setter" /* s */ 3668 * 593 = "Upholsterers" 3669 * 594 = "Craftsmen and kindred workers (nec)" 3670 * 595 = "Members of the armed services" 3671 * 600 = "Auto mechanics apprentice" 3672 * 601 = "Bricklayers and masons apprentice" 3673 * 602 = "Carpenters apprentice" 3674 * 603 = "Electricians apprentice" 3675 * 604 = "Machinists and toolmakers apprentice" 3676 * 605 = "Mechanics, except auto apprentice" 3677 * 610 = "Plumbers and and pipe fitters apprenti" /* ce */ 3678 * 611 = "Apprentices, building trades (nec)" 3679 * 612 = "Apprentices, metalworking trades (nec)" 3680 * 613 = "Apprentices, printing trades" 3681 * 614 = "Apprentices, other specified trades" 3682 * 615 = "Apprentices, trade not specified" 3683 * 620 = "Asbestos and insulation workers" 3684 * 621 = "Attendants, auto service and parking" 3685 * 622 = "Blasters and powdermen" 3686 * 623 = "Boatmen, canalmen, and lock keepers" 3687 * 624 = "Brakemen, railroad" 3688 * 625 = "Bus drivers" 3689 * 630 = "Chainmen, rodmen, and axmen, surveying" 3690 * 631 = "Conductors, bus & street railway" 3691 * 632 = "Deliverymen and routemen" 3692 * 633 = "Dressmakers and seamstresses except fa" /* ctory */ 3693 * 634 = "Dyers" 3694 * 635 = "Filers, grinders, and polishers, metal" 3695 * 640 = "Fruit, nut, and vegetable graders, and" /* packers, except facto */ 3696 * 641 = "Furnacemen, smeltermen and pourers" 3697 * 642 = "Heaters, metal" 3698 * 643 = "Laundry and dry cleaning Operatives" 3699 * 644 = "Meat cutters, except slaughter and pac" /* king house */ 3700 * 645 = "Milliners" 3701 * 650 = "Mine operatives and laborers" 50 The SAS System 10:39 Tuesday, September 10, 2002 3702 * 660 = "Motormen, mine, factory, logging camp," /* etc */ 3703 * 661 = "Motormen, street, subway, and elevated" /* railway */ 3704 * 662 = "Oilers and greaser, except auto" 3705 * 670 = "Painters, except construction or maint" /* enance */ 3706 * 671 = "Photographic process workers" 3707 * 672 = "Power station operators" 3708 * 673 = "Sailors and deck hands" 3709 * 674 = "Sawyers" 3710 * 675 = "Spinners, textile" 3711 * 680 = "Stationary firemen" 3712 * 681 = "Switchmen, railroad" 3713 * 682 = "Taxicab drivers and chauffeurs" 3714 * 683 = "Truck and tractor drivers" 3715 * 684 = "Weavers, textile" 3716 * 685 = "Welders and flame cutters" 3717 * 690 = "Operative and kindred workers (nec)" 3718 * 700 = "Housekeepers, private household" 3719 * 710 = "Laundressses, private household" 3720 * 720 = "Private household workers (nec)" 3721 * 730 = "Attendants, hospital and other institu" /* tion */ 3722 * 731 = "Attendants, professional and personal " /* service (nec) */ 3723 * 732 = "Attendants, recreation and amusement" 3724 * 740 = "Barbers, beauticians, and manicurists" 3725 * 750 = "Bartenders" 3726 * 751 = "Bootblacks" 3727 * 752 = "Boarding and lodging house keepers" 3728 * 753 = "Charwomen and cleaners" 3729 * 754 = "Cooks, except private household" 3730 * 760 = "Counter and fountain workers" 3731 * 761 = "Elevator operators" 3732 * 762 = "Firemen, fire protection" 3733 * 763 = "Guards, watchmen, and doorkeepers" 3734 * 764 = "Housekeepers and stewards, except priv" /* ate household */ 3735 * 770 = "Janitors and sextons" 3736 * 771 = "Marshals and constables" 3737 * 772 = "Midwives" 3738 * 773 = "Policemen and detectives" 3739 * 780 = "Porters" 3740 * 781 = "Practical nurses" 3741 * 782 = "Sheriffs and bailiffs" 3742 * 783 = "Ushers, recreation and amusement" 3743 * 784 = "Waiters and waitresses" 3744 * 785 = "Watchmen (crossing) and bridge tenders" 3745 * 790 = "Service workers, except private househ" /* old (nec) */ 3746 * 810 = "Farm foremen" 3747 * 820 = "Farm laborers, wage workers" 3748 * 830 = "Farm laborers, unpaid family workers" 3749 * 840 = "Farm service laborers, self-employed" 3750 * 910 = "Fishermen and oystermen" 3751 * 920 = "Garage laborers and car washers and gr" /* easers */ 3752 * 930 = "Gardeners, except farm, and groundskee" /* pers */ 3753 * 940 = "Longshoremen and stevedores" 3754 * 950 = "Lumbermen, raftsmen, and woodchoppers" 3755 * 960 = "Teamsters" 3756 * 970 = "Laborers (nec)" 3757 * 980 = "Keeps house/house work/housewife" 3758 * 981 = "Imputed keeping house (1860-1880)" 3759 * 982 = "At home/ helps in home" 3760 * 983 = "At school" 3761 * 984 = "Retired" 3762 * 985 = "Unemployed/ without occ" 3763 * 986 = "Invalid/sick/disabled" 3764 * 987 = "Inmate/prisoner" 3765 * 988 = "Ration Indian" 3766 * 990 = "Landlord" 3767 * 991 = "Capitalist/gentleman" 3768 * 992 = "Child labor-farm" 3769 * 993 = "Child labor-domestic" 3770 * 994 = "Child labor-other" 3771 * 995 = "Other non-occupation" 3772 * 997 = "Occupation missing/unknown" 3773 * 999 = "N/A (blank)" 3774 *; 3775 *VALUE P167L (default=32) 3776 * 0 = "N/A" 3777 * 1 = "Ration Indians" 51 The SAS System 10:39 Tuesday, September 10, 2002 3778 * 2 = "Prisoners" 3779 * 3 = "Identified housework" 3780 * 105 = "Agriculture" 3781 * 116 = "Forestry" 3782 * 126 = "Fisheries" 3783 * 206 = "Metal mining" 3784 * 216 = "Coal mining" 3785 * 226 = "Crude petroleum and natural gas extrac" /* tion */ 3786 * 236 = "Nonmettalic mining and quarrying, exc" /* ept fuel */ 3787 * 246 = "Construction" 3788 * 306 = "Logging" 3789 * 307 = "Sawmills, planing mills, and mill work" 3790 * 308 = "Misc wood products" 3791 * 309 = "Furniture and fixtures" 3792 * 316 = "Glass and glass products" 3793 * 317 = "Cement, concrete, gypsum and plaster p" /* roducts */ 3794 * 318 = "Structural clay products" 3795 * 319 = "Pottery and related prods" 3796 * 326 = "Misc nonmetallic mineral and stone pro" /* ducts */ 3797 * 336 = "Blast furnaces, steel works, & rolling" /* mills */ 3798 * 337 = "Other primary iron and steel industrie" /* s */ 3799 * 338 = "Primary nonferrous industries" 3800 * 346 = "Fabricated steel products" 3801 * 347 = "Fabricated nonferrous metal products" 3802 * 348 = "Not specified metal industries" 3803 * 356 = "Agricultural machinery and tractors" 3804 * 357 = "Office and store machines" 3805 * 358 = "Misc machinery" 3806 * 367 = "Electrical machinery, equipment and su" /* pplies */ 3807 * 376 = "Motor vehicles and motor vehicle equip" /* ment */ 3808 * 377 = "Aircraft and parts" 3809 * 378 = "Ship and boat building and repairing" 3810 * 379 = "Railroad and misc transportation equip" /* ment */ 3811 * 386 = "Professional equipment" 3812 * 387 = "Photographic equipment and supplies" 3813 * 388 = "Watches, clocks, and clockwork-operate" /* d devices */ 3814 * 399 = "Misc manufacturing industries" 3815 * 406 = "Meat products" 3816 * 407 = "Dairy products" 3817 * 408 = "Canning and preserving fruits, vegetab" /* les, and seafoods */ 3818 * 409 = "Grain-mill products" 3819 * 416 = "Bakery products" 3820 * 417 = "Confectionary and related products" 3821 * 418 = "Beverage industries" 3822 * 419 = "Misc food preparations and kindred pro" /* ducts */ 3823 * 426 = "Not specified food industries" 3824 * 429 = "Tobacco manufactures" 3825 * 436 = "Knitting mills" 3826 * 437 = "Dyeing and finishing textiles, except " /* knit goods */ 3827 * 438 = "Carpets, rugs, and other floor coverin" /* gs */ 3828 * 439 = "Yarn, thread, and fabric" 3829 * 446 = "Misc textile mill products" 3830 * 448 = "Apparel and accessories" 3831 * 449 = "Misc fabricated textile products" 3832 * 456 = "Pulp, paper, and paper-board mills" 3833 * 457 = "Paperboard containers and boxes" 3834 * 458 = "Misc paper and pulp products" 3835 * 459 = "Printing, publishing, and allied indus" /* tries */ 3836 * 466 = "Synthetic fibers" 3837 * 467 = "Drugs and medicines" 3838 * 468 = "Paints, varnishes, and related product" /* s */ 3839 * 469 = "Misc chemicals and allied products" 3840 * 476 = "Petroleum refining" 3841 * 477 = "Misc petroleum and coal products" 3842 * 478 = "Rubber products" 3843 * 487 = "Leather: tanned, curried, and finished" 3844 * 488 = "Footwear, except rubber" 3845 * 489 = "Leather products, except footwear" 3846 * 499 = "Not specified manufacturing industries" 3847 * 506 = "Railroads and railway" 3848 * 516 = "Street railways and bus lines" 3849 * 526 = "Trucking service" 3850 * 527 = "Warehousing and storage" 3851 * 536 = "Taxicab service" 3852 * 546 = "Water transportation" 3853 * 556 = "Air transportation" 52 The SAS System 10:39 Tuesday, September 10, 2002 3854 * 567 = "Petroleum and gasoline pipe lines" 3855 * 568 = "Services incidental to transportation" 3856 * 578 = "Telephone" 3857 * 579 = "Telegraph" 3858 * 586 = "Electric light and power" 3859 * 587 = "Gas and steam supply systems" 3860 * 588 = "Electric-gas utilities" 3861 * 596 = "Water supply" 3862 * 597 = "Sanitary services" 3863 * 598 = "Other and not specified utilities" 3864 * 606 = "Motor vehicles and equipment" 3865 * 607 = "Drugs, chemicals, and allied products" 3866 * 608 = "Dry goods apparel" 3867 * 609 = "Food and related products" 3868 * 616 = "Electrical goods, hardware, and plumbi" /* ng equipment */ 3869 * 617 = "Machinery, equipment, and supplies" 3870 * 618 = "Petroleum products" 3871 * 619 = "Farm prods--raw materials" 3872 * 626 = "Misc wholesale trade" 3873 * 627 = "Not specified wholesale trade" 3874 * 636 = "Food stores, except dairy" 3875 * 637 = "Dairy prods stores and milk retailing" 3876 * 646 = "General merchandise" 3877 * 647 = "Five and ten cent stores" 3878 * 656 = "Apparel and accessories stores, except" /* shoe */ 3879 * 657 = "Shoe stores" 3880 * 658 = "Furniture and house furnishings stores" 3881 * 659 = "Household appliance and radio stores" 3882 * 667 = "Motor vehicles and accessories retaili" /* ng */ 3883 * 668 = "Gasoline service stations" 3884 * 669 = "Drug stores" 3885 * 679 = "Eating and drinking places" 3886 * 686 = "Hardware and farm implement stores" 3887 * 687 = "Lumber and building material retailing" 3888 * 688 = "Liquor stores" 3889 * 689 = "Retail florists" 3890 * 696 = "Jewelry stores" 3891 * 697 = "Fuel and ice retailing" 3892 * 698 = "Misc retail stores" 3893 * 699 = "Not specified retail trade" 3894 * 716 = "Banking and credit" 3895 * 726 = "Security and commodity brokerage and i" /* nvest companies */ 3896 * 736 = "Insurance" 3897 * 746 = "Real estate" 3898 * 756 = "Real estate-insurance-law offices" 3899 * 806 = "Advertising" 3900 * 807 = "Accounting, auditing, and bookkeeping " /* services */ 3901 * 808 = "Misc business services" 3902 * 816 = "Auto repair services and garages" 3903 * 817 = "Misc repair services" 3904 * 826 = "Private households" 3905 * 836 = "Hotels and lodging places" 3906 * 846 = "Laundering, cleaning, and dyeing" 3907 * 847 = "Dressmaking shops" 3908 * 848 = "Shoe repair shops" 3909 * 849 = "Misc personal services" 3910 * 856 = "Radio broadcasting and television" 3911 * 857 = "Theaters and motion pictures" 3912 * 858 = "Bowling alleys, and billiard and pool " /* parlors */ 3913 * 859 = "Misc entertainment and recreation serv" /* ices */ 3914 * 868 = "Medical and other health services, exc" /* ept hospitals */ 3915 * 869 = "Hospitals" 3916 * 879 = "Legal services" 3917 * 888 = "Educational services" 3918 * 896 = "Welfare and religious services" 3919 * 897 = "Nonprofit membership organizs." 3920 * 898 = "Engineering and architectural services" 3921 * 899 = "Misc professional and related" 3922 * 906 = "Postal service" 3923 * 916 = "Federal public administration" 3924 * 926 = "State public administration" 3925 * 936 = "Local public administration" 3926 * 997 = "Not classifiable" 3927 * 998 = "Industry not reported" 3928 *; 3929 *VALUE P168L (default=32) 53 The SAS System 10:39 Tuesday, September 10, 2002 3930 * 0 = "N/A" 3931 * 10 = "Self-employed" 3932 * 11 = "Employer" 3933 * 12 = "Working on own account" 3934 * 13 = "Self-employed, not incorporated" 3935 * 14 = "Self-employed, incorporated" 3936 * 20 = "Works for wages" 3937 * 21 = "Works on salary (1920)" 3938 * 22 = "Wage/salary, private" 3939 * 23 = "Wage/salary at non-profit" 3940 * 24 = "Wage/salary, government" 3941 * 25 = "Federal govt employee" 3942 * 26 = "Armed forces" 3943 * 27 = "State govt employee" 3944 * 28 = "Local govt employee" 3945 * 29 = "Unpaid family worker" 3946 * 30 = "New worker" 3947 * 40 = "Unemployed, last worked 5 years ago" 3948 * 99 = "Missing" 3949 *; 3950 *VALUE P169L (default=32) 3951 * 0 = "N/A" 3952 * 1 = "1-13 weeks" 3953 * 2 = "14-26 weeks" 3954 * 3 = "27-39 weeks" 3955 * 4 = "40-47 weeks" 3956 * 5 = "48-49 weeks" 3957 * 6 = "50-52 weeks" 3958 *; 3959 *VALUE P170L (default=32) 3960 * 0 = "N/A" 3961 * 1 = "1-14 hours" 3962 * 2 = "15-29 hours" 3963 * 3 = "30-34 hours" 3964 * 4 = "35-39 hours" 3965 * 5 = "40 hours" 3966 * 6 = "41-48 hours" 3967 * 7 = "49-59 hours" 3968 * 8 = "60+ hours" 3969 *; 3970 *VALUE P171L (default=32) 3971 * 0 = "N/A" 3972 * 1 = "Not unemployed last year" 3973 * 2 = "Up to one quarter unemployed last year" 3974 * 3 = "Two quarters unemployed" 3975 * 4 = "Three quarters unemployed" 3976 * 5 = "Four quarters unemployed" 3977 *; 3978 *VALUE P172L (default=32) 3979 * 0 = "N/A" 3980 * 10 = "Worked current yr" 3981 * 20 = "Worked previous yr" 3982 * 31 = "Worked 2 yrs prior" 3983 * 32 = "Worked 2-5 yrs ago" 3984 * 33 = "Worked 3-5 yrs ago" 3985 * 34 = "Worked 3-6 yrs ago" 3986 * 35 = "Worked 6-10 yrs ago" 3987 * 36 = "Worked 7-10 yrs ago" 3988 * 40 = "Worked more than 10 yrs ago" 3989 * 50 = "Never worked" 3990 *; 3991 *VALUE P173L (default=32) 3992 * 0 = "N/A" 3993 * 1 = "No" 3994 * 2 = "Yes, laid off" 3995 * 3 = "Yes, other reason (vacation, illness, " /* labor dispute, etc.) */ 3996 * 4 = "Not reported" 3997 *; 3998 *VALUE P174L (default=32) 3999 * 0 = "N/A" 4000 * 1 = "No, did not look for work" 4001 * 2 = "Yes, looked for work" 4002 * 3 = "Not reported" 4003 *; 4004 *VALUE P175L (default=32) 4005 * 0 = "N/A" 54 The SAS System 10:39 Tuesday, September 10, 2002 4006 * 1 = "No, already has job" 4007 * 2 = "No, temporarily ill" 4008 * 3 = "No, other reason(s)" 4009 * 4 = "Yes, available for work" 4010 * 5 = "Not reported" 4011 *; 4012 *VALUE P176L (default=32) 4013 * 0 = "N/A" 4014 * 1 = "No" 4015 * 2 = "Yes" 4016 *; 4017 *VALUE P177L (default=32) 4018 * 0 = "N/A" 4019 * 10 = "Same house" 4020 * 20 = "Moved, place not reported" 4021 * 30 = "Same state/county, different house" 4022 * 40 = "Same state, different county" 4023 * 50 = "Different state" 4024 * 51 = "Contiguous-different state" 4025 * 52 = "Not contiguous-different state" 4026 * 60 = "Abroad" 4027 * 70 = "Same state, place not reported" 4028 * 90 = "Unknown" 4029 *; 4030 *VALUE P178L (default=32) 4031 * 0 = "N/A" 4032 * 1 = "Alabama" 4033 * 2 = "Alaska" 4034 * 4 = "Arizona" 4035 * 5 = "Arkansas" 4036 * 6 = "California" 4037 * 8 = "Colorado" 4038 * 9 = "Connecticut" 4039 * 10 = "Delaware" 4040 * 11 = "District of Columbia" 4041 * 12 = "Florida" 4042 * 13 = "Georgia" 4043 * 15 = "Hawaii" 4044 * 16 = "Idaho" 4045 * 17 = "Illinois" 4046 * 18 = "Indiana" 4047 * 19 = "Iowa" 4048 * 20 = "Kansas" 4049 * 21 = "Kentucky" 4050 * 22 = "Louisiana" 4051 * 23 = "Maine" 4052 * 24 = "Maryland" 4053 * 25 = "Massachusetts" 4054 * 26 = "Michigan" 4055 * 27 = "Minnesota" 4056 * 28 = "Mississippi" 4057 * 29 = "Missouri" 4058 * 30 = "Montana" 4059 * 31 = "Nebraska" 4060 * 32 = "Nevada" 4061 * 33 = "New Hampshire" 4062 * 34 = "New Jersey" 4063 * 35 = "New Mexico" 4064 * 36 = "New York" 4065 * 37 = "North Carolina" 4066 * 38 = "North Dakota" 4067 * 39 = "Ohio" 4068 * 40 = "Oklahoma" 4069 * 41 = "Oregon" 4070 * 42 = "Pennsylvania" 4071 * 44 = "Rhode Island" 4072 * 45 = "South Carolina" 4073 * 46 = "South Dakota" 4074 * 47 = "Tennessee" 4075 * 48 = "Texas" 4076 * 49 = "Utah" 4077 * 50 = "Vermont" 4078 * 51 = "Virginia" 4079 * 53 = "Washington" 4080 * 54 = "West Virginia" 4081 * 55 = "Wisconsin" 55 The SAS System 10:39 Tuesday, September 10, 2002 4082 * 56 = "Wyoming" 4083 * 61 = "State group (1980): Maine-New Hamp-Ver" /* mont */ 4084 * 62 = "State group (1980): Massachusetts-Rhod" /* e Island */ 4085 * 63 = "State group (1980): Minn-Iowa-Missouri" /* -Kansas-Nebras */ 4086 * 64 = "State group (1980): Maryland-Delaware" 4087 * 65 = "State group (1980): Montana-Idaho-Wyom" /* ing */ 4088 * 66 = "State group (1980): Utah-Nevada" 4089 * 67 = "State group (1980): Arizona-New Mexico" 4090 * 68 = "State group (1980): Alaska-Hawaii" 4091 * 99 = "United States, n.s. or confidential" 4092 * 100 = "American Samoa" 4093 * 105 = "Guam" 4094 * 110 = "Puerto Rico" 4095 * 115 = "Virgin Islands" 4096 * 119 = "US outlying area, 1980" 4097 * 150 = "Canada" 4098 * 151 = "English Canada" 4099 * 152 = "French Canada" 4100 * 160 = "Atlantic Islands" 4101 * 200 = "Mexico" 4102 * 211 = "Belize/British Honduras" 4103 * 212 = "Costa Rica" 4104 * 213 = "El Salvador" 4105 * 214 = "Guatemala" 4106 * 215 = "Honduras" 4107 * 216 = "Nicaragua" 4108 * 217 = "Panama" 4109 * 218 = "Canal Zone" 4110 * 219 = "Central America, nec" 4111 * 250 = "Cuba" 4112 * 261 = "Dominican Republic" 4113 * 262 = "Haiti" 4114 * 263 = "Jamaica" 4115 * 264 = "British West Indies" 4116 * 266 = "Trinidad & Tobago" 4117 * 267 = "Other West Indies" 4118 * 305 = "Argentina" 4119 * 310 = "Bolivia" 4120 * 315 = "Brazil" 4121 * 320 = "Chile" 4122 * 325 = "Colombia" 4123 * 330 = "Ecuador" 4124 * 345 = "Paraguay" 4125 * 350 = "Peru" 4126 * 360 = "Uruguay" 4127 * 365 = "Venezuela" 4128 * 390 = "South America, nec" 4129 * 400 = "Denmark" 4130 * 402 = "Finland" 4131 * 403 = "Iceland" 4132 * 404 = "Ireland" 4133 * 406 = "Norway" 4134 * 409 = "Sweden" 4135 * 410 = "England" 4136 * 413 = "Northern Ireland" 4137 * 415 = "Scotland" 4138 * 416 = "Wales" 4139 * 420 = "Austria" 4140 * 421 = "Belgium" 4141 * 422 = "France" 4142 * 424 = "Luxembourg" 4143 * 426 = "Netherlands" 4144 * 427 = "Switzerland" 4145 * 430 = "Albania" 4146 * 433 = "Greece" 4147 * 435 = "Italy" 4148 * 437 = "Portugal" 4149 * 438 = "Azores" 4150 * 441 = "Spain" 4151 * 450 = "Czechoslovakia" 4152 * 453 = "Germany" 4153 * 456 = "Hungary" 4154 * 457 = "Poland" 4155 * 460 = "Yugoslavia" 4156 * 470 = "Bulgaria" 4157 * 471 = "Romania" 56 The SAS System 10:39 Tuesday, September 10, 2002 4158 * 489 = "Europe, nec" 4159 * 490 = "Estonia" 4160 * 491 = "Latvia" 4161 * 492 = "Lithuania" 4162 * 495 = "USSR" 4163 * 496 = "Byelorussia" 4164 * 498 = "Ukraine" 4165 * 500 = "China" 4166 * 504 = "Japan" 4167 * 506 = "Korea" 4168 * 515 = "Philippines" 4169 * 518 = "Vietnam" 4170 * 521 = "India" 4171 * 525 = "Pakistan" 4172 * 527 = "Iran" 4173 * 535 = "Israel/Palestine" 4174 * 539 = "Jordan" 4175 * 541 = "Lebanon" 4176 * 545 = "Syria" 4177 * 546 = "Turkey" 4178 * 559 = "Southwest Asia, nec" 4179 * 590 = "Asia, nec" 4180 * 600 = "Africa" 4181 * 610 = "Northern Africa" 4182 * 612 = "Egypt/United Arab Rep." 4183 * 670 = "Central Africa" 4184 * 690 = "Southern Africa" 4185 * 694 = "South Africa (Union of)" 4186 * 699 = "Africa, nec" 4187 * 701 = "Australia" 4188 * 702 = "New Zealand" 4189 * 710 = "Pacific Islands" 4190 * 715 = "US Pacific Trust Terrs" 4191 * 900 = "Abroad (unknown) or at sea" 4192 * 911 = "Abroad, n.s." 4193 * 912 = "Abroad, at sea" 4194 * 990 = "Same house" 4195 * 997 = "Undocumented value" 4196 * 999 = "Missing/unknown" 4197 *; 4198 *VALUE P179L (default=32) 4199 * 0 = "N/A" 4200 * 1 = "Not in a metro area" 4201 * 2 = "In metro, cc status unk." 4202 * 3 = "In central city" 4203 * 4 = "Metro, not central city" 4204 * 9 = "Not an intercounty migrant" 4205 *; 4206 *VALUE P180L (default=32) 4207 * 0 = "N/A" 4208 * 1 = "In metro-in same metro 5 yrs ago" 4209 * 2 = "In metro-in different metro 5 yrs ago" 4210 * 3 = "In metro-not in metro 5 years ago" 4211 * 4 = "Not in metro-in a metro 5 years ago" 4212 * 5 = "Not in metro-not in metro 5 years ago" 4213 * 9 = "Unknown" 4214 *; 4215 *VALUE P181L (default=32) 4216 * 1 = "Not in migration sample" 4217 * 2 = "In migration sample" 4218 *; 4219 *VALUE P182L (default=32) 4220 * 0 = "N/A" 4221 * 1 = "No" 4222 * 2 = "Yes" 4223 * 3 = "Full time (35+ hours)" 4224 * 4 = "Part time (1-34 hours)" 4225 * 9 = "Not reported" 4226 *; 4227 *VALUE P183L (default=32) 4228 * 0 = "N/A" 4229 * 1 = "No" 4230 * 2 = "Yes" 4231 * 9 = "Not reported" 4232 *; 4233 *VALUE P184L (default=32) 57 The SAS System 10:39 Tuesday, September 10, 2002 4234 * 0 = "N/A" 4235 * 1 = "No" 4236 * 2 = "Yes" 4237 * 9 = "Not reported" 4238 *; 4239 *VALUE P185L (default=32) 4240 * 0 = "N/A" 4241 * 1 = "No disability that affects work" 4242 * 2 = "Disability limits but does not prevent" /* work */ 4243 * 3 = "Disability prevents work" 4244 *; 4245 *VALUE P186L (default=32) 4246 * 0 = "N/A" 4247 * 1 = "No public transportation disability" 4248 * 2 = "Yes, public transportation disability" 4249 *; 4250 *VALUE P187L (default=32) 4251 * 0 = "N/A" 4252 * 1 = "No Service" 4253 * 2 = "Yes" 4254 * 9 = "Not ascertained" 4255 *; 4256 *VALUE P188L (default=32) 4257 * 0 = "No" 4258 * 2 = "Yes, served this period" 4259 *; 4260 *VALUE P189L (default=32) 4261 * 0 = "N/A or No" 4262 * 1 = "No" 4263 * 2 = "Yes, Vietnam-era veteran" 4264 *; 4265 *VALUE P190L (default=32) 4266 * 0 = "No" 4267 * 2 = "Yes, served this period" 4268 *; 4269 *VALUE P191L (default=32) 4270 * 0 = "N/A or No" 4271 * 1 = "No" 4272 * 2 = "Yes, served this period" 4273 *; 4274 *VALUE P192L (default=32) 4275 * 0 = "N/A or No" 4276 * 1 = "No" 4277 * 2 = "Yes, served this period" 4278 *; 4279 *VALUE P193L (default=32) 4280 * 0 = "N/A or No" 4281 * 1 = "No" 4282 * 2 = "Yes, served this period" 4283 *; 4284 *VALUE P194L (default=32) 4285 * 0 = "N/A or No" 4286 * 1 = "No" 4287 * 2 = "Yes, served this period(s)" 4288 *; 4289 *VALUE P195L (default=32) 4290 * 0 = "N/A" 4291 * 1 = "Alabama" 4292 * 2 = "Alaska" 4293 * 4 = "Arizona" 4294 * 5 = "Arkansas" 4295 * 6 = "California" 4296 * 8 = "Colorado" 4297 * 9 = "Connecticut" 4298 * 10 = "Delaware" 4299 * 11 = "District of Columbia" 4300 * 12 = "Florida" 4301 * 13 = "Georgia" 4302 * 15 = "Hawaii" 4303 * 16 = "Idaho" 4304 * 17 = "Illinois" 4305 * 18 = "Indiana" 4306 * 19 = "Iowa" 4307 * 20 = "Kansas" 4308 * 21 = "Kentucky" 4309 * 22 = "Louisiana" 58 The SAS System 10:39 Tuesday, September 10, 2002 4310 * 23 = "Maine" 4311 * 24 = "Maryland" 4312 * 25 = "Massachusetts" 4313 * 26 = "Michigan" 4314 * 27 = "Minnesota" 4315 * 28 = "Mississippi" 4316 * 29 = "Missouri" 4317 * 30 = "Montana" 4318 * 31 = "Nebraska" 4319 * 32 = "Nevada" 4320 * 33 = "New Hampshire" 4321 * 34 = "New Jersey" 4322 * 35 = "New Mexico" 4323 * 36 = "New York" 4324 * 37 = "North Carolina" 4325 * 38 = "North Dakota" 4326 * 39 = "Ohio" 4327 * 40 = "Oklahoma" 4328 * 41 = "Oregon" 4329 * 42 = "Pennsylvania" 4330 * 44 = "Rhode island" 4331 * 45 = "South Carolina" 4332 * 46 = "South Dakota" 4333 * 47 = "Tennessee" 4334 * 48 = "Texas" 4335 * 49 = "Utah" 4336 * 50 = "Vermont" 4337 * 51 = "Virginia" 4338 * 53 = "Washington" 4339 * 54 = "West Virginia" 4340 * 55 = "Wisconsin" 4341 * 56 = "Wyoming" 4342 * 61 = "Maine-New Hamp-Vermont" 4343 * 62 = "Massachusetts-Rhode Island" 4344 * 63 = "Minn-Iowa-Missouri-Kansas-S Dakota-N D" /* akota */ 4345 * 64 = "Mayrland-Delaware" 4346 * 65 = "Montana-Idaho-Wyoming" 4347 * 66 = "Utah-Nevada" 4348 * 67 = "Arizona-New Mexico" 4349 * 68 = "Alaska-Hawaii" 4350 * 72 = "Puerto Rico" 4351 * 73 = "U.S. outlying area" 4352 * 80 = "Abroad" 4353 * 90 = "Confidential" 4354 * 99 = "Not reported" 4355 *; 4356 *VALUE P196L (default=32) 4357 * 0 = "N/A" 4358 * 1 = "Work central city" 4359 * 2 = "Work CBD" 4360 * 3 = "Work central city, not CBD" 4361 * 4 = "Not work central city" 4362 * 5 = "Work in metro, CC status unk" 4363 * 6 = "Work non-metro or not reported" 4364 * 7 = "Work non-metro" 4365 * 8 = "Work non-metro or abroad" 4366 * 9 = "Not reported" 4367 *; 4368 *VALUE P197L (default=32) 4369 * 0 = "N/A" 4370 * 1 = "Live and work in metro, CBD" 4371 * 2 = "Live and work in metro, central city" 4372 * 3 = "Live and work in metro, outside cc" 4373 * 4 = "Live in metro, work different metro, c" /* entral city */ 4374 * 5 = "Live in metro, work different metro, o" /* utside cc */ 4375 * 6 = "Live in metro, work non-metro" 4376 * 7 = "Live non-metro/mixed, work central cit" /* y */ 4377 * 8 = "Live non-metro/mixed, work metro, not " /* cc */ 4378 * 9 = "Live non-metro/mixed, work non-metro" 4379 *; 4380 *VALUE P198L (default=32) 4381 * 0 = "N/A (+ not reported 1960)" 4382 * 10 = "Auto, truck, or van" 4383 * 11 = "Auto" 4384 * 12 = "Driver" 4385 * 13 = "Passenger" 59 The SAS System 10:39 Tuesday, September 10, 2002 4386 * 14 = "Truck" 4387 * 15 = "Van" 4388 * 20 = "Motorcycle" 4389 * 30 = "Bus or streetcar" 4390 * 31 = "Bus or trolley bus" 4391 * 32 = "Streetcar or trolley car" 4392 * 33 = "Subway or elevated" 4393 * 34 = "Railroad" 4394 * 35 = "Taxicab" 4395 * 36 = "Ferryboat" 4396 * 40 = "Bicycle" 4397 * 50 = "Walked only" 4398 * 60 = "Other" 4399 * 70 = "Worked at home" 4400 *; 4401 *VALUE P199L (default=32) 4402 * 0 = "N/A" 4403 * 1 = "Drives alone" 4404 * 2 = "Carpools:" 4405 * 3 = "Shares driving" 4406 * 4 = "Drives others only" 4407 * 5 = "Passenger only" 4408 *; 4409 *VALUE P200L (default=32) 4410 * 0 = "N/A" 4411 * 1 = "Drives alone" 4412 * 2 = "2 people" 4413 * 3 = "3" 4414 * 4 = "4" 4415 * 5 = "5" 4416 * 6 = "6" 4417 * 7 = "7 or more (1980)" 4418 * 8 = "7-9" 4419 * 9 = "10 or more" 4420 *; 4421 *VALUE P201L (default=32) 4422 * 0 = "N/A" 4423 * 1 = "Jan-Feb-March" 4424 * 2 = "April-May-June" 4425 * 3 = "July-Aug-Sept" 4426 * 4 = "Oct-Nov-Dec" 4427 * 9 = "Missing" 4428 *; 4429 *VALUE P202L (default=32) 4430 * 0 = "N/A" 4431 * 1 = "Jan-Feb-March" 4432 * 2 = "April-May-June" 4433 * 3 = "July-Aug-Sept" 4434 * 4 = "Oct-Nov-Dec" 4435 *; 4436 *VALUE P203L (default=32) 4437 * 0 = "N/A" 4438 * 1 = "No" 4439 * 2 = "Yes" 4440 *; 4441 4442 filename raw pipe "zcat /homes/data/IPUMS-98/data/ip19802.Z "; 4443 * To read in uncompressed file, uncomment INFILE & comment filename & infile lines; 4444 * On a PC, you may need to change the direction of the slashes as in C:\; 4445 *INFILE '/homes/data/IPUMS-98/data/ip1980.' LRECL=1300 PAD END=EOF; 4446 4447 data library.ip1980; WARNING: The BASE Product product with which DATASTEP is associated will expire within 30 days. Please contact your SAS installation representative to have it renewed. 4448 4449 /* RETAIN the HOUSEHOLD variables */ 4450 4451 *RETAIN 4452 4453 RECTYPE 4454 YEAR 4455 DATANUM 4456 SERIAL 4457 NUMPREC 4458 SUBSAMP 4459 HHWT 60 The SAS System 10:39 Tuesday, September 10, 2002 4460 REGION 4461 STATEICP 4462 STATEFIP 4463 URBAN 4464 METRO 4465 METAREAD 4466 CITYD 4467 CITYPOP 4468 SIZEPL 4469 CNTYGP98 4470 URBAREA 4471 URBTYPE 4472 GQ 4473 GQTYPEG 4474 GQTYPED 4475 FARM 4476 OWNERSHG 4477 OWNERSHD 4478 MORTGAGE 4479 MORTGAG2 4480 VALUE 4481 COMMUSE 4482 FARMPROD 4483 ACREPROP 4484 ACREHOUS 4485 MORTOTAL 4486 TAXINCL 4487 INSINCL 4488 PROPTXIN 4489 RENT 4490 RENTGRS 4491 CONDO 4492 COSTELEC 4493 COSTGAS 4494 COSTWATR 4495 COSTFUEL 4496 FTOTINC 4497 HHINCOME 4498 VACANCY 4499 VACELSE 4500 VACBOARD 4501 VACDUR 4502 ACCESS 4503 KITCHEN 4504 ROOMS 4505 PLUMBING 4506 BUILTYR 4507 UNITSADD 4508 UNITSSTR 4509 WATERSRC 4510 SEWAGE 4511 BATHRMS 4512 BEDROOMS 4513 STORIES 4514 ELEVATOR 4515 PHONE 4516 AIRCON 4517 HEATING 4518 FUELCOOK 4519 FUELHEAT 4520 FUELWATR 4521 AUTOS 4522 TRUCKS 4523 NFAMS 4524 NCOUPLES 4525 NMOTHERS 4526 NFATHERS 4527 QACCESS 4528 QACREHOU 4529 QACREPRO 4530 QAIRCON 4531 QAUTOS 4532 QBATHRMS 4533 QBEDROOM 4534 QBUILTYR 4535 QCOMMUSE 61 The SAS System 10:39 Tuesday, September 10, 2002 4536 QCONDO 4537 QCOSTELE 4538 QCOSTFUE 4539 QCOSTGAS 4540 QCOSTWAT 4541 QELEVATO 4542 QFARMPRO 4543 QFUELCOO 4544 QFUELHEA 4545 QFUELWAT 4546 QGQ 4547 QGQTYPE 4548 QHEATING 4549 QINSINCL 4550 QKITCHEN 4551 QMORTGA2 4552 QMORTGAG 4553 QMORTOTA 4554 QOWNERSH 4555 QPHONE 4556 QPLUMBIN 4557 QPROPTX2 4558 QPROPTXI 4559 QROOMS 4560 QSEWAGE 4561 QSTORIES 4562 QTAXINCL 4563 QTRUCKS 4564 QUNITSAD 4565 QUNITSST 4566 QVACANC2 4567 QVACANCY 4568 QVACBOAR 4569 QVACDUR 4570 QVALUE 4571 QWATERSR 4572 4573 ; 4574 4575 *LENGTH 4576 4577 SERIAL 6 4578 HHWT 4 4579 METAREAD 4 4580 CITYD 4 4581 CITYPOP 4 4582 URBAREA 4 4583 VALUE 5 4584 MORTOTAL 4 4585 PROPTXIN 4 4586 RENT 4 4587 RENTGRS 4 4588 COSTELEC 4 4589 COSTGAS 4 4590 COSTWATR 4 4591 COSTFUEL 4 4592 FTOTINC 5 4593 HHINCOME 5 4594 PSERIAL 6 4595 SLWT 4 4596 PERWT 4 4597 RELATED 4 4598 BPLD 4 4599 ANCEST1D 4 4600 ANCEST2D 4 4601 LANGUAGD 4 4602 INCTOT 5 4603 INCWAGE 5 4604 INCBUS 5 4605 INCFARM 5 4606 INCSS 4 4607 INCWELFR 4 4608 INCINVST 5 4609 INCOTHER 4 4610 MIGMET5 4 4611 MIGCITY5 4 62 The SAS System 10:39 Tuesday, September 10, 2002 4612 PWMETRO 4 4613 PWCITY 4 4614 default = 3; 4615 4616 infile raw lrecl = 1300 missover ; 4617 * To read in uncompressed file, uncomment INFILE & comment filename & infile lines; 4618 *INFILE '/homes/data/IPUMS-98/data/ip19802' LRECL=852 missover; 4619 input @1 rectype $1. @; /* Hold the data line */ 4620 *if rectype = 'H' then do; /* HOUSEHOLD RECORDS */ 4621 4622 *INPUT 4623 * 4624 *@1 RECTYPE $1. 4625 *@2 YEAR 2. 4626 *@4 DATANUM 2. 4627 *@6 SERIAL 8. 4628 *@14 NUMPREC 2. 4629 *@16 SUBSAMP 2. 4630 *@18 HHWT 4. 4631 *@33 REGION 2. 4632 *@35 STATEICP 2. 4633 *@37 STATEFIP 2. 4634 *@67 URBAN 1. 4635 *@47 METRO 1. 4636 *@48 METAREAD 4. 4637 *@56 CITYD 4. 4638 *@60 CITYPOP 5. 4639 *@65 SIZEPL 2. 4640 *@39 CNTYGP98 3. 4641 *@68 URBAREA 4. 4642 *@52 URBTYPE 1. 4643 *@72 GQ 1. 4644 *@73 GQTYPEG 1. 4645 *@73 GQTYPED 3. 4646 *@78 FARM 1. 4647 *@80 OWNERSHG 1. 4648 *@80 OWNERSHD 2. 4649 *@82 MORTGAGE 1. 4650 *@83 MORTGAG2 1. 4651 *@89 VALUE 6. 4652 *@95 COMMUSE 1. 4653 *@79 FARMPROD 1. 4654 *@96 ACREPROP 1. 4655 *@97 ACREHOUS 1. 4656 *@84 MORTOTAL 4. 4657 *@98 TAXINCL 1. 4658 *@99 INSINCL 1. 4659 *@100 PROPTXIN 4. 4660 *@106 RENT 4. 4661 *@110 RENTGRS 4. 4662 *@119 CONDO 1. 4663 *@124 COSTELEC 4. 4664 *@128 COSTGAS 4. 4665 *@132 COSTWATR 4. 4666 *@136 COSTFUEL 4. 4667 *@140 FTOTINC 6. 4668 *@151 HHINCOME 6. 4669 *@146 VACANCY 1. 4670 *@147 VACELSE 1. 4671 *@148 VACBOARD 1. 4672 *@149 VACDUR 1. 4673 *@157 ACCESS 1. 4674 *@158 KITCHEN 1. 4675 *@159 ROOMS 1. 4676 *@160 PLUMBING 2. 4677 *@166 BUILTYR 1. 4678 *@167 UNITSADD 2. 4679 *@169 UNITSSTR 2. 4680 *@171 WATERSRC 1. 4681 *@172 SEWAGE 1. 4682 *@173 BATHRMS 1. 4683 *@174 BEDROOMS 1. 4684 *@175 STORIES 1. 4685 *@176 ELEVATOR 1. 4686 *@177 PHONE 1. 4687 *@183 AIRCON 1. 63 The SAS System 10:39 Tuesday, September 10, 2002 4688 *@184 HEATING 2. 4689 *@186 FUELCOOK 1. 4690 *@187 FUELHEAT 1. 4691 *@188 FUELWATR 1. 4692 *@189 AUTOS 1. 4693 *@182 TRUCKS 1. 4694 *@190 NFAMS 2. 4695 *@192 NCOUPLES 1. 4696 *@193 NMOTHERS 1. 4697 *@194 NFATHERS 1. 4698 *@195 QACCESS 1. 4699 *@196 QACREHOU 1. 4700 *@197 QACREPRO 1. 4701 *@198 QAIRCON 1. 4702 *@199 QAUTOS 1. 4703 *@201 QBATHRMS 1. 4704 *@202 QBEDROOM 1. 4705 *@203 QBUILTYR 1. 4706 *@204 QCOMMUSE 1. 4707 *@205 QCONDO 1. 4708 *@207 QCOSTELE 1. 4709 *@209 QCOSTFUE 1. 4710 *@210 QCOSTGAS 1. 4711 *@212 QCOSTWAT 1. 4712 *@213 QELEVATO 1. 4713 *@214 QFARMPRO 1. 4714 *@216 QFUELCOO 1. 4715 *@217 QFUELHEA 1. 4716 *@218 QFUELWAT 1. 4717 *@219 QGQ 1. 4718 *@241 QGQTYPE 1. 4719 *@220 QHEATING 1. 4720 *@200 QINSINCL 1. 4721 *@222 QKITCHEN 1. 4722 *@206 QMORTGA2 1. 4723 *@208 QMORTGAG 1. 4724 *@211 QMORTOTA 1. 4725 *@223 QOWNERSH 1. 4726 *@224 QPHONE 1. 4727 *@221 QPLUMBIN 1. 4728 *@225 QPROPTX2 1. 4729 *@226 QPROPTXI 1. 4730 *@228 QROOMS 1. 4731 *@229 QSEWAGE 1. 4732 *@231 QSTORIES 1. 4733 *@227 QTAXINCL 1. 4734 *@230 QTRUCKS 1. 4735 *@236 QUNITSAD 1. 4736 *@237 QUNITSST 1. 4737 *@232 QVACANC2 1. 4738 *@238 QVACANCY 1. 4739 *@233 QVACBOAR 1. 4740 *@215 QVACDUR 1. 4741 *@239 QVALUE 1. 4742 *@234 QWATERSR 1. 4743 *; 4744 *end; 4745 4746 if rectype = 'P' then do; /* PERSON RECORDS */ 4747 4748 INPUT 4749 4750 @1 PRECTYPE $1. 4751 @2 PYEAR 2. 4752 /* 4753 @4 PDATANUM 2. 4754 @6 PSERIAL 8. 4755 @14 PERNUM 2. 4756 */ 4757 @16 SLWT 4. 4758 @20 PERWT 4. 4759 /* 4760 @26 MOMLOC 2. 4761 @28 STEPMOM 1. 4762 @29 MOMRULE 1. 4763 @30 POPLOC 2. 64 The SAS System 10:39 Tuesday, September 10, 2002 4764 @32 STEPPOP 1. 4765 @33 POPRULE 1. 4766 @34 SPLOC 2. 4767 @36 SPRULE 1. 4768 @37 FAMSIZE 2. 4769 @39 NCHILD 1. 4770 @40 NCHLT5 1. 4771 @41 FAMUNIT 2. 4772 @43 ELDCH 2. 4773 @45 YNGCH 2. 4774 @47 NSIBS 1. 4775 @48 RELATEG 2. 4776 @48 RELATED 4. 4777 */ 4778 @52 AGE 3. 4779 @55 SEX 1. 4780 @56 RACEG 1. 4781 @56 RACED 3. 4782 /* 4783 @59 MARST 1. 4784 @60 AGEMARR 2. 4785 @62 MARRNO 1. 4786 @63 CHBORN 2. 4787 @67 BPLG 3. 4788 @67 BPLD 5. 4789 @72 ANCEST1G 3. 4790 @72 ANCEST1D 4. 4791 @77 ANCEST2G 3. 4792 @77 ANCEST2D 4. 4793 @83 CITIZEN 1. 4794 @87 YRIMMIG 3. 4795 @90 YRSINUSA 2. 4796 @104 LANGUAGG 2. 4797 @104 LANGUAGD 4. 4798 @108 SPEAKENG 1. 4799 @84 HISPANG 1. 4800 @84 HISPAND 3. 4801 @109 SPANNAME 1. 4802 @110 SCHOOL 1. 4803 @114 EDUCREC 1. 4804 @111 HIGRADEG 2. 4805 @111 HIGRADED 3. 4806 @115 SCHLTYPE 1. 4807 @116 EMPSTATG 1. 4808 @116 EMPSTATD 2. 4809 @118 LABFORCE 1. 4810 @122 OCC 3. 4811 @119 OCC1950 3. 4812 @125 OCCSCORE 2. 4813 @127 SEI 2. 4814 @132 IND 3. 4815 @129 IND1950 3. 4816 @135 CLASSWKG 1. 4817 @135 CLASSWKD 2. 4818 @137 WKSWORK1 2. 4819 @139 WKSWORK2 1. 4820 @140 HRSWORK1 2. 4821 @142 HRSWORK2 1. 4822 @143 UHRSWORK 2. 4823 @149 QTRUNEMP 1. 4824 @147 WKSUNEMP 2. 4825 @145 YRLASTWK 2. 4826 @151 ABSENT 1. 4827 @152 LOOKING 1. 4828 @153 AVAILBLE 1. 4829 @150 WORKEDYR 1. 4830 @154 INCTOT 6. 4831 @160 INCWAGE 6. 4832 @169 INCBUS 6. 4833 @175 INCFARM 6. 4834 @181 INCSS 5. 4835 @186 INCWELFR 5. 4836 @191 INCINVST 6. 4837 @208 INCOTHER 5. 4838 @166 POVERTY 3. 4839 @213 MIGRAT5G 1. 65 The SAS System 10:39 Tuesday, September 10, 2002 4840 @213 MIGRAT5D 2. 4841 @215 MIGPLAC5 3. 4842 @218 MIGMET5 4. 4843 @222 MIGTYPE5 1. 4844 @223 MIGCITY5 4. 4845 @230 MIGCOGRP 3. 4846 @233 SAMEMET5 1. 4847 @235 MOVEDIN 1. 4848 @236 MIGSAMP 1. 4849 @227 WORK5YR 1. 4850 @228 MILIT5YR 1. 4851 @229 COLL5YR 1. 4852 @246 DISABWRK 1. 4853 @247 DISABTRN 1. 4854 @249 VETSTAT 1. 4855 @251 VET75X80 1. 4856 @252 VETVIETN 1. 4857 @255 VET55X64 1. 4858 @256 VETKOREA 1. 4859 @257 VETWWII 1. 4860 @250 VETWWI 1. 4861 @258 VETOTHER 1. 4862 @239 PWSTATE2 2. 4863 @270 PWMETRO 4. 4864 @274 PWCITY 4. 4865 @238 PWTYPE 1. 4866 @244 PWURBTYP 1. 4867 @245 PWSIZE 1. 4868 @241 PWCNTYGP 3. 4869 @237 PWMET98 1. 4870 @259 TRANWORK 2. 4871 @261 CARPOOL 1. 4872 @262 RIDERS 1. 4873 @263 TRANTIME 2. 4874 @269 BIRTHQTR 1. 4875 @65 MARRQTR 1. 4876 @248 WIDOW 1. 4877 @279 QAGE 1. 4878 @278 QAGEMARR 1. 4879 @280 QANCEST1 1. 4880 @281 QANCEST2 1. 4881 @282 QBIRTHMO 1. 4882 @283 QBPL 1. 4883 @284 QCARPOOL 1. 4884 @285 QCHBORN 1. 4885 @286 QCITIZEN 1. 4886 @287 QCLASSWK 1. 4887 @303 QCOLL5YR 1. 4888 @289 QDISABTR 1. 4889 @290 QDISABWR 1. 4890 @292 QEDUC 1. 4891 @291 QEMPSTAT 1. 4892 @293 QHISPAN 1. 4893 @294 QHRSWORK 1. 4894 @295 QINCBUS 1. 4895 @296 QINCFARM 1. 4896 @297 QINCINVS 1. 4897 @298 QINCOTHE 1. 4898 @299 QINCSS 1. 4899 @300 QINCWAGE 1. 4900 @301 QINCWELF 1. 4901 @302 QIND 1. 4902 @288 QLANQUAG 1. 4903 @304 QMARRNO 1. 4904 @305 QMARRQTR 1. 4905 @306 QMARST 1. 4906 @307 QMIGCOGR 1. 4907 @308 QMIGPLC5 1. 4908 @309 QMIGRAT5 1. 4909 @311 QMILIT5Y 1. 4910 @312 QMOVEDIN 1. 4911 @314 QOCC 1. 4912 @315 QQTRUNEM 1. 4913 @316 QRACE 1. 4914 @313 QRACE2 1. 4915 @317 QRELATE 1. 66 The SAS System 10:39 Tuesday, September 10, 2002 4916 @318 QRELATE2 1. 4917 @319 QRIDERS 1. 4918 @320 QSAMMET5 1. 4919 @322 QSCHOOL 1. 4920 @323 QSEX 1. 4921 @324 QSPEAKEN 1. 4922 @325 QTRANTIM 1. 4923 @326 QTRANWOR 1. 4924 @328 QVETPER 1. 4925 @329 QVETSTAT 1. 4926 @330 QWIDOW 1. 4927 @331 QWKSWORK 1. 4928 @321 QWORK5YR 1. 4929 @332 QWORKEDY 1. 4930 @333 QYRIMM 1. 4931 @334 QYRLASTW 1. 4932 */ 4933 ; 4934 4935 output; 4936 end; 4937 *drop rectype; 4938 * convert 2-digit second digit of century and decade digit to census year; 4939 if (75 < year < 100 ) then year = ((year*10)+1000) ; 4940 else if (year < 75 ) then year = (2000+year); 4941 4942 4943 *See the codebook for more detailed variable descriptions; 4944 *LABEL 4945 * REGION = "Census region and division" 4946 * STATEICP = "State (ICPSR code)" 4947 * STATEFIP = "State (FIPS code)" 4948 * URBAN = "Urban/rural status" 4949 * METRO = "Metropolitan status" 4950 * METAREAD = "Metropolitan status--detailed" 4951 * CITYD = "City--detailed" 4952 * SIZEPL = "Size of place" 4953 * GQ = "Group quarters status" 4954 * GQTYPED = "Group quarters type--detailed" 4955 * FARM = "Farm status" 4956 * OWNERSHD = "Ownership of dwelling--detailed" 4957 * MORTGAGE = "Mortgage status" 4958 * MORTGAG2 = "Second mortgage status" 4959 * COMMUSE = "Commercial use" 4960 * ACREPROP = "Acreage of property" 4961 * ACREHOUS = "House acreage" 4962 * TAXINCL = "Mortgage payment includes real estate " /* tax */ 4963 * INSINCL = "Mortgage include prop. insur." 4964 * CONDO = "Condominium status" 4965 * VACANCY = "Vacancy status" 4966 * VACELSE = "Vacant, usual home elsewhere" 4967 * VACBOARD = "Boarded-up status" 4968 * VACDUR = "Duration of vacancy" 4969 * ACCESS = "Access to unit" 4970 * KITCHEN = "Kitchen facilities" 4971 * ROOMS = "Number of rooms" 4972 * PLUMBING = "Plumbing facilities" 4973 * BUILTYR = "Age of structure" 4974 * UNITSADD = "Units at address" 4975 * UNITSSTR = "Units in structure" 4976 * WATERSRC = "Source of water" 4977 * SEWAGE = "Sewage disposal" 4978 * BATHRMS = "Bathrooms" 4979 * BEDROOMS = "Bedrooms" 4980 * STORIES = "Stories in structure" 4981 * ELEVATOR = "Elevator in structure" 4982 * PHONE = "Telephone availability" 4983 * AIRCON = "Air conditioning" 4984 * HEATING = "Heating equipment" 4985 * FUELCOOK = "Cooking fuel" 4986 * FUELHEAT = "Home heating fuel" 4987 * FUELWATR = "Water heating fuel" 4988 * AUTOS = "Autos available" 4989 * TRUCKS = "Trucks and vans available" 4990 * RELATED = "Relationship to hh head--detailed" 4991 * SEX = "Sex" 67 The SAS System 10:39 Tuesday, September 10, 2002 4992 * RACED = "Race--detailed" 4993 * MARST = "Marital status" 4994 * MARRNO = "Times married" 4995 * CHBORN = "Children ever born" 4996 * BPLD = "Birthplace--detailed" 4997 * ANCEST1D = "Ancestry, 1st response--detailed" 4998 * ANCEST2D = "Ancestry, 2nd response--detailed" 4999 * CITIZEN = "Citizenship" 5000 * LANGUAGD = "Language spoken--detailed" 5001 * SPEAKENG = "Speaks English" 5002 * HISPAND = "Hispanic origin--detailed" 5003 * SPANNAME = "Spanish surname" 5004 * SCHOOL = "School attendance" 5005 * EDUCREC = "Educational attainment, recode" 5006 * HIGRADED = "Highest grade of schooling--general" 5007 * SCHLTYPE = "Public or private school" 5008 * EMPSTATD = "Employment status--detailed" 5009 * LABFORCE = "Labor force status" 5010 * OCC1950 = "Occupation, 1950 basis" 5011 * IND1950 = "Industry, 1950 basis" 5012 * CLASSWKD = "Class of worker--detailed" 5013 * WKSWORK2 = "Weeks worked last year, intervalled" 5014 * HRSWORK2 = "Hours work last week, intervalled" 5015 * QTRUNEMP = "Quarters unemployed last year" 5016 * YRLASTWK = "Year last worked" 5017 * ABSENT = "Absent from work" 5018 * LOOKING = "Looking for work" 5019 * AVAILBLE = "Available for work" 5020 * WORKEDYR = "Worked last year" 5021 * MIGRAT5D = "Migration status, 5 yrs--detailed" 5022 * MIGPLAC5 = "State/country resid. 5 yrs ago" 5023 * MIGTYPE5 = "Metro status 5 yrs ago" 5024 * SAMEMET5 = "Lived same met area 5 yrs ago" 5025 * MIGSAMP = "1980 migration sample" 5026 * WORK5YR = "Working 5 yrs ago" 5027 * MILIT5YR = "Armed forces 5 yrs ago" 5028 * COLL5YR = "College 5 yrs ago" 5029 * DISABWRK = "Work disability" 5030 * DISABTRN = "Public transport disability" 5031 * VETSTAT = "Veteran status" 5032 * VET75X80 = "Veteran, served 1970-1980" 5033 * VETVIETN = "Veteran, served Vietnam era" 5034 * VET55X64 = "Veteran, served 1955-1964" 5035 * VETKOREA = "Veteran, Korean conflict" 5036 * VETWWII = "Veteran, served WWII era" 5037 * VETWWI = "Veteran, served WWI era" 5038 * VETOTHER = "Veteran of other period" 5039 * PWSTATE2 = "Place work: state, 1980-1990" 5040 * PWTYPE = "Place work: metro status" 5041 * PWMET98 = "Place work: metro status, 1980" 5042 * TRANWORK = "Means of transport to work" 5043 * CARPOOL = "Carpooling" 5044 * RIDERS = "Vehicle occupancy" 5045 * BIRTHQTR = "Quarter of birth" 5046 * MARRQTR = "Quarter of first marriage" 5047 * WIDOW = "Marriage ended by death" 5048 *; 5049 NOTE: The infile RAW is: Pipe command="zcat /homes/data/IPUMS-98/data/ip19802.Z " NOTE: 3209534 records were read from the infile RAW. The minimum record length was 334. The maximum record length was 334. NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 3209534 at 4940:39 NOTE: The data set LIBRARY.IP1980 has 2267320 observations and 10 variables. NOTE: DATA statement used: real time 1:47.240 cpu time 50.942 seconds 5050 proc print data=library.ip1980 (obs=6); WARNING: The BASE Product product with which PRINT is associated will expire within 30 days. Please contact your SAS installation 68 The SAS System 10:39 Tuesday, September 10, 2002 representative to have it renewed. 5051 NOTE: The PROCEDURE PRINT printed page 1. NOTE: PROCEDURE PRINT used: real time 0.040 seconds cpu time 0.006 seconds 5052 proc means data=library.ip1980 sum n mean stdev; WARNING: The BASE Product product with which MEANS is associated will expire within 30 days. Please contact your SAS installation representative to have it renewed. 5052 proc means data=library.ip1980 sum n mean stdev; _____ 1 WARNING 1-322: Assuming the symbol STD was misspelled as STDEV. 5053 weight perwt; NOTE: The PROCEDURE MEANS printed page 2. NOTE: PROCEDURE MEANS used: real time 18.540 seconds cpu time 10.558 seconds 5054 proc means data=library.ip1980 sum n mean stdev; WARNING: The BASE Product product with which MEANS is associated will expire within 30 days. Please contact your SAS installation representative to have it renewed. 5054 proc means data=library.ip1980 sum n mean stdev; _____ 1 WARNING 1-322: Assuming the symbol STD was misspelled as STDEV. 5055 weight slwt; NOTE: The PROCEDURE MEANS printed page 3. NOTE: PROCEDURE MEANS used: real time 19.360 seconds cpu time 10.163 seconds 5056 proc means data=library.ip1980 sum n mean stdev; WARNING: The BASE Product product with which MEANS is associated will expire within 30 days. Please contact your SAS installation representative to have it renewed. 5056 proc means data=library.ip1980 sum n mean stdev; _____ 1 WARNING 1-322: Assuming the symbol STD was misspelled as STDEV. 5057 NOTE: The PROCEDURE MEANS printed page 4. NOTE: PROCEDURE MEANS used: real time 20.770 seconds cpu time 11.214 seconds 5058 proc contents data=library.ip1980; WARNING: The BASE Product product with which CONTENTS is associated will expire within 30 days. Please contact your SAS installation representative to have it renewed. NOTE: The PROCEDURE CONTENTS printed page 5. NOTE: PROCEDURE CONTENTS used: real time 0.030 seconds cpu time 0.013 seconds NOTE: The SAS System used: real time 2:46.420 cpu time 1:23.150 NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414