1 The SAS System 13:09 Wednesday, April 16, 2003 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. This sas license runs from Aug 15, 2002 to Aug 15, 2003 with a grace period up till Sep 15, 2003. NOTE: AUTOEXEC processing beginning; file is /usr/sunos/local/sas612/autoexec.sas. NOTE: SAS initialization used: real time 0.180 seconds cpu time 0.130 seconds NOTE: AUTOEXEC processing completed. 1 2 /*------------------------------------------------------------------------------------*/ 3 /*by Jean Roth Wed Apr 16 13:08:43 EDT 2003 4 This program reads the 1992 SIPP Wave 2 Topical Module Data File 5 Please report errors to jroth@nber.org 6 Six steps: 7 (1) Uncomment the 'options compress=yes' statement if desired to save space 8 (2) Uncomment 'LENGTH' statement if desired to save space 9 (3) Specify output directories in 'libname' statements 10 (4) Specify the input file name/location in the 'filename' statement 11 (5) On a PC, use backslashes as in C:\ 12 (6) Read in the compressed or uncompressed raw data file. See the 13 'filename' and 'INFILE' statements. 14 Other changes may be user and platform specific. 15 NOTE: A value of -1 (or -1/# of implied decimals) indicates 'Not in Universe' */ 16 /*------------------------------------------------------------------------------------*/ 17 18 options obs=100; 19 *options compress=yes; 20 *Choose compress=yes to save space ; 21 *Choose compress=no if converting to another package using transfer software ; 22 *options pagesize=59 linesize=72; 23 24 /*------------------------------------------------------------------------------------*/ 25 26 27 libname library './'; NOTE: Libref LIBRARY was successfully assigned as follows: Engine: V612 Physical Name: /homes/nber/jroth/text 28 29 *See the codebook for more detail; 30 PROC FORMAT cntlout=library.fsp92t2; 31 32 /* 33 The PROC FORMAT statement will store the formats in a sas data set called fsip92t2 34 To use the stored formats in a subsequent program, include something like this: 35 36 proc format cntlin=library.fsp92t2; 37 PROC freq; 38 tables pesex ; 39 format pesex P135L.; 40 41 For more information, consult the SAS Procudures Guide section of PROC FORMAT 42 */ 43 ; 44 VALUE ROTATION (default=32) 45 1 = "Interview month: September 1992" 46 2 = "Interview month: June 1992" 47 3 = "Interview month: July 1992" 48 4 = "Interview month: August 1992" 49 ; NOTE: Format ROTATION has been output. 50 VALUE ITEM36B (default=32) 51 1 = "Interviewed" 52 2 = "No one home" 53 3 = "Temporarily absent" 2 The SAS System 13:09 Wednesday, April 16, 2003 54 4 = "Refused" 55 5 = "Unable to locate" 56 6 = "Other Type A" 57 23 = "Entire household deceased," 58 24 = "Moved, address unknown" 59 25 = "Moved within country beyond" 60 26 = "All sample persons relisted on" 61 28 = "Merged households across panels" 62 ; NOTE: Format ITEM36B has been output. 63 VALUE INTVW (default=32) 64 0 = "Not applicable (children" 65 1 = "Interview (self)" 66 2 = "Interview (proxy)" 67 3 = "Noninterview - Type Z refusal" 68 4 = "Noninterview - Type Z other" 69 ; NOTE: Format INTVW has been output. 70 VALUE PPMIS1L (default=32) 71 1 = "Interview" 72 2 = "Noninterview" 73 ; NOTE: Format PPMIS1L has been output. 74 VALUE PPMIS2L (default=32) 75 1 = "Interview" 76 2 = "Noninterview" 77 ; NOTE: Format PPMIS2L has been output. 78 VALUE PPMIS3L (default=32) 79 1 = "Interview" 80 2 = "Noninterview" 81 ; NOTE: Format PPMIS3L has been output. 82 VALUE PPMIS4L (default=32) 83 1 = "Interview" 84 2 = "Noninterview" 85 ; NOTE: Format PPMIS4L has been output. 86 VALUE PPMIS5L (default=32) 87 1 = "Interview" 88 2 = "Noninterview" 89 ; NOTE: Format PPMIS5L has been output. 90 VALUE RRP (default=32) 91 0 = "Not a sample person in this" 92 1 = "Household reference person," 93 2 = "Household reference person" 94 3 = "Spouse of household reference" 95 4 = "Child of household reference" 96 5 = "Other relative of household" 97 6 = "Non-relative of household" 98 7 = "Non-relative of household" 99 ; NOTE: Format RRP has been output. 100 VALUE AGE (default=32) 101 0 = "Less than 1 full year" 102 1 = "1 year" 103 ; NOTE: Format AGE has been output. 104 VALUE SEX (default=32) 105 1 = "Male" 106 2 = "Female" 107 ; NOTE: Format SEX has been output. 108 VALUE RACE (default=32) 109 1 = "White" 110 2 = "Black" 111 3 = "American Indian, Eskimo or Aleut" 112 4 = "Asian or Pacific Islander" 113 ; NOTE: Format RACE has been output. 114 VALUE MS (default=32) 115 0 = "Not a sample person in this" 116 1 = "Married, spouse present" 117 2 = "Married, spouse absent" 118 3 = "Widowed" 3 The SAS System 13:09 Wednesday, April 16, 2003 119 4 = "Divorced" 120 5 = "Separated" 121 6 = "Never married" 122 ; NOTE: Format MS has been output. 123 VALUE PNSP (default=32) 124 0 = "Not a sample person in this" 125 999 = "Not applicable" 126 ; NOTE: Format PNSP has been output. 127 VALUE PNPT (default=32) 128 0 = "Not a sample person in this" 129 999 = "Not applicable" 130 ; NOTE: Format PNPT has been output. 131 VALUE HIGRADE (default=32) 132 0 = "Not applicable if under 15," 133 ; NOTE: Format HIGRADE has been output. 134 VALUE GRDCMPL (default=32) 135 0 = "Not applicable" 136 1 = "Yes" 137 2 = "No" 138 ; NOTE: Format GRDCMPL has been output. 139 VALUE ETHNICTY (default=32) 140 1 = "German" 141 2 = "English" 142 3 = "Irish" 143 4 = "French" 144 5 = "Italian" 145 6 = "Scottish" 146 7 = "Polish" 147 8 = "Dutch" 148 9 = "Swedish" 149 10 = "Norwegian" 150 11 = "Russian" 151 12 = "Ukrainian" 152 13 = "Welsh" 153 14 = "Mexican-American" 154 15 = "Chicano" 155 16 = "Mexican" 156 17 = "Puerto Rican" 157 18 = "Cuban" 158 19 = "Central or South American" 159 20 = "Other Spanish" 160 21 = "Afro-American (Black or Negro)" 161 30 = "Another group not listed" 162 39 = "Don't know" 163 ; NOTE: Format ETHNICTY has been output. 164 VALUE TM9266L (default=32) 165 0 = "Not in universe" 166 1 = "One person HH" 167 2 = "Two person HH consisting of" 168 3 = "Two person HH consisting of" 169 4 = "Other" 170 ; NOTE: Format TM9266L has been output. 171 VALUE TM9300L (default=32) 172 0 = "Not in universe" 173 ; NOTE: Format TM9300L has been output. 174 VALUE TM9330L (default=32) 175 0 = "Not in universe" 176 ; NOTE: Format TM9330L has been output. 177 VALUE TM9332L (default=32) 178 1 = "Husband" 179 2 = "Wife" 180 10 = "Natural father(biological)" 181 11 = "Stepfather" 182 12 = "Adoptive father" 183 13 = "Foster father" 184 14 = "Natural mother" 185 15 = "Stepmother" 4 The SAS System 13:09 Wednesday, April 16, 2003 186 16 = "Adoptive mother" 187 17 = "Foster mother" 188 18 = "Unknown father type" 189 19 = "Unknown mother type" 190 20 = "Natural son" 191 21 = "Stepson" 192 22 = "Adopted son" 193 23 = "Foster son" 194 24 = "Natural daughter" 195 25 = "Stepdaughter" 196 26 = "Adopted daughter" 197 27 = "Foster daughter" 198 28 = "Unknown son type" 199 29 = "Unknown daughter type" 200 30 = "Full brother" 201 31 = "Half brother" 202 32 = "Stepbrother" 203 33 = "Adoptive brother" 204 34 = "Full sister" 205 35 = "Half sister" 206 36 = "Stepsister" 207 37 = "Adoptive sister" 208 38 = "Unknown brother type" 209 39 = "Unknown sister type" 210 40 = "Grandfather" 211 41 = "Grandmother" 212 42 = "Grandson" 213 43 = "Granddaughter" 214 44 = "Uncle" 215 45 = "Aunt" 216 46 = "Nephew" 217 47 = "Niece" 218 50 = "Father-in-law" 219 51 = "Mother-in-law" 220 52 = "Son-in-law" 221 53 = "Daughter-in-law" 222 54 = "Brother-in-law" 223 55 = "Sister-in-law" 224 60 = "Other relative (Cousin, etc.)" 225 70 = "Nonrelative" 226 88 = "Member of column with no" 227 98 = "Not found" 228 99 = "No response" 229 ; NOTE: Format TM9332L has been output. 230 VALUE TM9360L (default=32) 231 0 = "Not in universe" 232 ; NOTE: Format TM9360L has been output. 233 VALUE TM9390L (default=32) 234 0 = "Not in universe" 235 ; NOTE: Format TM9390L has been output. 236 VALUE TM9420L (default=32) 237 0 = "Not in universe" 238 ; NOTE: Format TM9420L has been output. 239 VALUE TM9450L (default=32) 240 0 = "Not in universe" 241 ; NOTE: Format TM9450L has been output. 242 VALUE TM9480L (default=32) 243 0 = "Not in universe" 244 ; NOTE: Format TM9480L has been output. 245 VALUE TM9510L (default=32) 246 0 = "Not in universe" 247 ; NOTE: Format TM9510L has been output. 248 VALUE TM9540L (default=32) 249 0 = "Not in universe" 250 ; NOTE: Format TM9540L has been output. 251 VALUE TM9570L (default=32) 252 0 = "Not in universe" 253 ; 5 The SAS System 13:09 Wednesday, April 16, 2003 NOTE: Format TM9570L has been output. 254 VALUE TM9600L (default=32) 255 0 = "Not in universe" 256 ; NOTE: Format TM9600L has been output. 257 VALUE TM9630L (default=32) 258 0 = "Not in universe" 259 ; NOTE: Format TM9630L has been output. 260 VALUE TM9660L (default=32) 261 0 = "Not in universe" 262 ; NOTE: Format TM9660L has been output. 263 VALUE TM9690L (default=32) 264 0 = "Not in universe" 265 ; NOTE: Format TM9690L has been output. 266 VALUE TM8300L (default=32) 267 0 = "Not applicable, 15 or under," 268 2 = "16 to 67" 269 ; NOTE: Format TM8300L has been output. 270 VALUE TM8302L (default=32) 271 0 = "Not applicable" 272 1 = "Yes - skip To TM8306" 273 2 = "No" 274 ; NOTE: Format TM8302L has been output. 275 VALUE TM8304L (default=32) 276 0 = "Not applicable" 277 1 = "Yes" 278 2 = "No - skip To TM8308" 279 ; NOTE: Format TM8304L has been output. 280 VALUE TM8306L (default=32) 281 0 = "Not applicable" 282 1 = "Yes - skip To TM8310 or TM8314" 283 2 = "No - end of section" 284 ; NOTE: Format TM8306L has been output. 285 VALUE TM8308L (default=32) 286 0 = "Not applicable" 287 1 = "Yes - skip to TM8310" 288 2 = "No - end of section" 289 ; NOTE: Format TM8308L has been output. 290 VALUE TM8310L (default=32) 291 -1 = "Don't know" 292 0 = "Not applicable" 293 ; NOTE: Format TM8310L has been output. 294 VALUE TM8312L (default=32) 295 0 = "Not applicable" 296 ; NOTE: Format TM8312L has been output. 297 VALUE TM8314L (default=32) 298 -5 = "Person became limited after" 299 -3 = "Person was limited before" 300 0 = "Not applicable" 301 ; NOTE: Format TM8314L has been output. 302 VALUE TM8316L (default=32) 303 0 = "Not applicable" 304 1 = "Yes - skip To TM8324" 305 2 = "No - skip to TM8318 or TM8322" 306 ; NOTE: Format TM8316L has been output. 307 VALUE TM8318L (default=32) 308 0 = "Not applicable" 309 ; NOTE: Format TM8318L has been output. 310 VALUE TM8320L (default=32) 311 0 = "Not applicable" 312 ; NOTE: Format TM8320L has been output. 313 VALUE TM8322L (default=32) 6 The SAS System 13:09 Wednesday, April 16, 2003 314 -3 = "Had never been employed before" 315 0 = "Not applicable" 316 ; NOTE: Format TM8322L has been output. 317 VALUE TM8324L (default=32) 318 0 = "Not applicable" 319 1 = "Arthritis or rheumatism" 320 2 = "Autism" 321 3 = "Back or spine problems (including" 322 4 = "Blindness or vision problems" 323 5 = "Cancer" 324 6 = "Cerebral palsy" 325 7 = "Deafness or serious trouble" 326 8 = "Diabetes" 327 9 = "Epilepsy" 328 10 = "Head or spinal cord injury" 329 11 = "Heart trouble (including heart" 330 12 = "Hernia or rupture" 331 13 = "High blood pressure(hypertension)" 332 14 = "Kidney stones or chronic kidney" 333 15 = "Lung or respiratory trouble" 334 16 = "Mental illness" 335 17 = "Mental retardation" 336 18 = "Missing legs, feet, arms, hands," 337 19 = "Nervous or emotional problems, or" 338 20 = "Paralysis of any kind" 339 21 = "Senility (Alzheimer's Disease)" 340 22 = "Stiffness or deformity of the" 341 23 = "Stomach trouble (including ulcers," 342 24 = "Stroke" 343 25 = "Thyroid trouble or goiter" 344 26 = "Tumor, cyst or growth" 345 27 = "Other" 346 ; NOTE: Format TM8324L has been output. 347 VALUE TM8326L (default=32) 348 0 = "Not applicable" 349 1 = "Yes" 350 2 = "No - skip to TM8330" 351 ; NOTE: Format TM8326L has been output. 352 VALUE TM8328L (default=32) 353 0 = "Not applicable" 354 1 = "On the job" 355 2 = "During service in the Armed" 356 3 = "In the home" 357 4 = "Somewhere else" 358 ; NOTE: Format TM8328L has been output. 359 VALUE TM8330L (default=32) 360 0 = "Not applicable" 361 1 = "Yes - skip to TM8340" 362 2 = "No" 363 ; NOTE: Format TM8330L has been output. 364 VALUE TM8332L (default=32) 365 0 = "Not applicable" 366 1 = "Yes - skip to TM8334 or TM8338" 367 2 = "No - skip to TM8342" 368 ; NOTE: Format TM8332L has been output. 369 VALUE TM8334L (default=32) 370 0 = "Not applicable" 371 ; NOTE: Format TM8334L has been output. 372 VALUE TM8336L (default=32) 373 0 = "Not applicable" 374 ; NOTE: Format TM8336L has been output. 375 VALUE TM8338L (default=32) 376 -3 = "Has never been able to work at" 377 0 = "Not applicable" 378 ; NOTE: Format TM8338L has been output. 379 VALUE TM8340L (default=32) 380 0 = "Not applicable" 7 The SAS System 13:09 Wednesday, April 16, 2003 381 1 = "Yes -skip to TM8344" 382 2 = "No" 383 ; NOTE: Format TM8340L has been output. 384 VALUE TM8342L (default=32) 385 0 = "Not applicable" 386 1 = "Full-time" 387 2 = "Part-time" 388 3 = "Not able to work - end of section" 389 ; NOTE: Format TM8342L has been output. 390 VALUE TM8344L (default=32) 391 0 = "Not applicable" 392 1 = "Regularly" 393 2 = "Only occasionally or" 394 3 = "Not able to work - end of" 395 ; NOTE: Format TM8344L has been output. 396 VALUE TM8346L (default=32) 397 0 = "Not applicable" 398 1 = "Yes, able to do same kind of" 399 2 = "No, not able to do same kind of" 400 3 = "Did not work before limitation" 401 ; NOTE: Format TM8346L has been output. 402 VALUE IMP8306L (default=32) 403 0 = "Not imputed" 404 1 = "Imputed" 405 ; NOTE: Format IMP8306L has been output. 406 VALUE IMP8308L (default=32) 407 0 = "Not imputed" 408 1 = "Imputed" 409 ; NOTE: Format IMP8308L has been output. 410 VALUE IMP8310L (default=32) 411 0 = "Not imputed" 412 1 = "Imputed" 413 ; NOTE: Format IMP8310L has been output. 414 VALUE IMP1214L (default=32) 415 0 = "Not imputed" 416 1 = "Imputed" 417 ; NOTE: Format IMP1214L has been output. 418 VALUE IMP8316L (default=32) 419 0 = "Not imputed" 420 1 = "Imputed" 421 ; NOTE: Format IMP8316L has been output. 422 VALUE IMP8318L (default=32) 423 0 = "Not imputed" 424 1 = "Imputed" 425 ; NOTE: Format IMP8318L has been output. 426 VALUE IMP2022L (default=32) 427 0 = "Not imputed" 428 1 = "Imputed" 429 ; NOTE: Format IMP2022L has been output. 430 VALUE IMP8324L (default=32) 431 0 = "Not imputed" 432 1 = "Imputed" 433 ; NOTE: Format IMP8324L has been output. 434 VALUE IMP8326L (default=32) 435 0 = "Not imputed" 436 1 = "Imputed" 437 ; NOTE: Format IMP8326L has been output. 438 VALUE IMP8328L (default=32) 439 0 = "Not imputed" 440 1 = "Imputed" 441 ; NOTE: Format IMP8328L has been output. 442 VALUE IMP8332L (default=32) 8 The SAS System 13:09 Wednesday, April 16, 2003 443 0 = "Not imputed" 444 1 = "Imputed" 445 ; NOTE: Format IMP8332L has been output. 446 VALUE IMP8334L (default=32) 447 0 = "Not imputed" 448 1 = "Imputed" 449 ; NOTE: Format IMP8334L has been output. 450 VALUE IMP3438L (default=32) 451 0 = "Not imputed" 452 1 = "Imputed" 453 ; NOTE: Format IMP3438L has been output. 454 VALUE IMP8342L (default=32) 455 0 = "Not imputed" 456 1 = "Imputed" 457 ; NOTE: Format IMP8342L has been output. 458 VALUE IMP8344L (default=32) 459 0 = "Not imputed" 460 1 = "Imputed" 461 ; NOTE: Format IMP8344L has been output. 462 VALUE IMP8346L (default=32) 463 0 = "Not imputed" 464 1 = "Imputed" 465 ; NOTE: Format IMP8346L has been output. 466 VALUE TM8400L (default=32) 467 0 = "Not applicable" 468 1 = "No - skip to TM8402 or TM8406" 469 2 = "Yes - skip to TM8410" 470 ; NOTE: Format TM8400L has been output. 471 VALUE TM8402L (default=32) 472 0 = "Not applicable" 473 ; NOTE: Format TM8402L has been output. 474 VALUE TM8404L (default=32) 475 0 = "Not applicable" 476 ; NOTE: Format TM8404L has been output. 477 VALUE TM8406L (default=32) 478 0 = "Not applicable" 479 1 = "Currently attending - end of" 480 2 = "Never attended" 481 ; NOTE: Format TM8406L has been output. 482 VALUE TM8408L (default=32) 483 0 = "Not applicable" 484 1 = "Yes" 485 2 = "No - skip to TM8444" 486 ; NOTE: Format TM8408L has been output. 487 VALUE TM8410L (default=32) 488 0 = "Not applicable" 489 ; NOTE: Format TM8410L has been output. 490 VALUE TM8412L (default=32) 491 0 = "Not applicable" 492 ; NOTE: Format TM8412L has been output. 493 VALUE TM8414L (default=32) 494 0 = "Not applicable" 495 1 = "Public" 496 2 = "Private, church-related" 497 3 = "Private, not church-related" 498 4 = "Did not attend high school" 499 ; NOTE: Format TM8414L has been output. 500 VALUE TM8416L (default=32) 501 0 = "Not applicable" 502 1 = "Yes" 503 2 = "No - skip to TM8444" 504 ; 9 The SAS System 13:09 Wednesday, April 16, 2003 NOTE: Format TM8416L has been output. 505 VALUE TM8418L (default=32) 506 0 = "Not applicable" 507 ; NOTE: Format TM8418L has been output. 508 VALUE TM8420L (default=32) 509 0 = "Not applicable" 510 ; NOTE: Format TM8420L has been output. 511 VALUE TM8422L (default=32) 512 0 = "Not applicable" 513 1 = "Ph.D. or equivalent" 514 2 = "Professional degree such as" 515 3 = "Master's degree" 516 4 = "Bachelor's degree" 517 5 = "Associate degree" 518 6 = "Vocational, technical, or" 519 7 = "Has not earned a degree - skip" 520 ; NOTE: Format TM8422L has been output. 521 VALUE TM8424L (default=32) 522 0 = "Not applicable" 523 ; NOTE: Format TM8424L has been output. 524 VALUE TM8426L (default=32) 525 0 = "Not applicable" 526 ; NOTE: Format TM8426L has been output. 527 VALUE TM8428L (default=32) 528 0 = "Not applicable" 529 1 = "Agriculture or forestry" 530 2 = "Biology" 531 3 = "Business or management" 532 4 = "Economics" 533 5 = "Education" 534 6 = "Engineering (including" 535 7 = "English or journalism" 536 8 = "Home economics" 537 9 = "Law" 538 10 = "Liberal arts or humanities" 539 11 = "Mathematics or statistics" 540 12 = "Medicine or dentistry" 541 13 = "Nursing, pharmacy, or health" 542 14 = "Physical or earth sciences" 543 15 = "Police science or law" 544 16 = "Psychology" 545 17 = "Religion or theology" 546 18 = "Social sciences (history," 547 19 = "Vocational or technical studies" 548 20 = "Other" 549 ; NOTE: Format TM8428L has been output. 550 VALUE TM8430L (default=32) 551 0 = "Not applicable" 552 1 = "Yes" 553 2 = "No - skip to TM8444" 554 ; NOTE: Format TM8430L has been output. 555 VALUE TM8432L (default=32) 556 0 = "Not applicable" 557 ; NOTE: Format TM8432L has been output. 558 VALUE TM8434L (default=32) 559 0 = "Not applicable" 560 ; NOTE: Format TM8434L has been output. 561 VALUE TM8436L (default=32) 562 0 = "Not applicable" 563 ; NOTE: Format TM8436L has been output. 564 VALUE TM8438L (default=32) 565 0 = "Not applicable" 566 ; NOTE: Format TM8438L has been output. 567 VALUE TM8440L (default=32) 568 0 = "Not applicable" 10 The SAS System 13:09 Wednesday, April 16, 2003 569 ; NOTE: Format TM8440L has been output. 570 VALUE TM8442L (default=32) 571 0 = "Not applicable" 572 1 = "Is still a student" 573 ; NOTE: Format TM8442L has been output. 574 VALUE TM8444L (default=32) 575 0 = "Not applicable" 576 1 = "Yes - end of section" 577 2 = "No" 578 ; NOTE: Format TM8444L has been output. 579 VALUE TM8446L (default=32) 580 0 = "Not applicable" 581 1 = "Yes" 582 2 = "No - end of section" 583 ; NOTE: Format TM8446L has been output. 584 VALUE TM8448L (default=32) 585 0 = "Not applicable or No" 586 1 = "Yes" 587 ; NOTE: Format TM8448L has been output. 588 VALUE TM8450L (default=32) 589 0 = "Not applicable or No" 590 1 = "Yes" 591 ; NOTE: Format TM8450L has been output. 592 VALUE TM8452L (default=32) 593 0 = "Not applicable or No" 594 1 = "Yes" 595 ; NOTE: Format TM8452L has been output. 596 VALUE TM8454L (default=32) 597 0 = "Not applicable or No" 598 1 = "Yes" 599 ; NOTE: Format TM8454L has been output. 600 VALUE TM8456L (default=32) 601 0 = "Not applicable or No" 602 1 = "Yes" 603 ; NOTE: Format TM8456L has been output. 604 VALUE TM8458L (default=32) 605 0 = "Not applicable or No" 606 1 = "Yes" 607 ; NOTE: Format TM8458L has been output. 608 VALUE TM8460L (default=32) 609 0 = "Not applicable or No" 610 1 = "Yes" 611 ; NOTE: Format TM8460L has been output. 612 VALUE TM8462L (default=32) 613 0 = "Not applicable or No" 614 1 = "Yes" 615 ; NOTE: Format TM8462L has been output. 616 VALUE TM8464L (default=32) 617 0 = "Not applicable or No" 618 1 = "Yes" 619 ; NOTE: Format TM8464L has been output. 620 VALUE TM8466L (default=32) 621 0 = "Not applicable or No" 622 1 = "Yes" 623 ; NOTE: Format TM8466L has been output. 624 VALUE TM8468L (default=32) 625 0 = "Not applicable or No" 626 1 = "Yes" 627 ; NOTE: Format TM8468L has been output. 628 VALUE TM8470L (default=32) 629 0 = "Not applicable or No" 11 The SAS System 13:09 Wednesday, April 16, 2003 630 1 = "Yes" 631 ; NOTE: Format TM8470L has been output. 632 VALUE TM8472L (default=32) 633 0 = "Not applicable or No" 634 1 = "Yes" 635 ; NOTE: Format TM8472L has been output. 636 VALUE TM8474L (default=32) 637 0 = "Not applicable or No" 638 1 = "Yes" 639 ; NOTE: Format TM8474L has been output. 640 VALUE TM8476L (default=32) 641 0 = "Not applicable or No" 642 1 = "Yes" 643 ; NOTE: Format TM8476L has been output. 644 VALUE TM8478L (default=32) 645 0 = "Not applicable or No" 646 1 = "Yes" 647 ; NOTE: Format TM8478L has been output. 648 VALUE TM8480L (default=32) 649 0 = "Not applicable or No" 650 1 = "Yes" 651 ; NOTE: Format TM8480L has been output. 652 VALUE TM8482L (default=32) 653 0 = "Not applicable or No" 654 1 = "Yes" 655 ; NOTE: Format TM8482L has been output. 656 VALUE TM8484L (default=32) 657 0 = "Not applicable or No" 658 1 = "Yes" 659 ; NOTE: Format TM8484L has been output. 660 VALUE TM8486L (default=32) 661 0 = "Not applicable or No" 662 1 = "Yes" 663 ; NOTE: Format TM8486L has been output. 664 VALUE TM8488L (default=32) 665 0 = "Not applicable or No" 666 1 = "Yes" 667 ; NOTE: Format TM8488L has been output. 668 VALUE TM8490L (default=32) 669 0 = "Not applicable or No" 670 1 = "Yes" 671 ; NOTE: Format TM8490L has been output. 672 VALUE TM8492L (default=32) 673 0 = "Not applicable or No" 674 1 = "Yes" 675 ; NOTE: Format TM8492L has been output. 676 VALUE TM8494L (default=32) 677 0 = "Not applicable or No" 678 1 = "Yes" 679 ; NOTE: Format TM8494L has been output. 680 VALUE TM8496L (default=32) 681 0 = "Not applicable" 682 1 = "Yes" 683 2 = "No" 684 ; NOTE: Format TM8496L has been output. 685 VALUE TM8498L (default=32) 686 0 = "Not applicable" 687 ; NOTE: Format TM8498L has been output. 688 VALUE TM8500L (default=32) 689 0 = "Not applicable" 690 ; 12 The SAS System 13:09 Wednesday, April 16, 2003 NOTE: Format TM8500L has been output. 691 VALUE TM8502L (default=32) 692 0 = "Not applicable" 693 ; NOTE: Format TM8502L has been output. 694 VALUE TM8504L (default=32) 695 -4 = "Less than 1 week" 696 0 = "Not applicable" 697 ; NOTE: Format TM8504L has been output. 698 VALUE TM8506L (default=32) 699 0 = "Not applicable or No" 700 1 = "Yes" 701 ; NOTE: Format TM8506L has been output. 702 VALUE TM8508L (default=32) 703 0 = "Not applicable or No" 704 1 = "Yes" 705 ; NOTE: Format TM8508L has been output. 706 VALUE TM8510L (default=32) 707 0 = "Not applicable or No" 708 1 = "Yes" 709 ; NOTE: Format TM8510L has been output. 710 VALUE TM8512L (default=32) 711 0 = "Not applicable or No" 712 1 = "Yes" 713 ; NOTE: Format TM8512L has been output. 714 VALUE IMP8414L (default=32) 715 0 = "Not imputed" 716 1 = "Imputed" 717 ; NOTE: Format IMP8414L has been output. 718 VALUE IMP8420L (default=32) 719 0 = "Not imputed" 720 1 = "Imputed" 721 2 = "Logical assignment based on TM8426 or " /* TM8434 */ 722 ; NOTE: Format IMP8420L has been output. 723 VALUE IMP8422L (default=32) 724 0 = "Not imputed" 725 1 = "Imputed" 726 2 = "Logical assignment based on TM8428=9,1" /* 2, or 17 */ 727 ; NOTE: Format IMP8422L has been output. 728 VALUE IMP8426L (default=32) 729 0 = "Not imputed" 730 1 = "Imputed" 731 2 = "Logical assignment based on TM8420 > T" /* M8426 */ 732 ; NOTE: Format IMP8426L has been output. 733 VALUE IMP8428L (default=32) 734 0 = "Not imputed" 735 1 = "Imputed" 736 ; NOTE: Format IMP8428L has been output. 737 VALUE IMP8434L (default=32) 738 0 = "Not imputed" 739 1 = "Imputed" 740 2 = "Logical assignment based on TM8420 and" /* TM8426 */ 741 ; NOTE: Format IMP8434L has been output. 742 VALUE IMP8436L (default=32) 743 0 = "Not imputed" 744 1 = "Imputed" 745 ; NOTE: Format IMP8436L has been output. 746 VALUE IMP8440L (default=32) 747 0 = "Not imputed" 748 1 = "Imputed" 749 2 = "Logical assignment based on TM8420 > T" /* M8440 */ 750 ; NOTE: Format IMP8440L has been output. 751 VALUE IMP8446L (default=32) 13 The SAS System 13:09 Wednesday, April 16, 2003 752 0 = "Not imputed" 753 1 = "Imputed" 754 ; NOTE: Format IMP8446L has been output. 755 VALUE IMP4858L (default=32) 756 0 = "Not imputed" 757 1 = "Imputed" 758 ; NOTE: Format IMP4858L has been output. 759 VALUE IMP6070L (default=32) 760 0 = "Not imputed" 761 1 = "Imputed" 762 ; NOTE: Format IMP6070L has been output. 763 VALUE IMP7294L (default=32) 764 0 = "Not imputed" 765 1 = "Imputed" 766 ; NOTE: Format IMP7294L has been output. 767 VALUE IMP8496L (default=32) 768 0 = "Not imputed" 769 1 = "Imputed" 770 ; NOTE: Format IMP8496L has been output. 771 VALUE IMP8500L (default=32) 772 0 = "Not imputed" 773 1 = "Imputed" 774 2 = "Logical assignment based on TM8504=-3" 775 ; NOTE: Format IMP8500L has been output. 776 VALUE IMP8502L (default=32) 777 0 = "Not imputed" 778 1 = "Imputed" 779 ; NOTE: Format IMP8502L has been output. 780 VALUE IMP0612L (default=32) 781 0 = "Not imputed" 782 1 = "Imputed" 783 ; NOTE: Format IMP0612L has been output. 784 VALUE TM8600L (default=32) 785 0 = "Not in universe" 786 1 = "Married, spouse present" 787 2 = "Married, spouse absent" 788 3 = "Widowed" 789 4 = "Divorced" 790 5 = "Separated" 791 ; NOTE: Format TM8600L has been output. 792 VALUE TM8602L (default=32) 793 0 = "Not in universe" 794 1 = "1 - skip to TM8638" 795 2 = "2" 796 3 = "3" 797 4 = "4+" 798 ; NOTE: Format TM8602L has been output. 799 VALUE TM8604L (default=32) 800 0 = "Not in universe" 801 ; NOTE: Format TM8604L has been output. 802 VALUE TM8606L (default=32) 803 0 = "Not in universe" 804 ; NOTE: Format TM8606L has been output. 805 VALUE TM8608L (default=32) 806 0 = "Not in universe" 807 1 = "Widowhood" 808 2 = "Divorce" 809 ; NOTE: Format TM8608L has been output. 810 VALUE TM8610L (default=32) 811 0 = "Not in universe" 812 ; NOTE: Format TM8610L has been output. 813 VALUE TM8612L (default=32) 14 The SAS System 13:09 Wednesday, April 16, 2003 814 0 = "Not in universe" 815 ; NOTE: Format TM8612L has been output. 816 VALUE TM8614L (default=32) 817 0 = "Not in universe" 818 1 = "Yes - skip to TM8620" 819 2 = "No" 820 ; NOTE: Format TM8614L has been output. 821 VALUE TM8616L (default=32) 822 0 = "Not in universe" 823 ; NOTE: Format TM8616L has been output. 824 VALUE TM8618L (default=32) 825 0 = "Not in universe" 826 ; NOTE: Format TM8618L has been output. 827 VALUE TM8620L (default=32) 828 0 = "Not in universe" 829 1 = "2 - skip to TM8638" 830 2 = "3+" 831 ; NOTE: Format TM8620L has been output. 832 VALUE TM8622L (default=32) 833 0 = "Not in universe" 834 ; NOTE: Format TM8622L has been output. 835 VALUE TM8624L (default=32) 836 0 = "Not in universe" 837 ; NOTE: Format TM8624L has been output. 838 VALUE TM8626L (default=32) 839 0 = "Not in universe" 840 1 = "Widowhood" 841 2 = "Divorce" 842 ; NOTE: Format TM8626L has been output. 843 VALUE TM8628L (default=32) 844 0 = "Not in universe" 845 ; NOTE: Format TM8628L has been output. 846 VALUE TM8630L (default=32) 847 0 = "Not in universe" 848 ; NOTE: Format TM8630L has been output. 849 VALUE TM8632L (default=32) 850 0 = "Not in universe" 851 1 = "Yes - skip to TM8638" 852 2 = "No" 853 ; NOTE: Format TM8632L has been output. 854 VALUE TM8634L (default=32) 855 0 = "Not in universe" 856 ; NOTE: Format TM8634L has been output. 857 VALUE TM8636L (default=32) 858 0 = "Not in universe" 859 ; NOTE: Format TM8636L has been output. 860 VALUE TM8638L (default=32) 861 0 = "Not in universe" 862 1 = "Yes - skip to TM8640" 863 2 = "No - skip to TM8640" 864 3 = "No, no spouse in household -" 865 ; NOTE: Format TM8638L has been output. 866 VALUE TM8640L (default=32) 867 0 = "Not in universe" 868 ; NOTE: Format TM8640L has been output. 869 VALUE TM8642L (default=32) 870 0 = "Not in universe" 871 ; NOTE: Format TM8642L has been output. 872 VALUE TM8644L (default=32) 873 0 = "Not in universe" 15 The SAS System 13:09 Wednesday, April 16, 2003 874 1 = "Married, spouse present - end" 875 2 = "Married, spouse absent - end" 876 3 = "Widowed" 877 4 = "Divorced" 878 5 = "Separated - skip to TM8652" 879 ; NOTE: Format TM8644L has been output. 880 VALUE TM8646L (default=32) 881 0 = "Not in universe" 882 ; NOTE: Format TM8646L has been output. 883 VALUE TM8648L (default=32) 884 0 = "Not in universe" 885 ; NOTE: Format TM8648L has been output. 886 VALUE TM8650L (default=32) 887 0 = "Not in universe" 888 1 = "Yes - end of section" 889 2 = "No" 890 ; NOTE: Format TM8650L has been output. 891 VALUE TM8652L (default=32) 892 0 = "Not in universe" 893 ; NOTE: Format TM8652L has been output. 894 VALUE TM8654L (default=32) 895 0 = "Not in universe" 896 ; NOTE: Format TM8654L has been output. 897 VALUE IMP8602L (default=32) 898 0 = "Not imputed" 899 1 = "Imputed" 900 ; NOTE: Format IMP8602L has been output. 901 VALUE IMP8608L (default=32) 902 0 = "Not imputed" 903 1 = "Imputed" 904 ; NOTE: Format IMP8608L has been output. 905 VALUE IMP8626L (default=32) 906 0 = "Not imputed" 907 1 = "Imputed" 908 ; NOTE: Format IMP8626L has been output. 909 VALUE TM8700L (default=32) 910 0 = "Not in universe" 911 ; NOTE: Format TM8700L has been output. 912 VALUE TM8702L (default=32) 913 -4 = "Always lived here/born" 914 0 = "Not in universe" 915 ; NOTE: Format TM8702L has been output. 916 VALUE TM8704L (default=32) 917 0 = "Not in universe" 918 1 = "Same state, same county -" 919 2 = "Same state, different county -" 920 ; NOTE: Format TM8704L has been output. 921 VALUE TM8706L (default=32) 922 0 = "Not in universe" 923 1 = "Alabama" 924 2 = "Alaska" 925 3 = "Arizona" 926 4 = "Arkansas" 927 5 = "California" 928 6 = "Colorado" 929 7 = "Connecticut" 930 8 = "Delaware" 931 9 = "District of Columbia" 932 10 = "Florida" 933 11 = "Georgia" 934 12 = "Hawaii" 935 13 = "Idaho" 936 14 = "Illinois" 937 15 = "Indiana" 16 The SAS System 13:09 Wednesday, April 16, 2003 938 16 = "Iowa" 939 17 = "Kansas" 940 18 = "Kentucky" 941 19 = "Louisiana" 942 20 = "Maine" 943 21 = "Maryland" 944 22 = "Massachusetts" 945 23 = "Michigan" 946 24 = "Minnesota" 947 25 = "Mississippi" 948 26 = "Missouri" 949 27 = "Montana" 950 28 = "Nebraska" 951 29 = "Nevada" 952 30 = "New Hampshire" 953 31 = "New Jersey" 954 32 = "New Mexico" 955 33 = "New York" 956 34 = "North Carolina" 957 35 = "North Dakota" 958 36 = "Ohio" 959 37 = "Oklahoma" 960 38 = "Oregon" 961 39 = "Pennsylvania" 962 40 = "Rhode Island" 963 41 = "South Carolina" 964 42 = "South Dakota" 965 43 = "Tennessee" 966 44 = "Texas" 967 45 = "Utah" 968 46 = "Vermont" 969 47 = "Virginia" 970 48 = "Washington" 971 49 = "West Virginia" 972 50 = "Wisconsin" 973 51 = "Wyoming" 974 52 = "United States (State unknown)" 975 ; NOTE: Format TM8706L has been output. 976 VALUE TM8708L (default=32) 977 0 = "Not in universe" 978 60 = "Puerto Rico" 979 61 = "Outlying area of U. S." 980 62 = "Austria" 981 63 = "Canada" 982 64 = "China (Includes Mainland China," 983 65 = "Cuba" 984 66 = "Czechoslovakia" 985 67 = "Dominican Republic" 986 68 = "Germany (East and West Germany)" 987 69 = "Greece" 988 70 = "Hungary" 989 71 = "India" 990 72 = "Ireland (Excludes Northern Ireland)" 991 73 = "Italy" 992 74 = "Jamaica" 993 75 = "Japan" 994 76 = "Korea (Includes North and South Korea)" 995 77 = "Mexico" 996 78 = "Norway" 997 79 = "Philippines" 998 80 = "Poland" 999 81 = "Portugal" 1000 82 = "Sweden" 1001 83 = "United Kingdom (Includes England," 1002 84 = "U.S.S.R." 1003 85 = "Vietnam" 1004 86 = "Other Europe" 1005 87 = "Other Asia" 1006 88 = "Central America" 1007 89 = "South America" 1008 90 = "Middle East" 1009 91 = "Africa" 1010 92 = "Overseas (country unknown)" 1011 99 = "Other" 1012 ; 17 The SAS System 13:09 Wednesday, April 16, 2003 NOTE: Format TM8708L has been output. 1013 VALUE TM8709L (default=32) 1014 -4 = "Lived in the previous home" 1015 0 = "Not in universe" 1016 ; NOTE: Format TM8709L has been output. 1017 VALUE TM8710L (default=32) 1018 0 = "Not in universe" 1019 ; NOTE: Format TM8710L has been output. 1020 VALUE TM8712L (default=32) 1021 0 = "Not in universe" 1022 ; NOTE: Format TM8712L has been output. 1023 VALUE TM8714L (default=32) 1024 0 = "Not in universe" 1025 ; NOTE: Format TM8714L has been output. 1026 VALUE TM8716L (default=32) 1027 0 = "Not in universe" 1028 ; NOTE: Format TM8716L has been output. 1029 VALUE TM8718L (default=32) 1030 0 = "Not in universe" 1031 1 = "Yes" 1032 2 = "No - skip to TM8730" 1033 ; NOTE: Format TM8718L has been output. 1034 VALUE TM8720L (default=32) 1035 0 = "Not in universe" 1036 1 = "Alabama" 1037 2 = "Alaska" 1038 3 = "Arizona" 1039 4 = "Arkansas" 1040 5 = "California" 1041 6 = "Colorado" 1042 7 = "Connecticut" 1043 8 = "Delaware" 1044 9 = "District of Columbia" 1045 10 = "Florida" 1046 11 = "Georgia" 1047 12 = "Hawaii" 1048 13 = "Idaho" 1049 14 = "Illinois" 1050 15 = "Indiana" 1051 16 = "Iowa" 1052 17 = "Kansas" 1053 18 = "Kentucky" 1054 19 = "Louisiana" 1055 20 = "Maine" 1056 21 = "Maryland" 1057 22 = "Massachusetts" 1058 23 = "Michigan" 1059 24 = "Minnesota" 1060 25 = "Mississippi" 1061 26 = "Missouri" 1062 27 = "Montana" 1063 28 = "Nebraska" 1064 29 = "Nevada" 1065 30 = "New Hampshire" 1066 31 = "New Jersey" 1067 32 = "New Nexico" 1068 33 = "New York" 1069 34 = "North Carolina" 1070 35 = "North Dakota" 1071 36 = "Ohio" 1072 37 = "Oklahoma" 1073 38 = "Oregon" 1074 39 = "Pennsylvania" 1075 40 = "Rhode island" 1076 41 = "South Carolina" 1077 42 = "South Dakota" 1078 43 = "Tennessee" 1079 44 = "Texas" 1080 45 = "Utah" 1081 46 = "Vermont" 18 The SAS System 13:09 Wednesday, April 16, 2003 1082 47 = "Virginia" 1083 48 = "Washington" 1084 49 = "West Virginia" 1085 50 = "Wisconsin" 1086 51 = "Wyoming" 1087 52 = "United States (Unknown State)" 1088 60 = "Puerto Rico" 1089 61 = "Outlying area of U. S.(Includes" 1090 62 = "Austria" 1091 63 = "Canada" 1092 64 = "China (Includes Mainland China," 1093 65 = "Cuba" 1094 66 = "Czechoslovakia" 1095 67 = "Dominican Republic" 1096 68 = "Germany (East and West Germany)" 1097 69 = "Greece" 1098 70 = "Hungary" 1099 71 = "India" 1100 72 = "Ireland (Excludes Northern Ireland)" 1101 73 = "Italy" 1102 74 = "Jamaica" 1103 75 = "Japan" 1104 76 = "Korea (Includes North and South" 1105 77 = "Mexico" 1106 78 = "Norway" 1107 79 = "Philippines" 1108 80 = "Poland" 1109 81 = "Portugal" 1110 82 = "Sweden" 1111 83 = "United Kingdom (Includes England," 1112 84 = "U.S.S.R." 1113 85 = "Vietnam" 1114 86 = "Other Europe" 1115 87 = "Other Asia" 1116 88 = "Central America" 1117 89 = "South America" 1118 90 = "Middle East" 1119 91 = "Africa" 1120 92 = "Overseas (country unknown)" 1121 99 = "Other" 1122 ; NOTE: Format TM8720L has been output. 1123 VALUE TM8722L (default=32) 1124 0 = "Not in universe" 1125 ; NOTE: Format TM8722L has been output. 1126 VALUE TM8724L (default=32) 1127 0 = "Not in universe" 1128 ; NOTE: Format TM8724L has been output. 1129 VALUE TM8726L (default=32) 1130 0 = "Not in universe" 1131 ; NOTE: Format TM8726L has been output. 1132 VALUE TM8728L (default=32) 1133 0 = "Not in universe" 1134 ; NOTE: Format TM8728L has been output. 1135 VALUE TM8730L (default=32) 1136 0 = "Not in universe" 1137 1 = "Alabama" 1138 2 = "Alaska" 1139 3 = "Arizona" 1140 4 = "Arkansas" 1141 5 = "California" 1142 6 = "Colorado" 1143 7 = "Connecticut" 1144 8 = "Delaware" 1145 9 = "District of Columbia" 1146 10 = "Florida" 1147 11 = "Georgia" 1148 12 = "Hawaii" 1149 13 = "Idaho" 1150 14 = "Illinois" 1151 15 = "Indiana" 1152 16 = "Iowa" 19 The SAS System 13:09 Wednesday, April 16, 2003 1153 17 = "Kansas" 1154 18 = "Kentucky" 1155 19 = "Louisiana" 1156 20 = "Maine" 1157 21 = "Maryland" 1158 22 = "Massachusetts" 1159 23 = "Michigan" 1160 24 = "Minnesota" 1161 25 = "Mississippi" 1162 26 = "Missouri" 1163 27 = "Montana" 1164 28 = "Nebraska" 1165 29 = "Nevada" 1166 30 = "New Hampshire" 1167 31 = "New Jersey" 1168 32 = "New Mexico" 1169 33 = "New York" 1170 34 = "North Carolina" 1171 35 = "North Dakota" 1172 36 = "Ohio" 1173 37 = "Oklahoma" 1174 38 = "Oregon" 1175 39 = "Pennsylvania" 1176 40 = "Rhode Island" 1177 41 = "South Carolina" 1178 42 = "South Dakota" 1179 43 = "Tennessee" 1180 44 = "Texas" 1181 45 = "Utah" 1182 46 = "Vermont" 1183 47 = "Virginia" 1184 48 = "Washington" 1185 49 = "West Virginia" 1186 50 = "Wisconsin" 1187 51 = "Wyoming" 1188 52 = "United States (Unknown State)" 1189 60 = "Puerto Rico" 1190 61 = "Outlying area of U. S.(Includes" 1191 62 = "Austria" 1192 63 = "Canada" 1193 64 = "China (Includes Mainland China," 1194 65 = "Cuba" 1195 66 = "Czechoslovakia" 1196 67 = "Dominican Republic" 1197 68 = "Germany (East and West Germany)" 1198 69 = "Greece" 1199 70 = "Hungary" 1200 71 = "India" 1201 72 = "Ireland (Excludes Northern Ireland)" 1202 73 = "Italy" 1203 74 = "Jamaica" 1204 75 = "Japan" 1205 76 = "Korea" 1206 77 = "Mexico" 1207 78 = "Norway" 1208 79 = "Philippines" 1209 80 = "Poland" 1210 81 = "Portugal" 1211 82 = "Sweden" 1212 83 = "United Kingdom (Includes England," 1213 84 = "U.S.S.R." 1214 85 = "Vietnam" 1215 86 = "Other Europe" 1216 87 = "Other Asia" 1217 88 = "Central America" 1218 89 = "South America" 1219 90 = "Middle East" 1220 91 = "Africa" 1221 92 = "Overseas (country unknown)" 1222 99 = "Other(specify)" 1223 ; NOTE: Format TM8730L has been output. 1224 VALUE TM8732L (default=32) 1225 0 = "Not in universe" 1226 1 = "Yes" 1227 2 = "No - end of section" 20 The SAS System 13:09 Wednesday, April 16, 2003 1228 ; NOTE: Format TM8732L has been output. 1229 VALUE TM8734L (default=32) 1230 0 = "Not in universe" 1231 1 = "Yes" 1232 2 = "No" 1233 3 = "No, born abroad of American" 1234 ; NOTE: Format TM8734L has been output. 1235 VALUE TM8736L (default=32) 1236 0 = "Not in universe" 1237 1 = "1959 or earlier" 1238 2 = "1960-1964" 1239 3 = "1965-1969" 1240 4 = "1970-1974" 1241 5 = "1975-1979" 1242 6 = "1980-1981" 1243 7 = "1982-1984" 1244 8 = "1985-1992" 1245 ; NOTE: Format TM8736L has been output. 1246 VALUE IMP0002L (default=32) 1247 0 = "Not imputed" 1248 1 = "Imputed" 1249 2 = "Logical assignment based on TM8704=1 o" /* r 2 */ 1250 3 = "Logical assignment based on counter" 1251 4 = "Logical assignment based on month ente" /* red/left */ 1252 5 = "Imputed: Set according to month of int" /* erview */ 1253 ; NOTE: Format IMP0002L has been output. 1254 VALUE IMP8704L (default=32) 1255 0 = "Not imputed" 1256 1 = "Imputed" 1257 ; NOTE: Format IMP8704L has been output. 1258 VALUE IMP8706L (default=32) 1259 0 = "Not imputed" 1260 1 = "Imputed" 1261 ; NOTE: Format IMP8706L has been output. 1262 VALUE IMP8708L (default=32) 1263 0 = "Not imputed" 1264 1 = "Imputed" 1265 ; NOTE: Format IMP8708L has been output. 1266 VALUE IMP1012L (default=32) 1267 0 = "Not imputed" 1268 1 = "Imputed" 1269 2 = "Imputed: Logical assignment based on " /* TM8714 is not valid */ 1270 3 = "Logical assignment based on TM8716 is " /* less than TM8702 */ 1271 4 = "Logical assignment based on counter" 1272 ; NOTE: Format IMP1012L has been output. 1273 VALUE IMP8720L (default=32) 1274 0 = "Not imputed" 1275 1 = "Imputed" 1276 ; NOTE: Format IMP8720L has been output. 1277 VALUE IMP2224L (default=32) 1278 0 = "Not imputed" 1279 1 = "Imputed" 1280 2 = "Logical assignment based on TM8724 is " /* valid and */ 1281 ; NOTE: Format IMP2224L has been output. 1282 VALUE IMP2628L (default=32) 1283 0 = "Not imputed" 1284 1 = "Imputed" 1285 2 = "Imputed: Logical assignment based on T" /* M8702 is not valid */ 1286 3 = "Imputed: Logical assignment based on T" /* M8726 is not valid */ 1287 4 = "Logical assignment based on month ente" /* red/left */ 1288 ; NOTE: Format IMP2628L has been output. 1289 VALUE IMP8730L (default=32) 1290 0 = "Not imputed" 1291 1 = "Imputed" 1292 ; 21 The SAS System 13:09 Wednesday, April 16, 2003 NOTE: Format IMP8730L has been output. 1293 VALUE IMP8732L (default=32) 1294 0 = "Not imputed" 1295 1 = "Imputed" 1296 ; NOTE: Format IMP8732L has been output. 1297 VALUE IMP8734L (default=32) 1298 0 = "Not imputed" 1299 1 = "Imputed" 1300 ; NOTE: Format IMP8734L has been output. 1301 VALUE IMP8736L (default=32) 1302 0 = "Not imputed" 1303 1 = "Imputed" 1304 ; NOTE: Format IMP8736L has been output. 1305 VALUE TM8750L (default=32) 1306 0 = "Not in universe" 1307 1 = "Female, 15 or older - skip to TM8754" 1308 2 = "Male, 18+ years old - skip to TM8752" 1309 3 = "Male, 15 - 17 years old - end of secti" /* on */ 1310 ; NOTE: Format TM8750L has been output. 1311 VALUE TM8752L (default=32) 1312 -1 = "Don't know - end of section" 1313 -3 = "None - end of section" 1314 0 = "Not in universe" 1315 ; NOTE: Format TM8752L has been output. 1316 VALUE TM8754L (default=32) 1317 -3 = "None - end of section" 1318 0 = "Not in universe" 1319 ; NOTE: Format TM8754L has been output. 1320 VALUE TM8756L (default=32) 1321 0 = "Not in universe" 1322 1 = "Yes - end of section" 1323 2 = "No" 1324 ; NOTE: Format TM8756L has been output. 1325 VALUE TM8758L (default=32) 1326 0 = "Not in universe" 1327 1 = "Yes" 1328 2 = "No - skip to TM8778" 1329 ; NOTE: Format TM8758L has been output. 1330 VALUE TM8760L (default=32) 1331 0 = "Not in universe" 1332 ; NOTE: Format TM8760L has been output. 1333 VALUE TM8762L (default=32) 1334 0 = "Not in universe" 1335 ; NOTE: Format TM8762L has been output. 1336 VALUE TM8764L (default=32) 1337 999 = "Child not located in" 1338 ; NOTE: Format TM8764L has been output. 1339 VALUE TM8766L (default=32) 1340 0 = "Not in universe" 1341 ; NOTE: Format TM8766L has been output. 1342 VALUE TM8768L (default=32) 1343 0 = "Not in universe" 1344 ; NOTE: Format TM8768L has been output. 1345 VALUE TM8770L (default=32) 1346 999 = "Child not located in" 1347 ; NOTE: Format TM8770L has been output. 1348 VALUE TM8778L (default=32) 1349 0 = "Not in universe" 1350 1 = "One child - skip to TM8792" 1351 2 = "2+ children" 1352 ; NOTE: Format TM8778L has been output. 22 The SAS System 13:09 Wednesday, April 16, 2003 1353 VALUE TM8780L (default=32) 1354 0 = "Not in universe" 1355 ; NOTE: Format TM8780L has been output. 1356 VALUE TM8782L (default=32) 1357 0 = "Not in universe" 1358 ; NOTE: Format TM8782L has been output. 1359 VALUE TM8784L (default=32) 1360 0 = "Not in universe" 1361 1 = "Yes" 1362 2 = "No - skip to TM8792" 1363 ; NOTE: Format TM8784L has been output. 1364 VALUE TM8786L (default=32) 1365 0 = "Not in universe" 1366 1 = "Resides in this household -" 1367 2 = "In his/her own household" 1368 3 = "With own father - skip to" 1369 4 = "With own grandparent(s) - skip" 1370 5 = "With adoptive parents - skip" 1371 6 = "Other relatives - skip" 1372 7 = "In foster care/foster family" 1373 8 = "In an institution (hospital)" 1374 9 = "In school - skip to TM8792" 1375 10 = "In correctional facility -" 1376 11 = "Other - skip to TM8792" 1377 12 = "Child is deceased- skip to TM8792" 1378 13 = "Don't know" 1379 ; NOTE: Format TM8786L has been output. 1380 VALUE TM8788L (default=32) 1381 999 = "Child not located in the" 1382 ; NOTE: Format TM8788L has been output. 1383 VALUE TM8792L (default=32) 1384 0 = "Not in universe" 1385 ; NOTE: Format TM8792L has been output. 1386 VALUE TM8794L (default=32) 1387 0 = "Not in universe" 1388 ; NOTE: Format TM8794L has been output. 1389 VALUE TM8796L (default=32) 1390 0 = "Not in universe" 1391 1 = "Yes" 1392 2 = "No - end of section" 1393 ; NOTE: Format TM8796L has been output. 1394 VALUE TM8798L (default=32) 1395 0 = "Not in universe" 1396 1 = "Resides in this household -" 1397 2 = "In his/her own household -" 1398 3 = "With own father - end of section" 1399 4 = "With own grandparent(s) - end" 1400 5 = "With adoptive parents - end" 1401 6 = "Other relatives - end of section" 1402 7 = "In foster care/foster family" 1403 8 = "In an institution (hospital)" 1404 9 = "In school - end of section" 1405 10 = "In correctional facility -" 1406 11 = "Other - end of section" 1407 12 = "Child is deceased - end of section" 1408 13 = "Don't know" 1409 ; NOTE: Format TM8798L has been output. 1410 VALUE TM8800L (default=32) 1411 999 = "Child not found in the" 1412 ; NOTE: Format TM8800L has been output. 1413 VALUE IMP8754L (default=32) 1414 0 = "Not imputed" 1415 1 = "Imputed" 1416 ; NOTE: Format IMP8754L has been output. 1417 VALUE IMP8782L (default=32) 23 The SAS System 13:09 Wednesday, April 16, 2003 1418 0 = "Not imputed" 1419 1 = "Imputed" 1420 ; NOTE: Format IMP8782L has been output. 1421 VALUE IMP8780L (default=32) 1422 0 = "Not imputed" 1423 1 = "Imputed" 1424 ; NOTE: Format IMP8780L has been output. 1425 VALUE IMP8786L (default=32) 1426 0 = "Not imputed" 1427 1 = "Imputed" 1428 ; NOTE: Format IMP8786L has been output. 1429 VALUE IMP8758L (default=32) 1430 0 = "Not imputed" 1431 1 = "Imputed" 1432 ; NOTE: Format IMP8758L has been output. 1433 VALUE IMP8794L (default=32) 1434 0 = "Not imputed" 1435 1 = "Imputed. Universe: TM8778=1" 1436 2 = "Imputed. Universe: TM8778=1" 1437 3 = "Imputed. Universe: TM8778" 1438 4 = "Imputed. Universe: TM8778" 1439 ; NOTE: Format IMP8794L has been output. 1440 VALUE IMP8792L (default=32) 1441 0 = "Not imputed" 1442 1 = "Imputed" 1443 ; NOTE: Format IMP8792L has been output. 1444 VALUE IMP8798L (default=32) 1445 0 = "Not imputed" 1446 1 = "Imputed" 1447 ; NOTE: Format IMP8798L has been output. 1448 1449 filename raw pipe "unzip -p /homes/data/sipp/1992/sipp92t2.zip "; 1450 NOTE: The data set LIBRARY.FSP92T2 has 924 observations and 17 variables. NOTE: PROCEDURE FORMAT used: real time 0.930 seconds cpu time 0.646 seconds 1451 data library.sip92t2; 1452 1453 missing A; 1454 infile raw lrecl = 20000 missover ; 1455 * To read in uncompressed file, uncomment INFILE & comment filename & infile lines; 1456 * On a PC, you may need to change the direction of the slashes as in C:\; 1457 *INFILE '/homes/data/sipp/1992/sipp92t2.dat' LRECL=20000 PAD END=EOF; 1458 1459 1460 1461 *LENGTH 1462 SUSEQNUM 4 1463 ID 6 1464 FINALWGT 8 1465 TM8312 4 1466 TM8320 4 1467 TM8336 4 1468 TM8404 4 1469 TM8412 4 1470 TM8420 4 1471 TM8426 4 1472 TM8434 4 1473 TM8440 4 1474 TM8500 4 1475 TM8606 4 1476 TM8612 4 1477 TM8618 4 1478 TM8624 4 1479 TM8630 4 24 The SAS System 13:09 Wednesday, April 16, 2003 1480 TM8636 4 1481 TM8642 4 1482 TM8648 4 1483 TM8654 4 1484 TM8702 4 1485 TM8712 4 1486 TM8716 4 1487 TM8724 4 1488 TM8728 4 1489 TM8762 4 1490 TM8768 4 1491 TM8782 4 1492 TM8794 4 1493 DEFAULT=3; 1494 1495 1496 /*-------------------------------------------------------------------------------------*/ 1497 /* The following changes in variable names have been made, if necessary: 1498 '$' to 'd'; '-' to '_'; '%' to 'p'; 1499 1500 Note: Variable names in SAS are not case-sensitive */ 1501 1502 /*-------------------------------------------------------------------------------------*/ 1503 1504 INPUT 1505 1506 @1 SUSEQNUM 5. 1507 @6 ID 9. 1508 @15 ROTATION 1. 1509 @16 STATE 2. 1510 @18 PINX 2. 1511 @20 ADDID 2. 1512 @22 ITEM36B 2. 1513 @24 INTVW 1. 1514 @25 PPMIS1 1. 1515 @26 PPMIS2 1. 1516 @27 PPMIS3 1. 1517 @28 PPMIS4 1. 1518 @29 PPMIS5 1. 1519 @30 ENTRY 2. 1520 @32 PNUM 3. 1521 @35 FINALWGT 12.4 1522 @47 RRP 1. 1523 @48 AGE 3. 1524 @51 SEX 1. 1525 @52 RACE 1. 1526 @53 MS 1. 1527 @54 PNSP 3. 1528 @57 PNPT 3. 1529 @60 HIGRADE 2. 1530 @62 GRDCMPL 1. 1531 @63 ETHNICTY 2. 1532 @65 WAVE 1. 1533 @69 TM9266 1. 1534 @70 TM9272 3. 1535 @73 TM9274 3. 1536 @76 TM9276 3. 1537 @79 TM9278 3. 1538 @82 TM9280 3. 1539 @85 TM9282 3. 1540 @88 TM9284 3. 1541 @91 TM9286 3. 1542 @94 TM9288 3. 1543 @97 TM9290 3. 1544 @100 TM9292 3. 1545 @103 TM9294 3. 1546 @106 TM9296 3. 1547 @109 TM9298 3. 1548 @112 TM9300 3. 1549 @115 TM9330 3. 1550 @118 TM9332 2. 1551 @120 TM9360 3. 1552 @123 TM9362 2. 1553 @125 TM9364 2. 1554 @127 TM9390 3. 1555 @130 TM9392 2. 25 The SAS System 13:09 Wednesday, April 16, 2003 1556 @132 TM9394 2. 1557 @134 TM9396 2. 1558 @136 TM9420 3. 1559 @139 TM9422 2. 1560 @141 TM9424 2. 1561 @143 TM9426 2. 1562 @145 TM9428 2. 1563 @147 TM9450 3. 1564 @150 TM9452 2. 1565 @152 TM9454 2. 1566 @154 TM9456 2. 1567 @156 TM9458 2. 1568 @158 TM9460 2. 1569 @160 TM9480 3. 1570 @163 TM9482 2. 1571 @165 TM9484 2. 1572 @167 TM9486 2. 1573 @169 TM9488 2. 1574 @171 TM9490 2. 1575 @173 TM9492 2. 1576 @175 TM9510 3. 1577 @178 TM9512 2. 1578 @180 TM9514 2. 1579 @182 TM9516 2. 1580 @184 TM9518 2. 1581 @186 TM9520 2. 1582 @188 TM9522 2. 1583 @190 TM9524 2. 1584 @192 TM9540 3. 1585 @195 TM9542 2. 1586 @197 TM9544 2. 1587 @199 TM9546 2. 1588 @201 TM9548 2. 1589 @203 TM9550 2. 1590 @205 TM9552 2. 1591 @207 TM9554 2. 1592 @209 TM9556 2. 1593 @211 TM9570 3. 1594 @214 TM9572 2. 1595 @216 TM9574 2. 1596 @218 TM9576 2. 1597 @220 TM9578 2. 1598 @222 TM9580 2. 1599 @224 TM9582 2. 1600 @226 TM9584 2. 1601 @228 TM9586 2. 1602 @230 TM9588 2. 1603 @232 TM9600 3. 1604 @235 TM9602 2. 1605 @237 TM9604 2. 1606 @239 TM9606 2. 1607 @241 TM9608 2. 1608 @243 TM9610 2. 1609 @245 TM9612 2. 1610 @247 TM9614 2. 1611 @249 TM9616 2. 1612 @251 TM9618 2. 1613 @253 TM9620 2. 1614 @255 TM9630 3. 1615 @258 TM9632 2. 1616 @260 TM9634 2. 1617 @262 TM9636 2. 1618 @264 TM9638 2. 1619 @266 TM9640 2. 1620 @268 TM9642 2. 1621 @270 TM9644 2. 1622 @272 TM9646 2. 1623 @274 TM9648 2. 1624 @276 TM9650 2. 1625 @278 TM9652 2. 1626 @280 TM9660 3. 1627 @283 TM9662 2. 1628 @285 TM9664 2. 1629 @287 TM9666 2. 1630 @289 TM9668 2. 1631 @291 TM9670 2. 26 The SAS System 13:09 Wednesday, April 16, 2003 1632 @293 TM9672 2. 1633 @295 TM9674 2. 1634 @297 TM9676 2. 1635 @299 TM9678 2. 1636 @301 TM9680 2. 1637 @303 TM9682 2. 1638 @305 TM9684 2. 1639 @307 TM9690 3. 1640 @310 TM9692 2. 1641 @312 TM9694 2. 1642 @314 TM9696 2. 1643 @316 TM9698 2. 1644 @318 TM9700 2. 1645 @320 TM9702 2. 1646 @322 TM9704 2. 1647 @324 TM9706 2. 1648 @326 TM9708 2. 1649 @328 TM9710 2. 1650 @330 TM9712 2. 1651 @332 TM9714 2. 1652 @334 TM9716 2. 1653 @336 UTM9266 1. 1654 @337 UTM9272 3. 1655 @340 UTM9274 3. 1656 @343 UTM9276 3. 1657 @346 UTM9278 3. 1658 @349 UTM9280 3. 1659 @352 UTM9282 3. 1660 @355 UTM9284 3. 1661 @358 UTM9286 3. 1662 @361 UTM9288 3. 1663 @364 UTM9290 3. 1664 @367 UTM9292 3. 1665 @370 UTM9294 3. 1666 @373 UTM9296 3. 1667 @376 UTM9298 3. 1668 @379 UTM9300 3. 1669 @382 UTM9330 3. 1670 @385 UTM9332 2. 1671 @387 UTM9360 3. 1672 @390 UTM9362 2. 1673 @392 UTM9364 2. 1674 @394 UTM9390 3. 1675 @397 UTM9392 2. 1676 @399 UTM9394 2. 1677 @401 UTM9396 2. 1678 @403 UTM9420 3. 1679 @406 UTM9422 2. 1680 @408 UTM9424 2. 1681 @410 UTM9426 2. 1682 @412 UTM9428 2. 1683 @414 UTM9450 3. 1684 @417 UTM9452 2. 1685 @419 UTM9454 2. 1686 @421 UTM9456 2. 1687 @423 UTM9458 2. 1688 @425 UTM9460 2. 1689 @427 UTM9480 3. 1690 @430 UTM9482 2. 1691 @432 UTM9484 2. 1692 @434 UTM9486 2. 1693 @436 UTM9488 2. 1694 @438 UTM9490 2. 1695 @440 UTM9492 2. 1696 @442 UTM9510 3. 1697 @445 UTM9512 2. 1698 @447 UTM9514 2. 1699 @449 UTM9516 2. 1700 @451 UTM9518 2. 1701 @453 UTM9520 2. 1702 @455 UTM9522 2. 1703 @457 UTM9524 2. 1704 @459 UTM9540 3. 1705 @462 UTM9542 2. 1706 @464 UTM9544 2. 1707 @466 UTM9546 2. 27 The SAS System 13:09 Wednesday, April 16, 2003 1708 @468 UTM9548 2. 1709 @470 UTM9550 2. 1710 @472 UTM9552 2. 1711 @474 UTM9554 2. 1712 @476 UTM9556 2. 1713 @478 UTM9570 3. 1714 @481 UTM9572 2. 1715 @483 UTM9574 2. 1716 @485 UTM9576 2. 1717 @487 UTM9578 2. 1718 @489 UTM9580 2. 1719 @491 UTM9582 2. 1720 @493 UTM9584 2. 1721 @495 UTM9586 2. 1722 @497 UTM9588 2. 1723 @499 UTM9600 3. 1724 @502 UTM9602 2. 1725 @504 UTM9604 2. 1726 @506 UTM9606 2. 1727 @508 UTM9608 2. 1728 @510 UTM9610 2. 1729 @512 UTM9612 2. 1730 @514 UTM9614 2. 1731 @516 UTM9616 2. 1732 @518 UTM9618 2. 1733 @520 UTM9620 2. 1734 @522 UTM9630 3. 1735 @525 UTM9632 2. 1736 @527 UTM9634 2. 1737 @529 UTM9636 2. 1738 @531 UTM9638 2. 1739 @533 UTM9640 2. 1740 @535 UTM9642 2. 1741 @537 UTM9644 2. 1742 @539 UTM9646 2. 1743 @541 UTM9648 2. 1744 @543 UTM9650 2. 1745 @545 UTM9652 2. 1746 @547 UTM9660 3. 1747 @550 UTM9662 2. 1748 @552 UTM9664 2. 1749 @554 UTM9666 2. 1750 @556 UTM9668 2. 1751 @558 UTM9670 2. 1752 @560 UTM9672 2. 1753 @562 UTM9674 2. 1754 @564 UTM9676 2. 1755 @566 UTM9678 2. 1756 @568 UTM9680 2. 1757 @570 UTM9682 2. 1758 @572 UTM9684 2. 1759 @574 UTM9690 3. 1760 @577 UTM9692 2. 1761 @579 UTM9694 2. 1762 @581 UTM9696 2. 1763 @583 UTM9698 2. 1764 @585 UTM9700 2. 1765 @587 UTM9702 2. 1766 @589 UTM9704 2. 1767 @591 UTM9706 2. 1768 @593 UTM9708 2. 1769 @595 UTM9710 2. 1770 @597 UTM9712 2. 1771 @599 UTM9714 2. 1772 @601 UTM9716 2. 1773 @603 ALTM9332 1. 1774 @604 ALTM9362 1. 1775 @605 ALTM9392 1. 1776 @606 ALTM9422 1. 1777 @607 ALTM9452 1. 1778 @608 ALTM9482 1. 1779 @609 ALTM9512 1. 1780 @610 ALTM9542 1. 1781 @611 ALTM9572 1. 1782 @612 ALTM9602 1. 1783 @613 ALTM9632 1. 28 The SAS System 13:09 Wednesday, April 16, 2003 1784 @614 ALTM9662 1. 1785 @615 ALTM9692 1. 1786 @616 ALTM9364 1. 1787 @617 ALTM9394 1. 1788 @618 ALTM9424 1. 1789 @619 ALTM9454 1. 1790 @620 ALTM9484 1. 1791 @621 ALTM9514 1. 1792 @622 ALTM9544 1. 1793 @623 ALTM9574 1. 1794 @624 ALTM9604 1. 1795 @625 ALTM9634 1. 1796 @626 ALTM9664 1. 1797 @627 ALTM9694 1. 1798 @628 ALTM9396 1. 1799 @629 ALTM9426 1. 1800 @630 ALTM9456 1. 1801 @631 ALTM9486 1. 1802 @632 ALTM9516 1. 1803 @633 ALTM9546 1. 1804 @634 ALTM9576 1. 1805 @635 ALTM9606 1. 1806 @636 ALTM9636 1. 1807 @637 ALTM9666 1. 1808 @638 ALTM9696 1. 1809 @639 ALTM9428 1. 1810 @640 ALTM9458 1. 1811 @641 ALTM9488 1. 1812 @642 ALTM9518 1. 1813 @643 ALTM9548 1. 1814 @644 ALTM9578 1. 1815 @645 ALTM9608 1. 1816 @646 ALTM9638 1. 1817 @647 ALTM9668 1. 1818 @648 ALTM9698 1. 1819 @649 ALTM9460 1. 1820 @650 ALTM9490 1. 1821 @651 ALTM9520 1. 1822 @652 ALTM9550 1. 1823 @653 ALTM9580 1. 1824 @654 ALTM9610 1. 1825 @655 ALTM9640 1. 1826 @656 ALTM9670 1. 1827 @657 ALTM9700 1. 1828 @658 ALTM9492 1. 1829 @659 ALTM9522 1. 1830 @660 ALTM9552 1. 1831 @661 ALTM9582 1. 1832 @662 ALTM9612 1. 1833 @663 ALTM9642 1. 1834 @664 ALTM9672 1. 1835 @665 ALTM9702 1. 1836 @666 ALTM9524 1. 1837 @667 ALTM9554 1. 1838 @668 ALTM9584 1. 1839 @669 ALTM9614 1. 1840 @670 ALTM9644 1. 1841 @671 ALTM9674 1. 1842 @672 ALTM9704 1. 1843 @673 ALTM9556 1. 1844 @674 ALTM9586 1. 1845 @675 ALTM9616 1. 1846 @676 ALTM9646 1. 1847 @677 ALTM9676 1. 1848 @678 ALTM9706 1. 1849 @679 ALTM9588 1. 1850 @680 ALTM9618 1. 1851 @681 ALTM9648 1. 1852 @682 ALTM9678 1. 1853 @683 ALTM9708 1. 1854 @684 ALTM9620 1. 1855 @685 ALTM9650 1. 1856 @686 ALTM9680 1. 1857 @687 ALTM9710 1. 1858 @688 ALTM9652 1. 1859 @689 ALTM9682 1. 29 The SAS System 13:09 Wednesday, April 16, 2003 1860 @690 ALTM9712 1. 1861 @691 ALTM9684 1. 1862 @692 ALTM9714 1. 1863 @693 ALTM9716 1. 1864 @697 TM8300 1. 1865 @698 TM8302 1. 1866 @699 TM8304 1. 1867 @700 TM8306 1. 1868 @701 TM8308 1. 1869 @702 TM8310 2. 1870 @704 TM8312 4. 1871 @708 TM8314 2. 1872 @710 TM8316 1. 1873 @711 TM8318 2. 1874 @713 TM8320 4. 1875 @717 TM8322 2. 1876 @719 TM8324 2. 1877 @721 TM8326 1. 1878 @722 TM8328 1. 1879 @723 TM8330 1. 1880 @724 TM8332 1. 1881 @725 TM8334 2. 1882 @727 TM8336 4. 1883 @731 TM8338 2. 1884 @733 TM8340 1. 1885 @734 TM8342 1. 1886 @735 TM8344 1. 1887 @736 TM8346 1. 1888 @737 IMP8306 1. 1889 @738 IMP8308 1. 1890 @739 IMP8310 1. 1891 @740 IMP1214 1. 1892 @741 IMP8316 1. 1893 @742 IMP8318 1. 1894 @743 IMP2022 1. 1895 @744 IMP8324 1. 1896 @745 IMP8326 1. 1897 @746 IMP8328 1. 1898 @747 IMP8332 1. 1899 @748 IMP8334 1. 1900 @749 IMP3438 1. 1901 @750 IMP8342 1. 1902 @751 IMP8344 1. 1903 @752 IMP8346 1. 1904 @753 TM8400 1. 1905 @754 TM8402 2. 1906 @756 TM8404 4. 1907 @760 TM8406 1. 1908 @761 TM8408 1. 1909 @762 TM8410 2. 1910 @764 TM8412 4. 1911 @768 TM8414 2. 1912 @770 TM8416 1. 1913 @771 TM8418 2. 1914 @773 TM8420 4. 1915 @777 TM8422 2. 1916 @779 TM8424 2. 1917 @781 TM8426 4. 1918 @785 TM8428 2. 1919 @787 TM8430 1. 1920 @788 TM8432 2. 1921 @790 TM8434 4. 1922 @794 TM8436 2. 1923 @796 TM8438 2. 1924 @798 TM8440 4. 1925 @802 TM8442 1. 1926 @803 TM8444 1. 1927 @804 TM8446 2. 1928 @806 TM8448 1. 1929 @807 TM8450 1. 1930 @808 TM8452 1. 1931 @809 TM8454 1. 1932 @810 TM8456 1. 1933 @811 TM8458 1. 1934 @812 TM8460 1. 1935 @813 TM8462 1. 30 The SAS System 13:09 Wednesday, April 16, 2003 1936 @814 TM8464 1. 1937 @815 TM8466 1. 1938 @816 TM8468 1. 1939 @817 TM8470 1. 1940 @818 TM8472 1. 1941 @819 TM8474 1. 1942 @820 TM8476 1. 1943 @821 TM8478 1. 1944 @822 TM8480 1. 1945 @823 TM8482 1. 1946 @824 TM8484 1. 1947 @825 TM8486 1. 1948 @826 TM8488 1. 1949 @827 TM8490 1. 1950 @828 TM8492 1. 1951 @829 TM8494 1. 1952 @830 TM8496 1. 1953 @831 TM8498 2. 1954 @833 TM8500 4. 1955 @837 TM8502 3. 1956 @840 TM8504 2. 1957 @842 TM8506 1. 1958 @843 TM8508 1. 1959 @844 TM8510 1. 1960 @845 TM8512 1. 1961 @846 IMP8414 1. 1962 @847 IMP8420 1. 1963 @848 IMP8422 1. 1964 @849 IMP8426 1. 1965 @850 IMP8428 1. 1966 @851 IMP8434 1. 1967 @852 IMP8436 1. 1968 @853 IMP8440 1. 1969 @854 IMP8446 1. 1970 @855 IMP4858 1. 1971 @856 IMP6070 1. 1972 @857 IMP7294 1. 1973 @858 IMP8496 1. 1974 @859 IMP8500 1. 1975 @860 IMP8502 1. 1976 @861 IMP0612 1. 1977 @865 TM8600 1. 1978 @866 TM8602 1. 1979 @867 TM8604 2. 1980 @869 TM8606 4. 1981 @873 TM8608 1. 1982 @874 TM8610 2. 1983 @876 TM8612 4. 1984 @880 TM8614 1. 1985 @881 TM8616 2. 1986 @883 TM8618 4. 1987 @887 TM8620 1. 1988 @888 TM8622 2. 1989 @890 TM8624 4. 1990 @894 TM8626 1. 1991 @895 TM8628 2. 1992 @897 TM8630 4. 1993 @901 TM8632 1. 1994 @902 TM8634 2. 1995 @904 TM8636 4. 1996 @908 TM8638 1. 1997 @909 TM8640 2. 1998 @911 TM8642 4. 1999 @915 TM8644 1. 2000 @916 TM8646 2. 2001 @918 TM8648 4. 2002 @922 TM8650 1. 2003 @923 TM8652 2. 2004 @925 TM8654 4. 2005 @929 IMP8602 1. 2006 @930 IMP8608 1. 2007 @931 IMP8626 1. 2008 @933 TM8700 2. 2009 @935 TM8702 4. 2010 @939 TM8704 1. 2011 @940 TM8706 2. 31 The SAS System 13:09 Wednesday, April 16, 2003 2012 @942 TM8708 2. 2013 @944 TM8709 2. 2014 @946 TM8710 2. 2015 @948 TM8712 4. 2016 @952 TM8714 2. 2017 @954 TM8716 4. 2018 @958 TM8718 1. 2019 @959 TM8720 2. 2020 @961 TM8722 2. 2021 @963 TM8724 4. 2022 @967 TM8726 2. 2023 @969 TM8728 4. 2024 @973 TM8730 2. 2025 @975 TM8732 1. 2026 @976 TM8734 1. 2027 @977 TM8736 1. 2028 @978 IMP0002 1. 2029 @979 IMP8704 1. 2030 @980 IMP8706 1. 2031 @981 IMP8708 1. 2032 @982 IMP1012 1. 2033 @983 IMP8720 1. 2034 @984 IMP2224 1. 2035 @985 IMP2628 1. 2036 @986 IMP8730 1. 2037 @987 IMP8732 1. 2038 @988 IMP8734 1. 2039 @989 IMP8736 1. 2040 @993 TM8750 1. 2041 @994 TM8752 2. 2042 @996 TM8754 2. 2043 @998 TM8756 1. 2044 @999 TM8758 1. 2045 @1000 TM8760 2. 2046 @1002 TM8762 4. 2047 @1006 TM8764 3. 2048 @1009 TM8766 2. 2049 @1011 TM8768 4. 2050 @1015 TM8770 3. 2051 @1018 TM8778 1. 2052 @1019 TM8780 2. 2053 @1021 TM8782 4. 2054 @1025 TM8784 1. 2055 @1026 TM8786 2. 2056 @1028 TM8788 3. 2057 @1031 TM8792 2. 2058 @1033 TM8794 4. 2059 @1037 TM8796 1. 2060 @1038 TM8798 2. 2061 @1040 TM8800 3. 2062 @1043 IMP8754 1. 2063 @1044 IMP8782 1. 2064 @1045 IMP8780 1. 2065 @1046 IMP8786 1. 2066 @1047 IMP8758 1. 2067 @1048 IMP8794 1. 2068 @1049 IMP8792 1. 2069 @1050 IMP8798 1. 2070 ; 2071 2072 LABEL 2073 SUSEQNUM = "Sequence number of sample unit" 2074 ID = "Sample unit identifier" 2075 ROTATION = "Rotation group" 2076 STATE = "FIPS state code" 2077 PINX = "Person index from core" 2078 ADDID = "Current Address ID - This field differ" 2079 ITEM36B = "Household interview status code" 2080 INTVW = "Person's interview status" 2081 PPMIS1 = "Person's Interview Status: Reference M" 2082 PPMIS2 = "Person's Interview Status: Reference M" 2083 PPMIS3 = "Person's Interview Status: Reference M" 2084 PPMIS4 = "Person's Interview Status: Reference M" 2085 PPMIS5 = "Person's Interview Status: Reference M" 2086 ENTRY = "Entry address ID" 2087 PNUM = "Person number" 32 The SAS System 13:09 Wednesday, April 16, 2003 2088 FINALWGT = "Person weight (interview month)" 2089 RRP = "Relationship to reference person" 2090 AGE = "Age" 2091 SEX = "Sex" 2092 RACE = "Race" 2093 MS = "Marital status" 2094 PNSP = "Person number of spouse" 2095 PNPT = "Person number of parent" 2096 HIGRADE = "What is the highest grade or year of" 2097 GRDCMPL = "Did he/she complete that grade" 2098 ETHNICTY = "Ethnic origin" 2099 WAVE = "Wave number within Panel" 2100 TM9266 = "Check item T26" 2101 TM9272 = "Person number in column A" 2102 TM9274 = "Person number in column B" 2103 TM9276 = "Person number in column C" 2104 TM9278 = "Person number in column D" 2105 TM9280 = "Person number in column E" 2106 TM9282 = "Person number in column F" 2107 TM9284 = "Person number in column G" 2108 TM9286 = "Person number in column H" 2109 TM9288 = "Person number in column I" 2110 TM9290 = "Person number in column J" 2111 TM9292 = "Person number in column K" 2112 TM9294 = "Person number in column L" 2113 TM9296 = "Person number in column M" 2114 TM9298 = "Person number in column N" 2115 TM9300 = "Person number in row A" 2116 TM9330 = "Person number in row B" 2117 TM9332 = "Relationship of person in row B" 2118 TM9360 = "Person number in row C" 2119 TM9362 = "Relationship of person in row C to" 2120 TM9364 = "Relationship of person in row C to" 2121 TM9390 = "Person number in row D" 2122 TM9392 = "Relationship of person in row D to" 2123 TM9394 = "Relationship of person in row D to" 2124 TM9396 = "Relationship of person in row D to" 2125 TM9420 = "Person number in row E" 2126 TM9422 = "Relationship of person in row E to" 2127 TM9424 = "Relationship of person in row E to" 2128 TM9426 = "Relationship of person in row E to" 2129 TM9428 = "Relationship of person in row E to" 2130 TM9450 = "Person number in row F" 2131 TM9452 = "Relationship of person in row F to" 2132 TM9454 = "Relationship of person in row F to" 2133 TM9456 = "Relationship of person in row F to" 2134 TM9458 = "Relationship of person in row F to" 2135 TM9460 = "Relationship of person in row F to" 2136 TM9480 = "Person number in row G" 2137 TM9482 = "Relationship of person in row G to" 2138 TM9484 = "Relationship of person in row G to" 2139 TM9486 = "Relationship of person in row G to" 2140 TM9488 = "Relationship of person in row G to" 2141 TM9490 = "Relationship of person in row G to" 2142 TM9492 = "Relationship of person in row G to" 2143 TM9510 = "Person number in row H" 2144 TM9512 = "Relationship of person in row H" 2145 TM9514 = "Relationship of person in row H" 2146 TM9516 = "Relationship of person in row H" 2147 TM9518 = "Relationship of person in row H" 2148 TM9520 = "Relationship of person in row H" 2149 TM9522 = "Relationship of person in row H" 2150 TM9524 = "Relationship of person in row H" 2151 TM9540 = "Person number in row I" 2152 TM9542 = "Relationship of person in row I" 2153 TM9544 = "Relationship of person in row I" 2154 TM9546 = "Relationship of person in row I" 2155 TM9548 = "Relationship of person in row I" 2156 TM9550 = "Relationship of person in row I" 2157 TM9552 = "Relationship of person in row I" 2158 TM9554 = "Relationship of person in row I" 2159 TM9556 = "Relationship of person in row I" 2160 TM9570 = "Person number in row J" 2161 TM9572 = "Relationship of person in row J" 2162 TM9574 = "Relationship of person in row J" 2163 TM9576 = "Relationship of person in row J" 33 The SAS System 13:09 Wednesday, April 16, 2003 2164 TM9578 = "Relationship of person in row J" 2165 TM9580 = "Relationship of person in row J" 2166 TM9582 = "Relationship of person in row J" 2167 TM9584 = "Relationship of person in row J" 2168 TM9586 = "Relationship of person in row J" 2169 TM9588 = "Relationship of person in row J" 2170 TM9600 = "Person number in row K" 2171 TM9602 = "Relationship of person in row K" 2172 TM9604 = "Relationship of person in row K" 2173 TM9606 = "Relationship of person in row K" 2174 TM9608 = "Relationship of person in row K" 2175 TM9610 = "Relationship of person in row K" 2176 TM9612 = "Relationship of person in row K" 2177 TM9614 = "Relationship of person in row K" 2178 TM9616 = "Relationship of person in row K" 2179 TM9618 = "Relationship of person in row K" 2180 TM9620 = "Relationship of person in row K" 2181 TM9630 = "Person number in row L" 2182 TM9632 = "Relationship of person in row L" 2183 TM9634 = "Relationship of person in row L" 2184 TM9636 = "Relationship of person in row L" 2185 TM9638 = "Relationship of person in row L" 2186 TM9640 = "Relationship of person in row L" 2187 TM9642 = "Relationship of person in row L" 2188 TM9644 = "Relationship of person in row L" 2189 TM9646 = "Relationship of person in row L" 2190 TM9648 = "Relationship of person in row L" 2191 TM9650 = "Relationship of person in row L" 2192 TM9652 = "Relationship of person in row L" 2193 TM9660 = "Person number in row M" 2194 TM9662 = "Relationship of person in row M" 2195 TM9664 = "Relationship of person in row M" 2196 TM9666 = "Relationship of person in row M" 2197 TM9668 = "Relationship of person in row M" 2198 TM9670 = "Relationship of person in row M" 2199 TM9672 = "Relationship of person in row M" 2200 TM9674 = "Relationship of person in row M" 2201 TM9676 = "Relationship of person in row M" 2202 TM9678 = "Relationship of person in row M" 2203 TM9680 = "Relationship of person in row M" 2204 TM9682 = "Relationship of person in row M" 2205 TM9684 = "Relationship of person in row M" 2206 TM9690 = "Person number in row N" 2207 TM9692 = "Relationship of person in row N" 2208 TM9694 = "Relationship of person in row N" 2209 TM9696 = "Relationship of person in row N" 2210 TM9698 = "Relationship of person in row N" 2211 TM9700 = "Relationship of person in row N" 2212 TM9702 = "Relationship of person in row N" 2213 TM9704 = "Relationship of person in row N" 2214 TM9706 = "Relationship of person in row N" 2215 TM9708 = "Relationship of person in row N" 2216 TM9710 = "Relationship of person in row N" 2217 TM9712 = "Relationship of person in row N" 2218 TM9714 = "Relationship of person in row N" 2219 TM9716 = "Relationship of person in row N" 2220 UTM9266 = "Unedited TM9266" 2221 UTM9272 = "Unedited TM9272" 2222 UTM9274 = "Unedited TM9274" 2223 UTM9276 = "Unedited TM9276" 2224 UTM9278 = "Unedited TM9278" 2225 UTM9280 = "Unedited TM9280" 2226 UTM9282 = "Unedited TM9282" 2227 UTM9284 = "Unedited TM9284" 2228 UTM9286 = "Unedited TM9286" 2229 UTM9288 = "Unedited TM9288" 2230 UTM9290 = "Unedited TM9290" 2231 UTM9292 = "Unedited TM9292" 2232 UTM9294 = "Unedited TM9294" 2233 UTM9296 = "Unedited TM9296" 2234 UTM9298 = "Unedited TM9298" 2235 UTM9300 = "Unedited TM9300" 2236 UTM9330 = "Unedited TM9330" 2237 UTM9332 = "Unedited TM9332" 2238 UTM9360 = "Unedited TM9360" 2239 UTM9362 = "Unedited TM9362" 34 The SAS System 13:09 Wednesday, April 16, 2003 2240 UTM9364 = "Unedited TM9364" 2241 UTM9390 = "Unedited TM9390" 2242 UTM9392 = "Unedited TM9392" 2243 UTM9394 = "Unedited TM9394" 2244 UTM9396 = "Unedited TM9396" 2245 UTM9420 = "Unedited TM9420" 2246 UTM9422 = "Unedited TM9422" 2247 UTM9424 = "Unedited TM9424" 2248 UTM9426 = "Unedited TM9426" 2249 UTM9428 = "Unedited TM9428" 2250 UTM9450 = "Unedited TM9450" 2251 UTM9452 = "Unedited TM9452" 2252 UTM9454 = "Unedited TM9454" 2253 UTM9456 = "Unedited TM9456" 2254 UTM9458 = "Unedited TM9458" 2255 UTM9460 = "Unedited TM9460" 2256 UTM9480 = "Unedited TM9480" 2257 UTM9482 = "Unedited TM9482" 2258 UTM9484 = "Unedited TM9484" 2259 UTM9486 = "Unedited TM9486" 2260 UTM9488 = "Unedited TM9488" 2261 UTM9490 = "Unedited TM9490" 2262 UTM9492 = "Unedited TM9492" 2263 UTM9510 = "Unedited TM9510" 2264 UTM9512 = "Unedited TM9512" 2265 UTM9514 = "Unedited TM9514" 2266 UTM9516 = "Unedited TM9516" 2267 UTM9518 = "Unedited TM9518" 2268 UTM9520 = "Unedited TM9520" 2269 UTM9522 = "Unedited TM9522" 2270 UTM9524 = "Unedited TM9524" 2271 UTM9540 = "Unedited TM9540" 2272 UTM9542 = "Unedited TM9542" 2273 UTM9544 = "Unedited TM9544" 2274 UTM9546 = "Unedited TM9546" 2275 UTM9548 = "Unedited TM9548" 2276 UTM9550 = "Unedited TM9550" 2277 UTM9552 = "Unedited TM9552" 2278 UTM9554 = "Unedited TM9554" 2279 UTM9556 = "Unedited TM9556" 2280 UTM9570 = "Unedited TM9570" 2281 UTM9572 = "Unedited TM9572" 2282 UTM9574 = "Unedited TM9574" 2283 UTM9576 = "Unedited TM9576" 2284 UTM9578 = "Unedited TM9578" 2285 UTM9580 = "Unedited TM9580" 2286 UTM9582 = "Unedited TM9582" 2287 UTM9584 = "Unedited TM9584" 2288 UTM9586 = "Unedited TM9586" 2289 UTM9588 = "Unedited TM9588" 2290 UTM9600 = "Unedited TM9600" 2291 UTM9602 = "Unedited TM9602" 2292 UTM9604 = "Unedited TM9604" 2293 UTM9606 = "Unedited TM9606" 2294 UTM9608 = "Unedited TM9608" 2295 UTM9610 = "Unedited TM9610" 2296 UTM9612 = "Unedited TM9612" 2297 UTM9614 = "Unedited TM9614" 2298 UTM9616 = "Unedited TM9616" 2299 UTM9618 = "Unedited TM9618" 2300 UTM9620 = "Unedited TM9620" 2301 UTM9630 = "Unedited TM9630" 2302 UTM9632 = "Unedited TM9632" 2303 UTM9634 = "Unedited TM9634" 2304 UTM9636 = "Unedited TM9636" 2305 UTM9638 = "Unedited TM9638" 2306 UTM9640 = "Unedited TM9640" 2307 UTM9642 = "Unedited TM9642" 2308 UTM9644 = "Unedited TM9644" 2309 UTM9646 = "Unedited TM9646" 2310 UTM9648 = "Unedited TM9648" 2311 UTM9650 = "Unedited TM9650" 2312 UTM9652 = "Unedited TM9652" 2313 UTM9660 = "Unedited TM9660" 2314 UTM9662 = "Unedited TM9662" 2315 UTM9664 = "Unedited TM9664" 35 The SAS System 13:09 Wednesday, April 16, 2003 2316 UTM9666 = "Unedited TM9666" 2317 UTM9668 = "Unedited TM9668" 2318 UTM9670 = "Unedited TM9670" 2319 UTM9672 = "Unedited TM9672" 2320 UTM9674 = "Unedited TM9674" 2321 UTM9676 = "Unedited TM9676" 2322 UTM9678 = "Unedited TM9678" 2323 UTM9680 = "Unedited TM9680" 2324 UTM9682 = "Unedited TM9682" 2325 UTM9684 = "Unedited TM9684" 2326 UTM9690 = "Unedited TM9690" 2327 UTM9692 = "Unedited TM9692" 2328 UTM9694 = "Unedited TM9694" 2329 UTM9696 = "Unedited TM9696" 2330 UTM9698 = "Unedited TM9698" 2331 UTM9700 = "Unedited TM9700" 2332 UTM9702 = "Unedited TM9702" 2333 UTM9704 = "Unedited TM9704" 2334 UTM9706 = "Unedited TM9706" 2335 UTM9708 = "Unedited TM9708" 2336 UTM9710 = "Unedited TM9710" 2337 UTM9712 = "Unedited TM9712" 2338 UTM9714 = "Unedited TM9714" 2339 UTM9716 = "Unedited TM9716" 2340 ALTM9332 = "Imputation flag for TM9332." 2341 ALTM9362 = "Imputation flag for TM9362" 2342 ALTM9392 = "Imputation flag for TM9392." 2343 ALTM9422 = "Imputation flag for TM9422." 2344 ALTM9452 = "Imputation flag for TM9452" 2345 ALTM9482 = "Imputation flag for TM9482." 2346 ALTM9512 = "Imputation flag for TM9512." 2347 ALTM9542 = "Imputation flag for TM9542." 2348 ALTM9572 = "Imputation flag for TM9572." 2349 ALTM9602 = "Imputation flag for TM9602." 2350 ALTM9632 = "Imputation flag for TM9632." 2351 ALTM9662 = "Imputation flag for TM9662." 2352 ALTM9692 = "Imputation flag for TM9692." 2353 ALTM9364 = "Imputation flag for TM9364." 2354 ALTM9394 = "Imputation flag for TM9394." 2355 ALTM9424 = "Imputation flag for TM9424." 2356 ALTM9454 = "Imputation flag for TM9454." 2357 ALTM9484 = "Imputation flag for TM9484." 2358 ALTM9514 = "Imputation flag for TM9514." 2359 ALTM9544 = "Imputation flag for TM9544." 2360 ALTM9574 = "Imputation flag for TM9574." 2361 ALTM9604 = "Imputation flag for TM9604." 2362 ALTM9634 = "Imputation flag for TM9634." 2363 ALTM9664 = "Imputation flag for TM9664." 2364 ALTM9694 = "Imputation flag for TM9694." 2365 ALTM9396 = "Imputation flag for TM9396." 2366 ALTM9426 = "Imputation flag for TM9426" 2367 ALTM9456 = "Imputation flag for TM9456." 2368 ALTM9486 = "Imputation flag for TM9486." 2369 ALTM9516 = "Imputation flag for TM9516." 2370 ALTM9546 = "Imputation flag for TM9546." 2371 ALTM9576 = "Imputation flag for TM9576." 2372 ALTM9606 = "Imputation flag for TM9606." 2373 ALTM9636 = "Imputation flag for TM9636." 2374 ALTM9666 = "Imputation flag for TM9666." 2375 ALTM9696 = "Imputation flag for TM9696." 2376 ALTM9428 = "Imputation flag for TM9428." 2377 ALTM9458 = "Imputation flag for TM9458." 2378 ALTM9488 = "Imputation flag for TM9488." 2379 ALTM9518 = "Imputation flag for TM9518." 2380 ALTM9548 = "Imputation flag for TM9548." 2381 ALTM9578 = "Imputation flag for TM9578." 2382 ALTM9608 = "Imputation flag for TM9608" 2383 ALTM9638 = "Imputation flag for TM9638." 2384 ALTM9668 = "Imputation flag for TM9668." 2385 ALTM9698 = "Imputation flag for TM9698." 2386 ALTM9460 = "Imputation flag for TM9460." 2387 ALTM9490 = "Imputaiton flag for TM9490." 2388 ALTM9520 = "Imputation flag for TM9520." 2389 ALTM9550 = "Imputation flag for TM9550." 2390 ALTM9580 = "Imputation flag for TM9580." 2391 ALTM9610 = "Imputation flag for TM9610." 36 The SAS System 13:09 Wednesday, April 16, 2003 2392 ALTM9640 = "Imputation flag for TM9640." 2393 ALTM9670 = "Imputation flag for TM9670." 2394 ALTM9700 = "Imputation flag for TM9700." 2395 ALTM9492 = "Imputation flag for TM9492." 2396 ALTM9522 = "Imputation flag for TM9522." 2397 ALTM9552 = "Imputation flag for TM9552." 2398 ALTM9582 = "Imputation flag for TM9582." 2399 ALTM9612 = "Imputation flag for TM9612." 2400 ALTM9642 = "Impuation flag for TM9642." 2401 ALTM9672 = "Imputation flag for TM9672." 2402 ALTM9702 = "Imputation flag for TM9702." 2403 ALTM9524 = "Imputation flag for TM9524." 2404 ALTM9554 = "Imputation flag for TM9554." 2405 ALTM9584 = "Imputaiton flag for TM9584." 2406 ALTM9614 = "Imputation flag for TM9614." 2407 ALTM9644 = "Imputation flag for TM9644." 2408 ALTM9674 = "Imputation flag for TM9674." 2409 ALTM9704 = "Imputation flag for TM9704." 2410 ALTM9556 = "Imputation flag for TM9556." 2411 ALTM9586 = "Imputation flag for TM9586." 2412 ALTM9616 = "Imputation flag for TM9616." 2413 ALTM9646 = "Imputation flag for TM9646." 2414 ALTM9676 = "Imputation flag for TM9676." 2415 ALTM9706 = "Imputation flag for TM9706." 2416 ALTM9588 = "Imputation flag for TM9588." 2417 ALTM9618 = "Imputation flag for TM9618." 2418 ALTM9648 = "Imputation flag for TM9648." 2419 ALTM9678 = "Imputation flag for TM9678" 2420 ALTM9708 = "Imputation flag for TM9708." 2421 ALTM9620 = "Imputation flag for TM9620." 2422 ALTM9650 = "Imputation flag for TM9650." 2423 ALTM9680 = "Imputation flag for TM9680." 2424 ALTM9710 = "Imputation flag for TM9710." 2425 ALTM9652 = "Imputation flag for TM9652." 2426 ALTM9682 = "Imputation flag for TM9682." 2427 ALTM9712 = "Imputation flag for TM9712." 2428 ALTM9684 = "Imputation flag for TM9684." 2429 ALTM9714 = "Imputation flag for TM9714." 2430 ALTM9716 = "Imputation flag for TM9716." 2431 TM8300 = "Check item T1" 2432 TM8302 = "Check item T2" 2433 TM8304 = "Check item T3" 2434 TM8306 = "Respondent s health or condition" 2435 TM8308 = "Physical, mental or other health" 2436 TM8310 = "When did ... become limited in the kin" 2437 TM8312 = "When did ... become limited in the kin" 2438 TM8314 = "When did ... become limited in the kin" 2439 TM8316 = "Was ... employed at the time ...'s wor" 2440 TM8318 = "When was the last time ... worked befo" 2441 TM8320 = "When was the last time ... worked befo" 2442 TM8322 = "When was the last time ... worked befo" 2443 TM8324 = "What health condition is the main" 2444 TM8326 = "Was this condition (TM8324) caused by " 2445 TM8328 = "Where did the accident or injury take" 2446 TM8330 = "Check item T4" 2447 TM8332 = "Does ...'s health or condition prevent" 2448 TM8334 = "When did ... become unable to work at " 2449 TM8336 = "When did ... become unable to work at " 2450 TM8338 = "When did ... become unable to work at " 2451 TM8340 = "Check item T5" 2452 TM8342 = "Is ... now able to work at a full-time" 2453 TM8344 = "Is ... now able to work regularly or i" 2454 TM8346 = "Is ... now able to do the same kind of" 2455 IMP8306 = "Imputation flag 'TM8306'" 2456 IMP8308 = "Imputation flag 'TM8308'" 2457 IMP8310 = "Imputation flag 'TM8310'" 2458 IMP1214 = "Imputation flag 'TM8312, TM8314'" 2459 IMP8316 = "Imputation flag 'TM8316'" 2460 IMP8318 = "Imputation flag 'TM8318'" 2461 IMP2022 = "Imputation flag 'TM8320 - TM8322'" 2462 IMP8324 = "Imputation flag 'TM8324'" 2463 IMP8326 = "Imputation flag 'TM8326'" 2464 IMP8328 = "Imputation flag 'TM8328'" 2465 IMP8332 = "Imputation flag 'TM8332'" 2466 IMP8334 = "Imputation flag 'TM8334'" 2467 IMP3438 = "Imputation flag 'TM8334 - TM8338'" 37 The SAS System 13:09 Wednesday, April 16, 2003 2468 IMP8342 = "Imputation flag 'TM8342" 2469 IMP8344 = "Imputation flag 'TM8344'" 2470 IMP8346 = "Imputation flag 'TM8346'" 2471 TM8400 = "Check item T6" 2472 TM8402 = "When did ... last attend elementary or" 2473 TM8404 = "When did ... last attend elementary or" 2474 TM8406 = "When did ... last attend elementary or" 2475 TM8408 = "Has ... received a high school diploma" 2476 TM8410 = "When did ... receive a high school" 2477 TM8412 = "When did ... receive a high school" 2478 TM8414 = "Was the high school that ... attended" 2479 TM8416 = "Check item T7" 2480 TM8418 = "When did ... first attend college, a" 2481 TM8420 = "When did ... first attend college, a" 2482 TM8422 = "What is the highest degree beyond a" 2483 TM8424 = "When did ... receive the degree" 2484 TM8426 = "When did ... receive the degree" 2485 TM8428 = "In what field of study did ... receive" 2486 TM8430 = "Check item T8" 2487 TM8432 = "When did ... receive his/her Bachelor'" 2488 TM8434 = "When did ... receive his/her Bachelor'" 2489 TM8436 = "In what field of study was ... s" 2490 TM8438 = "When was the last time that ... was a" 2491 TM8440 = "When was the last time that ... was a" 2492 TM8442 = "When was the last time that ... was a" 2493 TM8444 = "Check item T9" 2494 TM8446 = "Has ... ever received training designe" 2495 TM8448 = "Received job training sponsored by:" 2496 TM8450 = "Received job training sponsored by:" 2497 TM8452 = "Received job training sponsored by:" 2498 TM8454 = "Received job training sponsored by:" 2499 TM8456 = "Received job training sponsored by:" 2500 TM8458 = "Received job training sponsored by:" 2501 TM8460 = "Type of training program:" 2502 TM8462 = "Type of training program:" 2503 TM8464 = "Type of training program:" 2504 TM8466 = "Type of training program:" 2505 TM8468 = "Type of training program:" 2506 TM8470 = "Type of training program:" 2507 TM8472 = "Where did ... receive this training?" 2508 TM8474 = "Where did ... receive this training?" 2509 TM8476 = "Where did ... receive this training?" 2510 TM8478 = "Where did ... receive this training?" 2511 TM8480 = "Where did ... receive this training?" 2512 TM8482 = "Where did ... receive this training?" 2513 TM8484 = "Where did ... receive this training?" 2514 TM8486 = "Where did ... receive this training?" 2515 TM8488 = "Where did ... receive this training?" 2516 TM8490 = "Where did ... receive this training?" 2517 TM8492 = "Where did ... receive this training?" 2518 TM8494 = "Where did ... receive this training?" 2519 TM8496 = "Does ... use this training on ...'s (m" 2520 TM8498 = "When did ... start this (most recent)" 2521 TM8500 = "When did ... start this (most recent)" 2522 TM8502 = "For how many weeks did ... attend this" 2523 TM8504 = "For how many weeks did ... attend this" 2524 TM8506 = "Who paid for this (most recent)" 2525 TM8508 = "Who paid for this (most recent)" 2526 TM8510 = "Who paid for this (most recent) progra" 2527 TM8512 = "Who paid for this (most recent) progra" 2528 IMP8414 = "Imputation flag: 'TM8414'" 2529 IMP8420 = "Imputation flag: 'TM8420'" 2530 IMP8422 = "Imputation flag: 'TM8422'" 2531 IMP8426 = "Imputation flag: 'TM8426'" 2532 IMP8428 = "Imputation flag: 'TM8428'" 2533 IMP8434 = "Imputation flag: 'TM8434'" 2534 IMP8436 = "Imputation flag: 'TM8436'" 2535 IMP8440 = "Imputation flag: 'TM8440'" 2536 IMP8446 = "Imputation flag: 'TM8446'" 2537 IMP4858 = "Imputation flag: 'TM8448 - TM8458'" 2538 IMP6070 = "Imputation flag: 'TM8460 - TM8470'" 2539 IMP7294 = "Imputation flag: 'TM8472 - TM8494'" 2540 IMP8496 = "Imputation flag: 'TM8496'" 2541 IMP8500 = "Imputation flag: 'TM8500'" 2542 IMP8502 = "Imputation flag: 'TM8502'" 2543 IMP0612 = "Imputation flag: 'TM8506 - 8512'" 38 The SAS System 13:09 Wednesday, April 16, 2003 2544 TM8600 = "Check item T10" 2545 TM8602 = "How many times has ... been" 2546 TM8604 = "Month of first marriage" 2547 TM8606 = "Year of first marriage" 2548 TM8608 = "Did ...'s first marriage end in" 2549 TM8610 = "Month of widowhood/divorce:" 2550 TM8612 = "Year of widowhood/divorce:" 2551 TM8614 = "Check item T11" 2552 TM8616 = "Month ... stopped living with" 2553 TM8618 = "Year ... stopped living with" 2554 TM8620 = "Check item T12" 2555 TM8622 = "Month of second marriage" 2556 TM8624 = "Year of second marriage" 2557 TM8626 = "Did ...'s second marriage end in" 2558 TM8628 = "Month of widowhood/divorce:" 2559 TM8630 = "Year of widowhood, divorce:" 2560 TM8632 = "Check item T13" 2561 TM8634 = "Month ... stopped living with second" 2562 TM8636 = "Year ... stopped living with" 2563 TM8638 = "Check item T14" 2564 TM8640 = "Month of current or most recent" 2565 TM8642 = "Year of current or most recent" 2566 TM8644 = "Check item T15" 2567 TM8646 = "Month of widowhood/divorce: Current" 2568 TM8648 = "In what month and year was ..." 2569 TM8650 = "Check item T16" 2570 TM8652 = "Month ... stopped living with" 2571 TM8654 = "Year ... stopped living with" 2572 IMP8602 = "Imputation flag for 'TM8602'" 2573 IMP8608 = "Imputation flag for 'TM8608'" 2574 IMP8626 = "Imputation flag for 'TM8626'" 2575 TM8700 = "Month ... moved into this" 2576 TM8702 = "Year ... moved into this" 2577 TM8704 = "Before living here, where did ... live" 2578 TM8706 = "Before living here, where did ... live" 2579 TM8708 = "Before living here, where did ... live" 2580 TM8709 = "Date of residence - Other" 2581 TM8710 = "Date of residence - From Month" 2582 TM8712 = "Date of residence: From year" 2583 TM8714 = "Date of residence: To Month" 2584 TM8716 = "Date of residence: To Year" 2585 TM8718 = "Has ... ever lived in another" 2586 TM8720 = "State or foreign country described" 2587 TM8722 = "Date of residence: From Month" 2588 TM8724 = "Date of residence: From Year" 2589 TM8726 = "Date of residence: To Month" 2590 TM8728 = "Date of residence: To Year" 2591 TM8730 = "In what state or foreign country" 2592 TM8732 = "Check item T17" 2593 TM8734 = "Is ... a naturalized citizen of the" 2594 TM8736 = "When did ... come to the United" 2595 IMP0002 = "Imputation flag: 'TM8700 - TM8702'" 2596 IMP8704 = "Imputation flag: 'TM8704'" 2597 IMP8706 = "Imputation flag: 'TM8706'" 2598 IMP8708 = "Imputation flag: 'TM8708'" 2599 IMP1012 = "Imputation flag: 'TM8710 - TM8712'" 2600 IMP8720 = "Imputation flag: 'TM8720'" 2601 IMP2224 = "Imputation flag: 'TM8722 - TM8724'" 2602 IMP2628 = "Imputation flag: 'TM8726 - TM8728'" 2603 IMP8730 = "Imputation flag: 'TM8730'" 2604 IMP8732 = "Imputation flag: 'TM8732'" 2605 IMP8734 = "Imputation flag: 'TM8734'" 2606 IMP8736 = "Imputation flag: 'TM8736'" 2607 TM8750 = "Check item T18" 2608 TM8752 = "How many children, if any, is" 2609 TM8754 = "How many children, if any, has" 2610 TM8756 = "Check item T19" 2611 TM8758 = "Are all of ...'s children currently" 2612 TM8760 = "Check item T20" 2613 TM8762 = "Check item T20" 2614 TM8764 = "Check item T20" 2615 TM8766 = "Check item T20" 2616 TM8768 = "Check item T20" 2617 TM8770 = "Check item T20" 2618 TM8778 = "Check item T21" 2619 TM8780 = "Birth Month: Last child" 39 The SAS System 13:09 Wednesday, April 16, 2003 2620 TM8782 = "Birth Year: Last child" 2621 TM8784 = "Check item T22" 2622 TM8786 = "With whom does the last child live now" 2623 TM8788 = "Check item T23" 2624 TM8792 = "Birth Month: First child" 2625 TM8794 = "Birth Year: First child" 2626 TM8796 = "Check item T24" 2627 TM8798 = "With whom does the first child" 2628 TM8800 = "Check item T25" 2629 IMP8754 = "Imputation flag: 'TM8754'" 2630 IMP8782 = "Imputation flag: 'TM8782'" 2631 IMP8780 = "Imputation flag: 'TM8780'" 2632 IMP8786 = "Imputation flag: 'TM8786'" 2633 IMP8758 = "Imputation flag: 'TM8758'" 2634 IMP8794 = "Imputation flag: 'TM8794'" 2635 IMP8792 = "Imputation flag: 'TM8792'" 2636 IMP8798 = "Imputation flag: 'TM8798'" 2637 ; 2638 NOTE: The infile RAW is: Pipe command="unzip -p /homes/data/sipp/1992/sipp92t2.zip " NOTE: 100 records were read from the infile RAW. The minimum record length was 1053. The maximum record length was 1053. NOTE: The data set LIBRARY.SIP92T2 has 100 observations and 564 variables. NOTE: DATA statement used: real time 0.980 seconds cpu time 0.544 seconds 2639 proc print data=library.sip92t2 (obs=6); 2640 2641 2642 FORMAT 2643 ROTATION ROTATION. 2644 ITEM36B ITEM36B. 2645 INTVW INTVW. 2646 PPMIS1 PPMIS1L. 2647 PPMIS2 PPMIS2L. 2648 PPMIS3 PPMIS3L. 2649 PPMIS4 PPMIS4L. 2650 PPMIS5 PPMIS5L. 2651 RRP RRP. 2652 AGE AGE. 2653 SEX SEX. 2654 RACE RACE. 2655 MS MS. 2656 PNSP PNSP. 2657 PNPT PNPT. 2658 HIGRADE HIGRADE. 2659 GRDCMPL GRDCMPL. 2660 ETHNICTY ETHNICTY. 2661 TM9266 TM9266L. 2662 TM9300 TM9300L. 2663 TM9330 TM9330L. 2664 TM9332 TM9332L. 2665 TM9360 TM9360L. 2666 TM9390 TM9390L. 2667 TM9420 TM9420L. 2668 TM9450 TM9450L. 2669 TM9480 TM9480L. 2670 TM9510 TM9510L. 2671 TM9540 TM9540L. 2672 TM9570 TM9570L. 2673 TM9600 TM9600L. 2674 TM9630 TM9630L. 2675 TM9660 TM9660L. 2676 TM9690 TM9690L. 2677 TM8300 TM8300L. 2678 TM8302 TM8302L. 2679 TM8304 TM8304L. 2680 TM8306 TM8306L. 2681 TM8308 TM8308L. 2682 TM8310 TM8310L. 40 The SAS System 13:09 Wednesday, April 16, 2003 2683 TM8312 TM8312L. 2684 TM8314 TM8314L. 2685 TM8316 TM8316L. 2686 TM8318 TM8318L. 2687 TM8320 TM8320L. 2688 TM8322 TM8322L. 2689 TM8324 TM8324L. 2690 TM8326 TM8326L. 2691 TM8328 TM8328L. 2692 TM8330 TM8330L. 2693 TM8332 TM8332L. 2694 TM8334 TM8334L. 2695 TM8336 TM8336L. 2696 TM8338 TM8338L. 2697 TM8340 TM8340L. 2698 TM8342 TM8342L. 2699 TM8344 TM8344L. 2700 TM8346 TM8346L. 2701 IMP8306 IMP8306L. 2702 IMP8308 IMP8308L. 2703 IMP8310 IMP8310L. 2704 IMP1214 IMP1214L. 2705 IMP8316 IMP8316L. 2706 IMP8318 IMP8318L. 2707 IMP2022 IMP2022L. 2708 IMP8324 IMP8324L. 2709 IMP8326 IMP8326L. 2710 IMP8328 IMP8328L. 2711 IMP8332 IMP8332L. 2712 IMP8334 IMP8334L. 2713 IMP3438 IMP3438L. 2714 IMP8342 IMP8342L. 2715 IMP8344 IMP8344L. 2716 IMP8346 IMP8346L. 2717 TM8400 TM8400L. 2718 TM8402 TM8402L. 2719 TM8404 TM8404L. 2720 TM8406 TM8406L. 2721 TM8408 TM8408L. 2722 TM8410 TM8410L. 2723 TM8412 TM8412L. 2724 TM8414 TM8414L. 2725 TM8416 TM8416L. 2726 TM8418 TM8418L. 2727 TM8420 TM8420L. 2728 TM8422 TM8422L. 2729 TM8424 TM8424L. 2730 TM8426 TM8426L. 2731 TM8428 TM8428L. 2732 TM8430 TM8430L. 2733 TM8432 TM8432L. 2734 TM8434 TM8434L. 2735 TM8436 TM8436L. 2736 TM8438 TM8438L. 2737 TM8440 TM8440L. 2738 TM8442 TM8442L. 2739 TM8444 TM8444L. 2740 TM8446 TM8446L. 2741 TM8448 TM8448L. 2742 TM8450 TM8450L. 2743 TM8452 TM8452L. 2744 TM8454 TM8454L. 2745 TM8456 TM8456L. 2746 TM8458 TM8458L. 2747 TM8460 TM8460L. 2748 TM8462 TM8462L. 2749 TM8464 TM8464L. 2750 TM8466 TM8466L. 2751 TM8468 TM8468L. 2752 TM8470 TM8470L. 2753 TM8472 TM8472L. 2754 TM8474 TM8474L. 2755 TM8476 TM8476L. 2756 TM8478 TM8478L. 2757 TM8480 TM8480L. 2758 TM8482 TM8482L. 41 The SAS System 13:09 Wednesday, April 16, 2003 2759 TM8484 TM8484L. 2760 TM8486 TM8486L. 2761 TM8488 TM8488L. 2762 TM8490 TM8490L. 2763 TM8492 TM8492L. 2764 TM8494 TM8494L. 2765 TM8496 TM8496L. 2766 TM8498 TM8498L. 2767 TM8500 TM8500L. 2768 TM8502 TM8502L. 2769 TM8504 TM8504L. 2770 TM8506 TM8506L. 2771 TM8508 TM8508L. 2772 TM8510 TM8510L. 2773 TM8512 TM8512L. 2774 IMP8414 IMP8414L. 2775 IMP8420 IMP8420L. 2776 IMP8422 IMP8422L. 2777 IMP8426 IMP8426L. 2778 IMP8428 IMP8428L. 2779 IMP8434 IMP8434L. 2780 IMP8436 IMP8436L. 2781 IMP8440 IMP8440L. 2782 IMP8446 IMP8446L. 2783 IMP4858 IMP4858L. 2784 IMP6070 IMP6070L. 2785 IMP7294 IMP7294L. 2786 IMP8496 IMP8496L. 2787 IMP8500 IMP8500L. 2788 IMP8502 IMP8502L. 2789 IMP0612 IMP0612L. 2790 TM8600 TM8600L. 2791 TM8602 TM8602L. 2792 TM8604 TM8604L. 2793 TM8606 TM8606L. 2794 TM8608 TM8608L. 2795 TM8610 TM8610L. 2796 TM8612 TM8612L. 2797 TM8614 TM8614L. 2798 TM8616 TM8616L. 2799 TM8618 TM8618L. 2800 TM8620 TM8620L. 2801 TM8622 TM8622L. 2802 TM8624 TM8624L. 2803 TM8626 TM8626L. 2804 TM8628 TM8628L. 2805 TM8630 TM8630L. 2806 TM8632 TM8632L. 2807 TM8634 TM8634L. 2808 TM8636 TM8636L. 2809 TM8638 TM8638L. 2810 TM8640 TM8640L. 2811 TM8642 TM8642L. 2812 TM8644 TM8644L. 2813 TM8646 TM8646L. 2814 TM8648 TM8648L. 2815 TM8650 TM8650L. 2816 TM8652 TM8652L. 2817 TM8654 TM8654L. 2818 IMP8602 IMP8602L. 2819 IMP8608 IMP8608L. 2820 IMP8626 IMP8626L. 2821 TM8700 TM8700L. 2822 TM8702 TM8702L. 2823 TM8704 TM8704L. 2824 TM8706 TM8706L. 2825 TM8708 TM8708L. 2826 TM8709 TM8709L. 2827 TM8710 TM8710L. 2828 TM8712 TM8712L. 2829 TM8714 TM8714L. 2830 TM8716 TM8716L. 2831 TM8718 TM8718L. 2832 TM8720 TM8720L. 2833 TM8722 TM8722L. 2834 TM8724 TM8724L. 42 The SAS System 13:09 Wednesday, April 16, 2003 2835 TM8726 TM8726L. 2836 TM8728 TM8728L. 2837 TM8730 TM8730L. 2838 TM8732 TM8732L. 2839 TM8734 TM8734L. 2840 TM8736 TM8736L. 2841 IMP0002 IMP0002L. 2842 IMP8704 IMP8704L. 2843 IMP8706 IMP8706L. 2844 IMP8708 IMP8708L. 2845 IMP1012 IMP1012L. 2846 IMP8720 IMP8720L. 2847 IMP2224 IMP2224L. 2848 IMP2628 IMP2628L. 2849 IMP8730 IMP8730L. 2850 IMP8732 IMP8732L. 2851 IMP8734 IMP8734L. 2852 IMP8736 IMP8736L. 2853 TM8750 TM8750L. 2854 TM8752 TM8752L. 2855 TM8754 TM8754L. 2856 TM8756 TM8756L. 2857 TM8758 TM8758L. 2858 TM8760 TM8760L. 2859 TM8762 TM8762L. 2860 TM8764 TM8764L. 2861 TM8766 TM8766L. 2862 TM8768 TM8768L. 2863 TM8770 TM8770L. 2864 TM8778 TM8778L. 2865 TM8780 TM8780L. 2866 TM8782 TM8782L. 2867 TM8784 TM8784L. 2868 TM8786 TM8786L. 2869 TM8788 TM8788L. 2870 TM8792 TM8792L. 2871 TM8794 TM8794L. 2872 TM8796 TM8796L. 2873 TM8798 TM8798L. 2874 TM8800 TM8800L. 2875 IMP8754 IMP8754L. 2876 IMP8782 IMP8782L. 2877 IMP8780 IMP8780L. 2878 IMP8786 IMP8786L. 2879 IMP8758 IMP8758L. 2880 IMP8794 IMP8794L. 2881 IMP8792 IMP8792L. 2882 IMP8798 IMP8798L. 2883 ; NOTE: The PROCEDURE PRINT printed pages 1-8. NOTE: PROCEDURE PRINT used: real time 4.030 seconds cpu time 2.472 seconds 2884 proc contents data=library.sip92t2; WARNING: No datasets qualify for FIRSTOBS and OBS processing. NOTE: The PROCEDURE CONTENTS printed pages 9-17. NOTE: PROCEDURE CONTENTS used: real time 0.100 seconds cpu time 0.066 seconds NOTE: The SAS System used: real time 6.520 seconds cpu time 3.895 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414