1 The SAS System 13:18 Wednesday, March 26, 2008 NOTE: Copyright (c) 2002-2003 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) 9.1 (TS1M3) Licensed to HARVARD UNIV - SCHOOL OF PUBLIC HEALTH - T&R, Site 0001177014. NOTE: This session is executing on the SunOS 5.9 platform. NOTE: SAS 9.1.3 Service Pack 3 ----------------------------------------------------------------------- NBER NOTE: sas now defaults to sas9. sas8 or sas6 will invoke sas version 8 or 6 respectively. - 2005/10/21 ----------------------------------------------------------------------- You are running SAS 9. Some SAS 8 files will be automatically converted by the V9 engine; others are incompatible. Please see http://support.sas.com/rnd/migration/planning/platform/64bit.html PROC MIGRATE will preserve current SAS file attributes and is recommended for converting all your SAS libraries from any SAS 8 release to SAS 9. For details and examples, please see http://support.sas.com/rnd/migration/index.html This message is contained in the SAS news file, and is presented upon initialization. Edit the file "news" in the "misc/base" directory to display site-specific news and information in the program log. The command line option "-nonews" will prevent this display. NOTE: SAS initialization used: real time 0.68 seconds cpu time 0.17 seconds 1 2 /*------------------------------------------------------------------------------------*/ 3 /*by Jean Roth Tue Nov 4 11:37:24 EST 2003 4 This program reads the 1996 SIPP Wave 1 Topical Module Data File 5 NOTE: This program is distributed under the GNU GPL. See end of 6 this file and http://www.gnu.org/licenses/ for details. 7 Please report errors to jroth@nber.org 8 Six steps: 9 (1) Uncomment the 'options compress=yes' statement if desired to save space 10 (2) Uncomment 'LENGTH' statement if desired to save space 11 (3) Specify output directories in 'libname' statements 12 (4) Specify the input file name/location in the 'filename' statement 13 (5) On a PC, use backslashes as in C:\ 14 (6) Read in the compressed or uncompressed raw data file. See the 15 'filename' and 'INFILE' statements. 16 Other changes may be user and platform specific. 17 NOTE: A value of -1 (or -1/# of implied decimals) indicates 'Not in Universe' */ 18 /*------------------------------------------------------------------------------------*/ 19 20 *options obs=100; 21 *options compress=yes; 22 *Choose compress=yes to save space ; 23 *Choose compress=no if converting to another package using transfer software ; 2 The SAS System 13:18 Wednesday, March 26, 2008 24 *options pagesize=59 linesize=72; 25 26 /*------------------------------------------------------------------------------------*/ 27 28 29 libname library './'; NOTE: Directory for library LIBRARY contains files of mixed engine types. NOTE: Libref LIBRARY was successfully assigned as follows: Engine: V9 Physical Name: /disk/nber10/SCCS/sipp/1996 30 31 *See the codebook for more detail; 32 PROC FORMAT cntlout=library.fsp96t1; 33 34 /* 35 The PROC FORMAT statement will store the formats in a sas data set called fsip96t1 36 To use the stored formats in a subsequent program, include something like this: 37 38 proc format cntlin=library.fsp96t1; 39 PROC freq; 40 tables pesex ; 41 format pesex P135L.; 42 43 For more information, consult the SAS Procedures Guide section of PROC FORMAT 44 */ 45 ; 46 VALUE SPANEL (default=32) 47 1996 = "Panel Year" 48 ; NOTE: Format SPANEL has been output. 49 VALUE TFIPSST (default=32) 50 1 = "Alabama" 51 2 = "Alaska" 52 4 = "Arizona" 53 5 = "Arkansas" 54 6 = "California" 55 8 = "Colorado" 56 9 = "Connecticut" 57 10 = "Delaware" 58 11 = "DC" 59 12 = "Florida" 60 13 = "Georgia" 61 15 = "Hawaii" 62 16 = "Idaho" 63 17 = "Illinois" 64 18 = "Indiana" 65 19 = "Iowa" 66 20 = "Kansas" 67 21 = "Kentucky" 68 22 = "Louisiana" 69 24 = "Maryland" 70 25 = "Massachusetts" 71 26 = "Michigan" 72 27 = "Minnesota" 73 28 = "Mississippi" 74 29 = "Missouri" 75 30 = "Montana" 76 31 = "Nebraska" 3 The SAS System 13:18 Wednesday, March 26, 2008 77 32 = "Nevada" 78 33 = "New Hampshire" 79 34 = "New Jersey" 80 35 = "New Mexico" 81 36 = "New York" 82 37 = "North Carolina" 83 39 = "Ohio" 84 40 = "Oklahoma" 85 41 = "Oregon" 86 42 = "Pennsylvania" 87 44 = "Rhode Island" 88 45 = "South Carolina" 89 47 = "Tennessee" 90 48 = "Texas" 91 49 = "Utah" 92 51 = "Virginia" 93 53 = "Washington" 94 54 = "West Virginia" 95 55 = "Wisconsin" 96 61 = "Maine, Vermont" 97 62 = "North Dakota, South Dakota," 98 ; NOTE: Format TFIPSST has been output. 99 VALUE EOUTCOME (default=32) 100 201 = "Completed interview" 101 203 = "Compl. partial- missing data; no" 102 207 = "Complete partial - TYPE-Z; no" 103 213 = "TYPE-A, language problem" 104 215 = "TYPE-A, insufficient partial" 105 216 = "TYPE-A, no one home (noh)" 106 217 = "TYPE-A, temporarily absent (ta)" 107 218 = "TYPE-A, hh refused" 108 219 = "TYPE-A, other occupied (specify)" 109 234 = "TYPE-B, entire hh institut. or" 110 248 = "TYPE-C, other (specify)" 111 249 = "TYPE-C, sample adjustment" 112 250 = "TYPE-C, hh deceased" 113 251 = "TYPE-C, moved out of country" 114 252 = "TYPE-C, living in armed forces" 115 253 = "TYPE-C, on active duty in Armed" 116 254 = "TYPE-C, no one over age 15 years" 117 255 = "TYPE-C, no Wave 1 persons" 118 260 = "TYPE-D, moved address unknown" 119 261 = "TYPE-D, moved w/in U.S. but" 120 262 = "Merged with another SIPP" 121 270 = "Mover, no longer located in same" 122 271 = "Mover, new address located in" 123 280 = "Newly spawned case outside fr's" 124 ; NOTE: Format EOUTCOME has been output. 125 VALUE RFID2L (default=32) 126 0 = "Member of related subfamily" 127 ; NOTE: Format RFID2L has been output. 128 VALUE EPOPSTAT (default=32) 129 1 = "Adult (15 years of age or older)" 130 2 = "Child (Under 15 years of age)" 131 ; 4 The SAS System 13:18 Wednesday, March 26, 2008 NOTE: Format EPOPSTAT has been output. 132 VALUE EPPINTVW (default=32) 133 1 = "Interview (self)" 134 2 = "Interview (proxy)" 135 3 = "Noninterview - Type Z" 136 4 = "Nonintrvw - pseudo Type Z. Left" 137 5 = "Children under 15 during" 138 ; NOTE: Format EPPINTVW has been output. 139 VALUE EPPMIS4L (default=32) 140 1 = "Interview" 141 2 = "Non-interview" 142 ; NOTE: Format EPPMIS4L has been output. 143 VALUE ESEX (default=32) 144 1 = "Male" 145 2 = "Female" 146 ; NOTE: Format ESEX has been output. 147 VALUE ERACE (default=32) 148 1 = "White" 149 2 = "Black" 150 3 = "American Indian, Aleut, or" 151 4 = "Asian or Pacific Islander" 152 ; NOTE: Format ERACE has been output. 153 VALUE EORIGIN (default=32) 154 1 = "Canadian" 155 2 = "Dutch" 156 3 = "English" 157 4 = "French" 158 5 = "French-Canadian" 159 6 = "German" 160 7 = "Hungarian" 161 8 = "Irish" 162 9 = "Italian" 163 10 = "Polish" 164 11 = "Russian" 165 12 = "Scandinavian" 166 13 = "Scotch-Irish" 167 14 = "Scottish" 168 15 = "Slovak" 169 16 = "Welsh" 170 17 = "Other European" 171 20 = "Mexican" 172 21 = "Mexican-American" 173 22 = "Chicano" 174 23 = "Puerto Rican" 175 24 = "Cuban" 176 25 = "Central American" 177 26 = "South American" 178 27 = "Dominican Republic" 179 28 = "Other Hispanic" 180 30 = "African-American or" 181 31 = "American Indian, Eskimo, or" 182 32 = "Arab" 183 33 = "Asian" 184 34 = "Pacific Islander" 5 The SAS System 13:18 Wednesday, March 26, 2008 185 35 = "West Indian" 186 39 = "Another group not listed" 187 40 = "American" 188 ; NOTE: Format EORIGIN has been output. 189 VALUE ERRP (default=32) 190 1 = "Reference person w/ rel. persons" 191 2 = "Reference Person w/out rel." 192 3 = "Spouse of reference person" 193 4 = "Child of reference person" 194 5 = "Grandchild of reference person" 195 6 = "Parent of reference person" 196 7 = "Brother/sister of reference" 197 8 = "Other relative of reference" 198 9 = "Foster child of reference person" 199 10 = "Unmarried partner of reference" 200 11 = "Housemate/roommate" 201 12 = "Roomer/boarder" 202 13 = "Other non-relative of reference" 203 ; NOTE: Format ERRP has been output. 204 VALUE EMS (default=32) 205 1 = "Married, spouse present" 206 2 = "Married, Spouse absent" 207 3 = "Widowed" 208 4 = "Divorced" 209 5 = "Separated" 210 6 = "Never Married" 211 ; NOTE: Format EMS has been output. 212 VALUE EPNMOM (default=32) 213 9999 = "No mother in household" 214 ; NOTE: Format EPNMOM has been output. 215 VALUE EPNDAD (default=32) 216 9999 = "No father in household" 217 ; NOTE: Format EPNDAD has been output. 218 VALUE EPNGUARD (default=32) 219 -1 = "Not in universe" 220 9999 = "Guardian not in household" 221 ; NOTE: Format EPNGUARD has been output. 222 VALUE EPNSPOUS (default=32) 223 9999 = "Spouse not in hhld or person not" 224 ; NOTE: Format EPNSPOUS has been output. 225 VALUE RDESGPNT (default=32) 226 -1 = "Not in universe" 227 1 = "Yes" 228 2 = "No" 229 ; NOTE: Format RDESGPNT has been output. 230 VALUE TAGE (default=32) 231 0 = "Less than 1 full year old" 232 ; NOTE: Format TAGE has been output. 233 VALUE EEDUCATE (default=32) 6 The SAS System 13:18 Wednesday, March 26, 2008 234 -1 = "Not in universe" 235 31 = "Less than 1st grade" 236 32 = "1st, 2nd, 3rd or 4th grade" 237 33 = "5th or 6th grade" 238 34 = "7th or 8th grade" 239 35 = "9th grade" 240 36 = "10th grade" 241 37 = "11th grade" 242 38 = "12th grade" 243 39 = "High school graduate - high" 244 40 = "Some college but no degree" 245 41 = "Diploma or certificate from a" 246 42 = "Associate degree in college -" 247 43 = "Associate Degree in college -" 248 44 = "Bachelors degree (For example:" 249 45 = "Master's degree (For example:" 250 46 = "Professional School Degree (For" 251 47 = "Doctorate degree (For example:" 252 ; NOTE: Format EEDUCATE has been output. 253 VALUE TLSTWRKY (default=32) 254 -1 = "Not in universe" 255 0 = "Never worked" 256 ; NOTE: Format TLSTWRKY has been output. 257 VALUE ELSTWRKM (default=32) 258 -1 = "Not in Universe" 259 ; NOTE: Format ELSTWRKM has been output. 260 VALUE TPRVJBYR (default=32) 261 -1 = "Not in universe" 262 0 = "Never worked" 263 ; NOTE: Format TPRVJBYR has been output. 264 VALUE EPRVJBMN (default=32) 265 -1 = "Not in Universe" 266 ; NOTE: Format EPRVJBMN has been output. 267 VALUE TFRMRYR (default=32) 268 -1 = "Not in Universe" 269 ; NOTE: Format TFRMRYR has been output. 270 VALUE EFRMRMN (default=32) 271 -1 = "Not in Universe" 272 ; NOTE: Format EFRMRMN has been output. 273 VALUE TMAKMNYR (default=32) 274 -1 = "Not in Universe" 275 0 = "Never worked 6 straight months" 276 ; NOTE: Format TMAKMNYR has been output. 277 VALUE EMNRESON (default=32) 278 -1 = "Not in Universe" 279 1 = "Taking care of minor child" 280 2 = "Taking care of an elderly family" 281 3 = "Taking care of disabled but" 282 4 = "Other family or home" 283 5 = "Own illness or disability" 7 The SAS System 13:18 Wednesday, March 26, 2008 284 6 = "Could not find work" 285 7 = "Did not want to work" 286 8 = "Going to school" 287 9 = "Other" 288 ; NOTE: Format EMNRESON has been output. 289 VALUE EYRSINCE (default=32) 290 -1 = "Not in Universe" 291 1 = "Yes" 292 2 = "No" 293 ; NOTE: Format EYRSINCE has been output. 294 VALUE EYRSINCK (default=32) 295 -1 = "Not in Universe" 296 ; NOTE: Format EYRSINCK has been output. 297 VALUE EWRK35HR (default=32) 298 -1 = "Not in universe" 299 1 = "Yes" 300 2 = "No" 301 ; NOTE: Format EWRK35HR has been output. 302 VALUE EOFF6MTN (default=32) 303 -1 = "Not in Universe" 304 1 = "Yes" 305 2 = "No" 306 ; NOTE: Format EOFF6MTN has been output. 307 VALUE TNOWRKFR (default=32) 308 -1 = "Not in Universe" 309 ; NOTE: Format TNOWRKFR has been output. 310 VALUE TNOWRKTO (default=32) 311 -1 = "Not in Universe" 312 ; NOTE: Format TNOWRKTO has been output. 313 VALUE EOTHTIME (default=32) 314 -1 = "Not in Universe" 315 1 = "Yes" 316 2 = "No" 317 ; NOTE: Format EOTHTIME has been output. 318 VALUE ECNTOTHR (default=32) 319 -1 = "Not in Universe" 320 ; NOTE: Format ECNTOTHR has been output. 321 VALUE TFSTYRFR (default=32) 322 -1 = "Not in Universe" 323 ; NOTE: Format TFSTYRFR has been output. 324 VALUE TFSTYRTO (default=32) 325 -1 = "Not in Universe" 326 ; NOTE: Format TFSTYRTO has been output. 327 VALUE ENWRESN (default=32) 328 -1 = "Not in Universe" 329 1 = "A minor child" 330 2 = "An elderly family member" 8 The SAS System 13:18 Wednesday, March 26, 2008 331 3 = "A disabled but non-elderly" 332 ; NOTE: Format ENWRESN has been output. 333 VALUE EFRSTRSN (default=32) 334 -1 = "Not in Universe" 335 1 = "A minor child" 336 2 = "An elderly family member" 337 3 = "A disabled but non-elderly" 338 ; NOTE: Format EFRSTRSN has been output. 339 VALUE ALSTWRKY (default=32) 340 0 = "Not imputed" 341 1 = "Imputed" 342 2 = "Cold Deck Imputation" 343 3 = "Logical Imputation (Derivation)" 344 ; NOTE: Format ALSTWRKY has been output. 345 VALUE ALSTWRKM (default=32) 346 0 = "Not imputed" 347 1 = "Imputed" 348 2 = "Cold Deck Imputation" 349 3 = "Logical Imputation (Derivation)" 350 ; NOTE: Format ALSTWRKM has been output. 351 VALUE APRVJBYR (default=32) 352 0 = "Not imputed" 353 1 = "Imputed" 354 2 = "Cold Deck Imputation" 355 3 = "Logical Imputation (Derivation)" 356 ; NOTE: Format APRVJBYR has been output. 357 VALUE APRVJBMN (default=32) 358 0 = "Not imputed" 359 1 = "Imputed" 360 2 = "Cold Deck Imputation" 361 3 = "Logical Imputation (Derivation)" 362 ; NOTE: Format APRVJBMN has been output. 363 VALUE AFRMRYR (default=32) 364 0 = "Not imputed" 365 1 = "Imputed" 366 2 = "Cold Deck Imputation" 367 3 = "Logical Imputation (Derivation)" 368 ; NOTE: Format AFRMRYR has been output. 369 VALUE AFRMRMN (default=32) 370 0 = "Not imputed" 371 1 = "Imputed" 372 2 = "Cold Deck Imputation" 373 3 = "Logical Imputation (Derivation)" 374 ; NOTE: Format AFRMRMN has been output. 375 VALUE AMAKMNYR (default=32) 376 0 = "Not imputed" 377 1 = "Imputed" 378 2 = "Cold Deck Imputation" 379 3 = "Logical Imputation (Derivation)" 380 ; 9 The SAS System 13:18 Wednesday, March 26, 2008 NOTE: Format AMAKMNYR has been output. 381 VALUE AMNRESON (default=32) 382 0 = "Not imputed" 383 1 = "Imputed" 384 2 = "Cold Deck Imputation" 385 3 = "Logical Imputation (Derivation)" 386 ; NOTE: Format AMNRESON has been output. 387 VALUE AYRSINCE (default=32) 388 0 = "Not imputed" 389 1 = "Imputed" 390 2 = "Cold Deck Imputation" 391 3 = "Logical Imputation (Derivation)" 392 ; NOTE: Format AYRSINCE has been output. 393 VALUE AYRSINCK (default=32) 394 0 = "Not imputed" 395 1 = "Imputed" 396 2 = "Cold Deck Imputation" 397 3 = "Logical Imputation (Derivation)" 398 ; NOTE: Format AYRSINCK has been output. 399 VALUE AWRK35HR (default=32) 400 0 = "Not imputed" 401 1 = "Imputed" 402 2 = "Cold Deck Imputation" 403 3 = "Logical Imputation (Derivation)" 404 ; NOTE: Format AWRK35HR has been output. 405 VALUE AOFF6MTN (default=32) 406 0 = "Not imputed" 407 1 = "Imputed" 408 2 = "Cold Deck Imputation" 409 3 = "Logical Imputation (Derivation)" 410 ; NOTE: Format AOFF6MTN has been output. 411 VALUE ANOWRKFR (default=32) 412 0 = "Not imputed" 413 1 = "Imputed" 414 2 = "Cold Deck Imputation" 415 3 = "Logical Imputation" 416 ; NOTE: Format ANOWRKFR has been output. 417 VALUE ANOWRKTO (default=32) 418 0 = "Not imputed" 419 1 = "Imputed" 420 2 = "Cold Deck Imputation" 421 3 = "Logical Imputation" 422 ; NOTE: Format ANOWRKTO has been output. 423 VALUE AOTHTIME (default=32) 424 0 = "Not imputed" 425 1 = "Imputed" 426 2 = "Cold Deck Imputation" 427 3 = "Logical Imputation" 428 ; NOTE: Format AOTHTIME has been output. 429 VALUE ACNTOTHR (default=32) 10 The SAS System 13:18 Wednesday, March 26, 2008 430 0 = "Not imputed" 431 1 = "Imputed" 432 2 = "Cold Deck Imputation" 433 3 = "Logical Imputation" 434 ; NOTE: Format ACNTOTHR has been output. 435 VALUE AFSTYRFR (default=32) 436 0 = "Not imputed" 437 1 = "Imputed" 438 2 = "Cold Deck Imputation" 439 3 = "Logical Imputation (Derivation)" 440 ; NOTE: Format AFSTYRFR has been output. 441 VALUE AFSTYRTO (default=32) 442 0 = "Not imputed" 443 1 = "Imputed" 444 2 = "Cold Deck Imputation" 445 3 = "Logical Imputation (Derivation)" 446 ; NOTE: Format AFSTYRTO has been output. 447 VALUE ANWRESN (default=32) 448 0 = "Not imputed" 449 1 = "Imputed" 450 2 = "Cold Deck Imputation" 451 3 = "Logical Imputation (Derivation)" 452 ; NOTE: Format ANWRESN has been output. 453 VALUE AFRSTRSN (default=32) 454 0 = "Not imputed" 455 1 = "Imputed" 456 2 = "Cold Deck Imputation" 457 3 = "Logical Imputation (Derivation)" 458 ; NOTE: Format AFRSTRSN has been output. 459 VALUE EYSTP21L (default=32) 460 -1 = "Not in Universe" 461 1 = "Became ineligible because of" 462 2 = "Because of family changes" 463 3 = "Still eligible but could not" 464 4 = "Other, specify" 465 ; NOTE: Format EYSTP21L has been output. 466 VALUE AYSTP21L (default=32) 467 0 = "Not imputed" 468 1 = "Imputed" 469 2 = "Cold Deck Imputation" 470 3 = "Logical Imputation (Derivation)" 471 ; NOTE: Format AYSTP21L has been output. 472 VALUE EYBG210N (default=32) 473 -1 = "Not in universe" 474 1 = "Circumstance for applying" 475 2 = "Not a circumstance for applying" 476 ; NOTE: Format EYBG210N has been output. 477 VALUE EYBG210K (default=32) 478 -1 = "Not in universe" 479 1 = "Circumstance for applying" 11 The SAS System 13:18 Wednesday, March 26, 2008 480 2 = "Not a circumstance for applying" 481 ; NOTE: Format EYBG210K has been output. 482 VALUE EYBG210L (default=32) 483 -1 = "Not in universe" 484 1 = "Circumstance for applying" 485 2 = "Not a circumstance for applying" 486 ; NOTE: Format EYBG210L has been output. 487 VALUE EYBG210M (default=32) 488 -1 = "Not in universe" 489 1 = "Circumstance for applying" 490 2 = "Not a circumstance for applying" 491 ; NOTE: Format EYBG210M has been output. 492 VALUE EYBG210O (default=32) 493 -1 = "Not in universe" 494 1 = "Circumstance for applying" 495 2 = "Not a circumstance for applying" 496 ; NOTE: Format EYBG210O has been output. 497 VALUE EYBG210P (default=32) 498 -1 = "Not in universe" 499 1 = "Circumstance for applying" 500 2 = "Not a circumstance for applying" 501 ; NOTE: Format EYBG210P has been output. 502 VALUE EYBG210Q (default=32) 503 -1 = "Not in universe" 504 1 = "Circumstance for applying" 505 2 = "Not a circumstance for applying" 506 ; NOTE: Format EYBG210Q has been output. 507 VALUE EYBG210R (default=32) 508 -1 = "Not in universe" 509 1 = "Circumstance for applying" 510 2 = "Not a circumstance for applying" 511 ; NOTE: Format EYBG210R has been output. 512 VALUE EYBG210S (default=32) 513 -1 = "Not in universe" 514 1 = "Circumstance for applying" 515 2 = "Not a circumstance for applying" 516 ; NOTE: Format EYBG210S has been output. 517 VALUE EYBG211N (default=32) 518 -1 = "Not in universe" 519 1 = "Circumstance for applying" 520 2 = "Not a circumstance for applying" 521 ; NOTE: Format EYBG211N has been output. 522 VALUE AYBG21L (default=32) 523 0 = "Not imputed" 524 1 = "Imputed" 525 2 = "Cold Deck Imputation" 526 3 = "Logical Imputation (Derivation)" 527 ; NOTE: Format AYBG21L has been output. 12 The SAS System 13:18 Wednesday, March 26, 2008 528 VALUE EYSTP22L (default=32) 529 -1 = "Not in Universe" 530 1 = "Became ineligible because of" 531 2 = "Because of family changes" 532 3 = "Still eligible but could not" 533 4 = "Other, specify" 534 ; NOTE: Format EYSTP22L has been output. 535 VALUE AYSTP22L (default=32) 536 0 = "Not imputed" 537 1 = "Imputed" 538 2 = "Cold Deck Imputation" 539 3 = "Logical Imputation (Derivation)" 540 ; NOTE: Format AYSTP22L has been output. 541 VALUE EYBG220N (default=32) 542 -1 = "Not in universe" 543 1 = "Circumstance for applying" 544 2 = "Not a circumstance for applying" 545 ; NOTE: Format EYBG220N has been output. 546 VALUE EYBG220K (default=32) 547 -1 = "Not in universe" 548 1 = "Circumstance for applying" 549 2 = "Not a circumstance for applying" 550 ; NOTE: Format EYBG220K has been output. 551 VALUE EYBG220L (default=32) 552 -1 = "Not in universe" 553 1 = "Circumstance for applying" 554 2 = "Not a circumstance for applying" 555 ; NOTE: Format EYBG220L has been output. 556 VALUE EYBG220M (default=32) 557 -1 = "Not in universe" 558 1 = "Circumstance for applying" 559 2 = "Not a circumstance for applying" 560 ; NOTE: Format EYBG220M has been output. 561 VALUE EYBG220O (default=32) 562 -1 = "Not in universe" 563 1 = "Circumstance for applying" 564 2 = "Not a circumstance for applying" 565 ; NOTE: Format EYBG220O has been output. 566 VALUE EYBG220P (default=32) 567 -1 = "Not in universe" 568 1 = "Circumstance for applying" 569 2 = "Not a circumstance for applying" 570 ; NOTE: Format EYBG220P has been output. 571 VALUE EYBG220Q (default=32) 572 -1 = "Not in universe" 573 1 = "Circumstance for applying" 574 2 = "Not a circumstance for applying" 575 ; NOTE: Format EYBG220Q has been output. 576 VALUE EYBG220R (default=32) 13 The SAS System 13:18 Wednesday, March 26, 2008 577 -1 = "Not in universe" 578 1 = "Circumstance for applying" 579 2 = "Not a circumstance for applying" 580 ; NOTE: Format EYBG220R has been output. 581 VALUE EYBG220S (default=32) 582 -1 = "Not in universe" 583 1 = "Circumstance for applying" 584 2 = "Not a circumstance for applying" 585 ; NOTE: Format EYBG220S has been output. 586 VALUE EYBG221N (default=32) 587 -1 = "Not in universe" 588 1 = "Circumstance for applying" 589 2 = "Not a circumstance for applying" 590 ; NOTE: Format EYBG221N has been output. 591 VALUE AYBG22L (default=32) 592 0 = "Not imputed" 593 1 = "Imputed" 594 2 = "Cold Deck Imputation" 595 3 = "Logical Imputation (Derivation)" 596 ; NOTE: Format AYBG22L has been output. 597 VALUE EYSTP23L (default=32) 598 -1 = "Not in Universe" 599 1 = "Became ineligible because of" 600 2 = "Because of family changes" 601 3 = "Still eligible but could not" 602 4 = "Other, specify" 603 ; NOTE: Format EYSTP23L has been output. 604 VALUE AYSTP23L (default=32) 605 0 = "Not imputed" 606 1 = "Imputed" 607 2 = "Cold Deck Imputation" 608 3 = "Logical Imputation (Derivation)" 609 ; NOTE: Format AYSTP23L has been output. 610 VALUE EYBG230N (default=32) 611 -1 = "Not in universe" 612 1 = "Circumstance for applying" 613 2 = "Not a circumstance for applying" 614 ; NOTE: Format EYBG230N has been output. 615 VALUE EYBG230K (default=32) 616 -1 = "Not in universe" 617 1 = "Circumstance for applying" 618 2 = "Not a circumstance for applying" 619 ; NOTE: Format EYBG230K has been output. 620 VALUE EYBG230L (default=32) 621 -1 = "Not in universe" 622 1 = "Circumstance for applying" 623 2 = "Not a circumstance for applying" 624 ; NOTE: Format EYBG230L has been output. 625 VALUE EYBG230M (default=32) 14 The SAS System 13:18 Wednesday, March 26, 2008 626 -1 = "Not in universe" 627 1 = "Circumstance for applying" 628 2 = "Not a circumstance for applying" 629 ; NOTE: Format EYBG230M has been output. 630 VALUE EYBG230O (default=32) 631 -1 = "Not in universe" 632 1 = "Circumstance for applying" 633 2 = "Not a circumstance for applying" 634 ; NOTE: Format EYBG230O has been output. 635 VALUE EYBG230P (default=32) 636 -1 = "Not in universe" 637 1 = "Circumstance for applying" 638 2 = "Not a circumstance for applying" 639 ; NOTE: Format EYBG230P has been output. 640 VALUE EYBG230Q (default=32) 641 -1 = "Not in universe" 642 1 = "Circumstance for applying" 643 2 = "Not a circumstance for applying" 644 ; NOTE: Format EYBG230Q has been output. 645 VALUE EYBG230R (default=32) 646 -1 = "Not in universe" 647 1 = "Circumstance for applying" 648 2 = "Not a circumstance for applying" 649 ; NOTE: Format EYBG230R has been output. 650 VALUE EYBG230S (default=32) 651 -1 = "Not in universe" 652 1 = "Circumstance for applying" 653 2 = "Not a circumstance for applying" 654 ; NOTE: Format EYBG230S has been output. 655 VALUE EYBG231N (default=32) 656 -1 = "Not in universe" 657 1 = "Circumstance for applying" 658 2 = "Not a circumstance for applying" 659 ; NOTE: Format EYBG231N has been output. 660 VALUE AYBG23L (default=32) 661 0 = "Not imputed" 662 1 = "Imputed" 663 2 = "Cold Deck Imputation" 664 3 = "Logical Imputation (Derivation)" 665 ; NOTE: Format AYBG23L has been output. 666 VALUE TYBG120Y (default=32) 667 -1 = "Not in universe" 668 ; NOTE: Format TYBG120Y has been output. 669 VALUE EYBG120M (default=32) 670 -1 = "Not in universe" 671 ; NOTE: Format EYBG120M has been output. 672 VALUE AYBG120M (default=32) 673 0 = "Not imputed" 15 The SAS System 13:18 Wednesday, March 26, 2008 674 1 = "Imputed" 675 2 = "Cold Deck Imputation" 676 3 = "Logical Imputation (Derivation)" 677 ; NOTE: Format AYBG120M has been output. 678 VALUE AYBG120Y (default=32) 679 0 = "Not imputed" 680 1 = "Imputed" 681 2 = "Cold Deck Imputation" 682 3 = "Logical Imputation (Derivation)" 683 ; NOTE: Format AYBG120Y has been output. 684 VALUE EYB2200Y (default=32) 685 -1 = "Not in universe" 686 1 = "Circumstance for applying" 687 2 = "Not a circumstance for applying" 688 ; NOTE: Format EYB2200Y has been output. 689 VALUE EYB2200K (default=32) 690 -1 = "Not in universe" 691 1 = "Circumstance for applying" 692 2 = "Not a circumstance for applying" 693 ; NOTE: Format EYB2200K has been output. 694 VALUE EYB2200L (default=32) 695 -1 = "Not in universe" 696 1 = "Circumstance for applying" 697 2 = "Not a circumstance for applying" 698 ; NOTE: Format EYB2200L has been output. 699 VALUE EYB2200M (default=32) 700 -1 = "Not in universe" 701 1 = "Circumstance for applying" 702 2 = "Not a circumstance for applying" 703 ; NOTE: Format EYB2200M has been output. 704 VALUE EYB2200N (default=32) 705 -1 = "Not in universe" 706 1 = "Circumstance for applying" 707 2 = "Not a circumstance for applying" 708 ; NOTE: Format EYB2200N has been output. 709 VALUE EYB2200O (default=32) 710 -1 = "Not in universe" 711 1 = "Circumstance for applying" 712 2 = "Not a circumstance for applying" 713 ; NOTE: Format EYB2200O has been output. 714 VALUE EYB2200P (default=32) 715 -1 = "Not in universe" 716 1 = "Circumstance for applying" 717 2 = "Not a circumstance for applying" 718 ; NOTE: Format EYB2200P has been output. 719 VALUE EYB2200Q (default=32) 720 -1 = "Not in universe" 721 1 = "Circumstance for applying" 722 2 = "Not a circumstance for applying" 16 The SAS System 13:18 Wednesday, March 26, 2008 723 ; NOTE: Format EYB2200Q has been output. 724 VALUE EYB2200R (default=32) 725 -1 = "Not in universe" 726 1 = "Circumstance for applying" 727 2 = "Not a circumstance for applying" 728 ; NOTE: Format EYB2200R has been output. 729 VALUE EYB2201Y (default=32) 730 -1 = "Not in universe" 731 1 = "Circumstance for applying" 732 2 = "Not a circumstance for applying" 733 ; NOTE: Format EYB2201Y has been output. 734 VALUE AYBG220L (default=32) 735 0 = "Not imputed" 736 1 = "Imputed" 737 2 = "Cold Deck Imputation" 738 3 = "Logical Imputation (Derivation)" 739 ; NOTE: Format AYBG220L has been output. 740 VALUE EWSTP21L (default=32) 741 -1 = "Not in Universe" 742 1 = "Became ineligible because of" 743 2 = "Because of family changes" 744 3 = "Still eligible but could not" 745 4 = "Other, specify" 746 ; NOTE: Format EWSTP21L has been output. 747 VALUE AWSTP21L (default=32) 748 0 = "Not imputed" 749 1 = "Imputed" 750 2 = "Cold Deck Imputation" 751 3 = "Logical Imputation (Derivation)" 752 ; NOTE: Format AWSTP21L has been output. 753 VALUE EWBG210Y (default=32) 754 -1 = "Not in universe" 755 1 = "Circumstance for applying" 756 2 = "Not a circumstance for applying" 757 ; NOTE: Format EWBG210Y has been output. 758 VALUE EWBG210K (default=32) 759 -1 = "Not in universe" 760 1 = "Circumstance for applying" 761 2 = "Not a circumstance for applying" 762 ; NOTE: Format EWBG210K has been output. 763 VALUE EWBG210L (default=32) 764 -1 = "Not in universe" 765 1 = "Circumstance for applying" 766 2 = "Not a circumstance for applying" 767 ; NOTE: Format EWBG210L has been output. 768 VALUE EWBG210M (default=32) 769 -1 = "Not in universe" 770 1 = "Circumstance for applying" 771 2 = "Not a circumstance for applying" 17 The SAS System 13:18 Wednesday, March 26, 2008 772 ; NOTE: Format EWBG210M has been output. 773 VALUE EWBG210N (default=32) 774 -1 = "Not in universe" 775 1 = "Circumstance for applying" 776 2 = "Not a circumstance for applying" 777 ; NOTE: Format EWBG210N has been output. 778 VALUE EWBG210O (default=32) 779 -1 = "Not in universe" 780 1 = "Circumstance for applying" 781 2 = "Not a circumstance for applying" 782 ; NOTE: Format EWBG210O has been output. 783 VALUE EWBG210P (default=32) 784 -1 = "Not in universe" 785 1 = "Circumstance for applying" 786 2 = "Not a circumstance for applying" 787 ; NOTE: Format EWBG210P has been output. 788 VALUE EWBG210Q (default=32) 789 -1 = "Not in universe" 790 1 = "Circumstance for applying" 791 2 = "Not a circumstance for applying" 792 ; NOTE: Format EWBG210Q has been output. 793 VALUE EWBG210R (default=32) 794 -1 = "Not in universe" 795 1 = "Circumstance for applying" 796 2 = "Not a circumstance for applying" 797 ; NOTE: Format EWBG210R has been output. 798 VALUE EWBG211Y (default=32) 799 -1 = "Not in universe" 800 1 = "Circumstance for applying" 801 2 = "Not a circumstance for applying" 802 ; NOTE: Format EWBG211Y has been output. 803 VALUE AWBG21L (default=32) 804 0 = "Not imputed" 805 1 = "Imputed" 806 2 = "Cold Deck Imputation" 807 3 = "Logical Imputation (Derivation)" 808 ; NOTE: Format AWBG21L has been output. 809 VALUE EWSTP22L (default=32) 810 -1 = "Not in Universe" 811 1 = "Became ineligible because of" 812 2 = "Because of family changes" 813 3 = "Still eligible but could not" 814 4 = "Other, specify" 815 ; NOTE: Format EWSTP22L has been output. 816 VALUE AWSTP22L (default=32) 817 0 = "Not imputed" 818 1 = "Imputed" 819 2 = "Cold Deck Imputation" 820 3 = "Logical Imputation (Derivation)" 18 The SAS System 13:18 Wednesday, March 26, 2008 821 ; NOTE: Format AWSTP22L has been output. 822 VALUE EWBG220Y (default=32) 823 -1 = "Not in universe" 824 1 = "Circumstance for applying" 825 2 = "Not a circumstance for applying" 826 ; NOTE: Format EWBG220Y has been output. 827 VALUE EWBG220K (default=32) 828 -1 = "Not in universe" 829 1 = "Circumstance for applying" 830 2 = "Not a circumstance for applying" 831 ; NOTE: Format EWBG220K has been output. 832 VALUE EWBG220L (default=32) 833 -1 = "Not in universe" 834 1 = "Circumstance for applying" 835 2 = "Not a circumstance for applying" 836 ; NOTE: Format EWBG220L has been output. 837 VALUE EWBG220M (default=32) 838 -1 = "Not in universe" 839 1 = "Circumstance for applying" 840 2 = "Not a circumstance for applying" 841 ; NOTE: Format EWBG220M has been output. 842 VALUE EWBG220N (default=32) 843 -1 = "Not in universe" 844 1 = "Circumstance for applying" 845 2 = "Not a circumstance for applying" 846 ; NOTE: Format EWBG220N has been output. 847 VALUE EWBG220O (default=32) 848 -1 = "Not in universe" 849 1 = "Circumstance for applying" 850 2 = "Not a circumstance for applying" 851 ; NOTE: Format EWBG220O has been output. 852 VALUE EWBG220P (default=32) 853 -1 = "Not in universe" 854 1 = "Circumstance for applying" 855 2 = "Not a circumstance for applying" 856 ; NOTE: Format EWBG220P has been output. 857 VALUE EWBG220Q (default=32) 858 -1 = "Not in universe" 859 1 = "Circumstance for applying" 860 2 = "Not a circumstance for applying" 861 ; NOTE: Format EWBG220Q has been output. 862 VALUE EWBG220R (default=32) 863 -1 = "Not in universe" 864 1 = "Circumstance for applying" 865 2 = "Not a circumstance for applying" 866 ; NOTE: Format EWBG220R has been output. 867 VALUE EWBG221Y (default=32) 868 -1 = "Not in universe" 19 The SAS System 13:18 Wednesday, March 26, 2008 869 1 = "Circumstance for applying" 870 2 = "Not a circumstance for applying" 871 ; NOTE: Format EWBG221Y has been output. 872 VALUE AWBG22L (default=32) 873 0 = "Not imputed" 874 1 = "Imputed" 875 2 = "Cold Deck Imputation" 876 3 = "Logical Imputation (Derivation)" 877 ; NOTE: Format AWBG22L has been output. 878 VALUE EWSTP23L (default=32) 879 -1 = "Not in Universe" 880 1 = "Became ineligible because of" 881 2 = "Because of family changes" 882 3 = "Still eligible but could not" 883 4 = "Other, specify" 884 ; NOTE: Format EWSTP23L has been output. 885 VALUE AWSTP23L (default=32) 886 0 = "Not imputed" 887 1 = "Imputed" 888 2 = "Cold Deck Imputation" 889 3 = "Logical Imputation (Derivation)" 890 ; NOTE: Format AWSTP23L has been output. 891 VALUE EWBG230Y (default=32) 892 -1 = "Not in universe" 893 1 = "Circumstance for applying" 894 2 = "Not a circumstance for applying" 895 ; NOTE: Format EWBG230Y has been output. 896 VALUE EWBG230K (default=32) 897 -1 = "Not in universe" 898 1 = "Circumstance for applying" 899 2 = "Not a circumstance for applying" 900 ; NOTE: Format EWBG230K has been output. 901 VALUE EWBG230L (default=32) 902 -1 = "Not in universe" 903 1 = "Circumstance for applying" 904 2 = "Not a circumstance for applying" 905 ; NOTE: Format EWBG230L has been output. 906 VALUE EWBG230M (default=32) 907 -1 = "Not in universe" 908 1 = "Circumstance for applying" 909 2 = "Not a circumstance for applying" 910 ; NOTE: Format EWBG230M has been output. 911 VALUE EWBG230N (default=32) 912 -1 = "Not in universe" 913 1 = "Circumstance for applying" 914 2 = "Not a circumstance for applying" 915 ; NOTE: Format EWBG230N has been output. 916 VALUE EWBG230O (default=32) 917 -1 = "Not in universe" 20 The SAS System 13:18 Wednesday, March 26, 2008 918 1 = "Circumstance for applying" 919 2 = "Not a circumstance for applying" 920 ; NOTE: Format EWBG230O has been output. 921 VALUE EWBG230P (default=32) 922 -1 = "Not in universe" 923 1 = "Circumstance for applying" 924 2 = "Not a circumstance for applying" 925 ; NOTE: Format EWBG230P has been output. 926 VALUE EWBG230Q (default=32) 927 -1 = "Not in universe" 928 1 = "Circumstance for applying" 929 2 = "Not a circumstance for applying" 930 ; NOTE: Format EWBG230Q has been output. 931 VALUE EWBG230R (default=32) 932 -1 = "Not in universe" 933 1 = "Circumstance for applying" 934 2 = "Not a circumstance for applying" 935 ; NOTE: Format EWBG230R has been output. 936 VALUE EWBG231Y (default=32) 937 -1 = "Not in universe" 938 1 = "Circumstance for applying" 939 2 = "Not a circumstance for applying" 940 ; NOTE: Format EWBG231Y has been output. 941 VALUE AWBG23L (default=32) 942 0 = "Not imputed" 943 1 = "Imputed" 944 2 = "Cold Deck Imputation" 945 3 = "Logical Imputation (Derivation)" 946 ; NOTE: Format AWBG23L has been output. 947 VALUE EWBG120M (default=32) 948 -1 = "Not in universe" 949 ; NOTE: Format EWBG120M has been output. 950 VALUE TWBG120Y (default=32) 951 -1 = "Not in universe" 952 ; NOTE: Format TWBG120Y has been output. 953 VALUE AWBG120M (default=32) 954 0 = "Not imputed" 955 1 = "Imputed" 956 2 = "Cold Deck Imputation" 957 3 = "Logical Imputation (Derivation)" 958 ; NOTE: Format AWBG120M has been output. 959 VALUE AWBG120Y (default=32) 960 0 = "Not imputed" 961 1 = "Imputed" 962 2 = "Cold Deck Imputation" 963 3 = "Logical Imputation (Derivation)" 964 ; NOTE: Format AWBG120Y has been output. 965 VALUE EWB2200Y (default=32) 21 The SAS System 13:18 Wednesday, March 26, 2008 966 -1 = "Not in universe" 967 1 = "Circumstance for applying" 968 2 = "Not a circumstance for applying" 969 ; NOTE: Format EWB2200Y has been output. 970 VALUE EWB2200K (default=32) 971 -1 = "Not in universe" 972 1 = "Circumstance for applying" 973 2 = "Not a circumstance for applying" 974 ; NOTE: Format EWB2200K has been output. 975 VALUE EWB2200L (default=32) 976 -1 = "Not in universe" 977 1 = "Circumstance for applying" 978 2 = "Not a circumstance for applying" 979 ; NOTE: Format EWB2200L has been output. 980 VALUE EWB2200M (default=32) 981 -1 = "Not in universe" 982 1 = "Circumstance for applying" 983 2 = "Not a circumstance for applying" 984 ; NOTE: Format EWB2200M has been output. 985 VALUE EWB2200N (default=32) 986 -1 = "Not in universe" 987 1 = "Circumstance for applying" 988 2 = "Not a circumstance for applying" 989 ; NOTE: Format EWB2200N has been output. 990 VALUE EWB2200O (default=32) 991 -1 = "Not in universe" 992 1 = "Circumstance for applying" 993 2 = "Not a circumstance for applying" 994 ; NOTE: Format EWB2200O has been output. 995 VALUE EWB2200P (default=32) 996 -1 = "Not in universe" 997 1 = "Circumstance for applying" 998 2 = "Not a circumstance for applying" 999 ; NOTE: Format EWB2200P has been output. 1000 VALUE EWB2200Q (default=32) 1001 -1 = "Not in universe" 1002 1 = "Circumstance for applying" 1003 2 = "Not a circumstance for applying" 1004 ; NOTE: Format EWB2200Q has been output. 1005 VALUE EWB2200R (default=32) 1006 -1 = "Not in universe" 1007 1 = "Circumstance for applying" 1008 2 = "Not a circumstance for applying" 1009 ; NOTE: Format EWB2200R has been output. 1010 VALUE EWB2201Y (default=32) 1011 -1 = "Not in universe" 1012 1 = "Circumstance for applying" 1013 2 = "Not a circumstance for applying" 1014 ; 22 The SAS System 13:18 Wednesday, March 26, 2008 NOTE: Format EWB2201Y has been output. 1015 VALUE AWBG220L (default=32) 1016 0 = "Not imputed" 1017 1 = "Imputed" 1018 2 = "Cold Deck Imputation" 1019 3 = "Logical Imputation (Derivation)" 1020 ; NOTE: Format AWBG220L has been output. 1021 VALUE EFSTP21L (default=32) 1022 -1 = "Not in Universe" 1023 1 = "Became ineligible because of" 1024 2 = "Because of family changes" 1025 3 = "Still eligible but could not" 1026 4 = "Other, specify" 1027 ; NOTE: Format EFSTP21L has been output. 1028 VALUE AFSTP21L (default=32) 1029 0 = "Not imputed" 1030 1 = "Imputed" 1031 2 = "Cold Deck Imputation" 1032 3 = "Logical Imputation (Derivation)" 1033 ; NOTE: Format AFSTP21L has been output. 1034 VALUE EFBG210Y (default=32) 1035 -1 = "Not in universe" 1036 1 = "Circumstance for applying" 1037 2 = "Not a circumstance for applying" 1038 ; NOTE: Format EFBG210Y has been output. 1039 VALUE EFBG210K (default=32) 1040 -1 = "Not in universe" 1041 1 = "Circumstance for applying" 1042 2 = "Not a circumstance for applying" 1043 ; NOTE: Format EFBG210K has been output. 1044 VALUE EFBG210L (default=32) 1045 -1 = "Not in universe" 1046 1 = "Circumstance for applying" 1047 2 = "Not a circumstance for applying" 1048 ; NOTE: Format EFBG210L has been output. 1049 VALUE EFBG210M (default=32) 1050 -1 = "Not in universe" 1051 1 = "Circumstance for applying" 1052 2 = "Not a circumstance for applying" 1053 ; NOTE: Format EFBG210M has been output. 1054 VALUE EFBG210N (default=32) 1055 -1 = "Not in universe" 1056 1 = "Circumstance for applying" 1057 2 = "Not a circumstance for applying" 1058 ; NOTE: Format EFBG210N has been output. 1059 VALUE EFBG210O (default=32) 1060 -1 = "Not in universe" 1061 1 = "Circumstance for applying" 1062 2 = "Not a circumstance for applying" 1063 ; 23 The SAS System 13:18 Wednesday, March 26, 2008 NOTE: Format EFBG210O has been output. 1064 VALUE EFBG210P (default=32) 1065 -1 = "Not in universe" 1066 1 = "Circumstance for applying" 1067 2 = "Not a circumstance for applying" 1068 ; NOTE: Format EFBG210P has been output. 1069 VALUE EFBG210Q (default=32) 1070 -1 = "Not in universe" 1071 1 = "Circumstance for applying" 1072 2 = "Not a circumstance for applying" 1073 ; NOTE: Format EFBG210Q has been output. 1074 VALUE EFBG210R (default=32) 1075 -1 = "Not in universe" 1076 1 = "Circumstance for applying" 1077 2 = "Not a circumstance for applying" 1078 ; NOTE: Format EFBG210R has been output. 1079 VALUE EFBG211Y (default=32) 1080 -1 = "Not in universe" 1081 1 = "Circumstance for applying" 1082 2 = "Not a circumstance for applying" 1083 ; NOTE: Format EFBG211Y has been output. 1084 VALUE AFBG21L (default=32) 1085 0 = "Not imputed" 1086 1 = "Imputed" 1087 2 = "Cold Deck Imputation" 1088 3 = "Logical Imputation (Derivation)" 1089 ; NOTE: Format AFBG21L has been output. 1090 VALUE EFSTP22L (default=32) 1091 -1 = "Not in Universe" 1092 1 = "Became ineligible because of" 1093 2 = "Because of family changes" 1094 3 = "Still eligible but could not" 1095 4 = "Other, specify" 1096 ; NOTE: Format EFSTP22L has been output. 1097 VALUE AFSTP22L (default=32) 1098 0 = "Not imputed" 1099 1 = "Imputed" 1100 2 = "Cold Deck Imputation" 1101 3 = "Logical Imputation (Derivation)" 1102 ; NOTE: Format AFSTP22L has been output. 1103 VALUE EFBG220Y (default=32) 1104 -1 = "Not in universe" 1105 1 = "Circumstance for applying" 1106 2 = "Not a circumstance for applying" 1107 ; NOTE: Format EFBG220Y has been output. 1108 VALUE EFBG220K (default=32) 1109 -1 = "Not in universe" 1110 1 = "Circumstance for applying" 1111 2 = "Not a circumstance for applying" 1112 ; 24 The SAS System 13:18 Wednesday, March 26, 2008 NOTE: Format EFBG220K has been output. 1113 VALUE EFBG220L (default=32) 1114 -1 = "Not in universe" 1115 1 = "Circumstance for applying" 1116 2 = "Not a circumstance for applying" 1117 ; NOTE: Format EFBG220L has been output. 1118 VALUE EFBG220M (default=32) 1119 -1 = "Not in universe" 1120 1 = "Circumstance for applying" 1121 2 = "Not a circumstance for applying" 1122 ; NOTE: Format EFBG220M has been output. 1123 VALUE EFBG220N (default=32) 1124 -1 = "Not in universe" 1125 1 = "Circumstance for applying" 1126 2 = "Not a circumstance for applying" 1127 ; NOTE: Format EFBG220N has been output. 1128 VALUE EFBG220O (default=32) 1129 -1 = "Not in universe" 1130 1 = "Circumstance for applying" 1131 2 = "Not a circumstance for applying" 1132 ; NOTE: Format EFBG220O has been output. 1133 VALUE EFBG220P (default=32) 1134 -1 = "Not in universe" 1135 1 = "Circumstance for applying" 1136 2 = "Not a circumstance for applying" 1137 ; NOTE: Format EFBG220P has been output. 1138 VALUE EFBG220Q (default=32) 1139 -1 = "Not in universe" 1140 1 = "Circumstance for applying" 1141 2 = "Not a circumstance for applying" 1142 ; NOTE: Format EFBG220Q has been output. 1143 VALUE EFBG220R (default=32) 1144 -1 = "Not in universe" 1145 1 = "Circumstance for applying" 1146 2 = "Not a circumstance for applying" 1147 ; NOTE: Format EFBG220R has been output. 1148 VALUE EFBG221Y (default=32) 1149 -1 = "Not in universe" 1150 1 = "Circumstance for applying" 1151 2 = "Not a circumstance for applying" 1152 ; NOTE: Format EFBG221Y has been output. 1153 VALUE AFBG22L (default=32) 1154 0 = "Not imputed" 1155 1 = "Imputed" 1156 2 = "Cold Deck Imputation" 1157 3 = "Logical Imputation (Derivation)" 1158 ; NOTE: Format AFBG22L has been output. 1159 VALUE EFSTP23L (default=32) 1160 -1 = "Not in Universe" 25 The SAS System 13:18 Wednesday, March 26, 2008 1161 1 = "Became ineligible because of" 1162 2 = "Because of family changes" 1163 3 = "Still eligible but could not" 1164 4 = "Other, specify" 1165 ; NOTE: Format EFSTP23L has been output. 1166 VALUE AFSTP23L (default=32) 1167 0 = "Not imputed" 1168 1 = "Imputed" 1169 2 = "Cold Deck Imputation" 1170 3 = "Logical Imputation (Derivation)" 1171 ; NOTE: Format AFSTP23L has been output. 1172 VALUE EFBG230Y (default=32) 1173 -1 = "Not in universe" 1174 1 = "Circumstance for applying" 1175 2 = "Not a circumstance for applying" 1176 ; NOTE: Format EFBG230Y has been output. 1177 VALUE EFBG230K (default=32) 1178 -1 = "Not in universe" 1179 1 = "Circumstance for applying" 1180 2 = "Not a circumstance for applying" 1181 ; NOTE: Format EFBG230K has been output. 1182 VALUE EFBG230L (default=32) 1183 -1 = "Not in universe" 1184 1 = "Circumstance for applying" 1185 2 = "Not a circumstance for applying" 1186 ; NOTE: Format EFBG230L has been output. 1187 VALUE EFBG230M (default=32) 1188 -1 = "Not in universe" 1189 1 = "Circumstance for applying" 1190 2 = "Not a circumstance for applying" 1191 ; NOTE: Format EFBG230M has been output. 1192 VALUE EFBG230N (default=32) 1193 -1 = "Not in universe" 1194 1 = "Circumstance for applying" 1195 2 = "Not a circumstance for applying" 1196 ; NOTE: Format EFBG230N has been output. 1197 VALUE EFBG230O (default=32) 1198 -1 = "Not in universe" 1199 1 = "Circumstance for applying" 1200 2 = "Not a circumstance for applying" 1201 ; NOTE: Format EFBG230O has been output. 1202 VALUE EFBG230P (default=32) 1203 -1 = "Not in universe" 1204 1 = "Circumstance for applying" 1205 2 = "Not a circumstance for applying" 1206 ; NOTE: Format EFBG230P has been output. 1207 VALUE EFBG230Q (default=32) 1208 -1 = "Not in universe" 1209 1 = "Circumstance for applying" 26 The SAS System 13:18 Wednesday, March 26, 2008 1210 2 = "Not a circumstance for applying" 1211 ; NOTE: Format EFBG230Q has been output. 1212 VALUE EFBG230R (default=32) 1213 -1 = "Not in universe" 1214 1 = "Circumstance for applying" 1215 2 = "Not a circumstance for applying" 1216 ; NOTE: Format EFBG230R has been output. 1217 VALUE EFBG231Y (default=32) 1218 -1 = "Not in universe" 1219 1 = "Circumstance for applying" 1220 2 = "Not a circumstance for applying" 1221 ; NOTE: Format EFBG231Y has been output. 1222 VALUE AFBG23L (default=32) 1223 0 = "Not imputed" 1224 1 = "Imputed" 1225 2 = "Cold Deck Imputation" 1226 3 = "Logical Imputation (Derivation)" 1227 ; NOTE: Format AFBG23L has been output. 1228 VALUE EFBG120M (default=32) 1229 -1 = "Not in universe" 1230 ; NOTE: Format EFBG120M has been output. 1231 VALUE TFBG120Y (default=32) 1232 -1 = "Not in universe" 1233 ; NOTE: Format TFBG120Y has been output. 1234 VALUE AFBG120M (default=32) 1235 0 = "Not imputed" 1236 1 = "Imputed" 1237 2 = "Cold Deck Imputation" 1238 3 = "Logical Imputation (Derivation)" 1239 ; NOTE: Format AFBG120M has been output. 1240 VALUE AFBG120Y (default=32) 1241 0 = "Not imputed" 1242 1 = "Imputed" 1243 2 = "Cold Deck Imputation" 1244 3 = "Logical Imputation (Derivation)" 1245 ; NOTE: Format AFBG120Y has been output. 1246 VALUE EFB2200Y (default=32) 1247 -1 = "Not in universe" 1248 1 = "Circumstance for applying" 1249 2 = "Not a circumstance for applying" 1250 ; NOTE: Format EFB2200Y has been output. 1251 VALUE EFB2200K (default=32) 1252 -1 = "Not in universe" 1253 1 = "Circumstance for applying" 1254 2 = "Not a circumstance for applying" 1255 ; NOTE: Format EFB2200K has been output. 1256 VALUE EFB2200L (default=32) 1257 -1 = "Not in universe" 27 The SAS System 13:18 Wednesday, March 26, 2008 1258 1 = "Circumstance for applying" 1259 2 = "Not a circumstance for applying" 1260 ; NOTE: Format EFB2200L has been output. 1261 VALUE EFB2200M (default=32) 1262 -1 = "Not in universe" 1263 1 = "Circumstance for applying" 1264 2 = "Not a circumstance for applying" 1265 ; NOTE: Format EFB2200M has been output. 1266 VALUE EFB2200N (default=32) 1267 -1 = "Not in universe" 1268 1 = "Circumstance for applying" 1269 2 = "Not a circumstance for applying" 1270 ; NOTE: Format EFB2200N has been output. 1271 VALUE EFB2200O (default=32) 1272 -1 = "Not in universe" 1273 1 = "Circumstance for applying" 1274 2 = "Not a circumstance for applying" 1275 ; NOTE: Format EFB2200O has been output. 1276 VALUE EFB2200P (default=32) 1277 -1 = "Not in universe" 1278 1 = "Circumstance for applying" 1279 2 = "Not a circumstance for applying" 1280 ; NOTE: Format EFB2200P has been output. 1281 VALUE EFB2200Q (default=32) 1282 -1 = "Not in universe" 1283 1 = "Circumstance for applying" 1284 2 = "Not a circumstance for applying" 1285 ; NOTE: Format EFB2200Q has been output. 1286 VALUE EFB2200R (default=32) 1287 -1 = "Not in universe" 1288 1 = "Circumstance for applying" 1289 2 = "Not a circumstance for applying" 1290 ; NOTE: Format EFB2200R has been output. 1291 VALUE EFB2201Y (default=32) 1292 -1 = "Not in universe" 1293 1 = "Circumstance for applying" 1294 2 = "Not a circumstance for applying" 1295 ; NOTE: Format EFB2201Y has been output. 1296 VALUE AFB220L (default=32) 1297 0 = "Not imputed" 1298 1 = "Imputed" 1299 2 = "Cold Deck Imputation" 1300 3 = "Logical Imputation (Derivation)" 1301 ; NOTE: Format AFB220L has been output. 1302 VALUE ESTP03MY (default=32) 1303 -1 = "Not in Universe" 1304 1 = "Became ineligible because of" 1305 2 = "Because of family changes" 1306 3 = "Still eligible but could not" 28 The SAS System 13:18 Wednesday, March 26, 2008 1307 4 = "Other, specify" 1308 ; NOTE: Format ESTP03MY has been output. 1309 VALUE ASTP03MY (default=32) 1310 0 = "Not imputed" 1311 1 = "Imputed" 1312 2 = "Cold Deck Imputation" 1313 3 = "Logical Imputation (Derivation)" 1314 ; NOTE: Format ASTP03MY has been output. 1315 VALUE ESTP04MY (default=32) 1316 -1 = "Not in Universe" 1317 1 = "Became ineligible because of" 1318 2 = "Because of family changes" 1319 3 = "Still eligible but could not" 1320 4 = "Other, specify" 1321 ; NOTE: Format ESTP04MY has been output. 1322 VALUE ASTP04MY (default=32) 1323 0 = "Not imputed" 1324 1 = "Imputed" 1325 2 = "Cold Deck Imputation" 1326 3 = "Logical Imputation (Derivation)" 1327 ; NOTE: Format ASTP04MY has been output. 1328 VALUE ESTP21MY (default=32) 1329 -1 = "Not in Universe" 1330 1 = "Became ineligible because of" 1331 2 = "Because of family changes" 1332 3 = "Still eligible but could not" 1333 4 = "Other, specify" 1334 ; NOTE: Format ESTP21MY has been output. 1335 VALUE ASTP21MY (default=32) 1336 0 = "Not imputed" 1337 1 = "Imputed" 1338 2 = "Cold Deck Imputation" 1339 3 = "Logical Imputation (Derivation)" 1340 ; NOTE: Format ASTP21MY has been output. 1341 VALUE ESTP24MY (default=32) 1342 -1 = "Not in Universe" 1343 1 = "Became ineligible because of" 1344 2 = "Because of family changes" 1345 3 = "Still eligible but could not" 1346 4 = "Other, specify" 1347 ; NOTE: Format ESTP24MY has been output. 1348 VALUE ASTP24MY (default=32) 1349 0 = "Not imputed" 1350 1 = "Imputed" 1351 2 = "Cold Deck Imputation" 1352 3 = "Logical Imputation (Derivation)" 1353 ; NOTE: Format ASTP24MY has been output. 1354 VALUE EB2101MY (default=32) 1355 -1 = "Not in universe" 1356 1 = "Circumstance for applying" 29 The SAS System 13:18 Wednesday, March 26, 2008 1357 2 = "Not a circumstance for applying" 1358 ; NOTE: Format EB2101MY has been output. 1359 VALUE EB2102MY (default=32) 1360 -1 = "Not in universe" 1361 1 = "Circumstance for applying" 1362 2 = "Not a circumstance for applying" 1363 ; NOTE: Format EB2102MY has been output. 1364 VALUE EB2103MY (default=32) 1365 -1 = "Not in universe" 1366 1 = "Circumstance for applying" 1367 2 = "Not a circumstance for applying" 1368 ; NOTE: Format EB2103MY has been output. 1369 VALUE EB2104MY (default=32) 1370 -1 = "Not in universe" 1371 1 = "Circumstance for applying" 1372 2 = "Not a circumstance for applying" 1373 ; NOTE: Format EB2104MY has been output. 1374 VALUE EB2105MY (default=32) 1375 -1 = "Not in universe" 1376 1 = "Circumstance for applying" 1377 2 = "Not a circumstance for applying" 1378 ; NOTE: Format EB2105MY has been output. 1379 VALUE EB2106MY (default=32) 1380 -1 = "Not in universe" 1381 1 = "Circumstance for applying" 1382 2 = "Not a circumstance for applying" 1383 ; NOTE: Format EB2106MY has been output. 1384 VALUE EB2107MY (default=32) 1385 -1 = "Not in universe" 1386 1 = "Circumstance for applying" 1387 2 = "Not a circumstance for applying" 1388 ; NOTE: Format EB2107MY has been output. 1389 VALUE EB2108MY (default=32) 1390 -1 = "Not in universe" 1391 1 = "Circumstance for applying" 1392 2 = "Not a circumstance for applying" 1393 ; NOTE: Format EB2108MY has been output. 1394 VALUE EB2109MY (default=32) 1395 -1 = "Not in universe" 1396 1 = "Circumstance for applying" 1397 2 = "Not a circumstance for applying" 1398 ; NOTE: Format EB2109MY has been output. 1399 VALUE EB2110MY (default=32) 1400 -1 = "Not in universe" 1401 1 = "Circumstance for applying" 1402 2 = "Not a circumstance for applying" 1403 ; NOTE: Format EB2110MY has been output. 1404 VALUE AB21M4L (default=32) 30 The SAS System 13:18 Wednesday, March 26, 2008 1405 0 = "Not imputed" 1406 1 = "Imputed" 1407 2 = "Cold Deck Imputation" 1408 3 = "Logical Imputation (Derivation)" 1409 ; NOTE: Format AB21M4L has been output. 1410 VALUE EB2401MY (default=32) 1411 -1 = "Not in universe" 1412 1 = "Circumstance for applying" 1413 2 = "Not a circumstance for applying" 1414 ; NOTE: Format EB2401MY has been output. 1415 VALUE EB2402MY (default=32) 1416 -1 = "Not in universe" 1417 1 = "Circumstance for applying" 1418 2 = "Not a circumstance for applying" 1419 ; NOTE: Format EB2402MY has been output. 1420 VALUE EB2403MY (default=32) 1421 -1 = "Not in universe" 1422 1 = "Circumstance for applying" 1423 2 = "Not a circumstance for applying" 1424 ; NOTE: Format EB2403MY has been output. 1425 VALUE EB2404MY (default=32) 1426 -1 = "Not in universe" 1427 1 = "Circumstance for applying" 1428 2 = "Not a circumstance for applying" 1429 ; NOTE: Format EB2404MY has been output. 1430 VALUE EB2405MY (default=32) 1431 -1 = "Not in universe" 1432 1 = "Circumstance for applying" 1433 2 = "Not a circumstance for applying" 1434 ; NOTE: Format EB2405MY has been output. 1435 VALUE EB2406MY (default=32) 1436 -1 = "Not in universe" 1437 1 = "Circumstance for applying" 1438 2 = "Not a circumstance for applying" 1439 ; NOTE: Format EB2406MY has been output. 1440 VALUE EB2407MY (default=32) 1441 -1 = "Not in universe" 1442 1 = "Circumstance for applying" 1443 2 = "Not a circumstance for applying" 1444 ; NOTE: Format EB2407MY has been output. 1445 VALUE EB2408MY (default=32) 1446 -1 = "Not in universe" 1447 1 = "Circumstance for applying" 1448 2 = "Not a circumstance for applying" 1449 ; NOTE: Format EB2408MY has been output. 1450 VALUE EB2409MY (default=32) 1451 -1 = "Not in universe" 1452 1 = "Circumstance for applying" 1453 2 = "Not a circumstance for applying" 31 The SAS System 13:18 Wednesday, March 26, 2008 1454 ; NOTE: Format EB2409MY has been output. 1455 VALUE EB2410MY (default=32) 1456 -1 = "Not in universe" 1457 1 = "Circumstance for applying" 1458 2 = "Not a circumstance for applying" 1459 ; NOTE: Format EB2410MY has been output. 1460 VALUE AB24M4L (default=32) 1461 0 = "Not imputed" 1462 1 = "Imputed" 1463 2 = "Cold Deck Imputation" 1464 3 = "Logical Imputation (Derivation)" 1465 ; NOTE: Format AB24M4L has been output. 1466 VALUE EB03S1MY (default=32) 1467 -1 = "Not in Universe" 1468 1 = "Circumstance for applying" 1469 2 = "Not a circumstance for applying" 1470 ; NOTE: Format EB03S1MY has been output. 1471 VALUE EB03S2MY (default=32) 1472 -1 = "Not in Universe" 1473 1 = "Circumstance for applying" 1474 2 = "Not a circumstance for applying" 1475 ; NOTE: Format EB03S2MY has been output. 1476 VALUE EB03S3MY (default=32) 1477 -1 = "Not in Universe" 1478 1 = "Circumstance for applying" 1479 2 = "Not a circumstance for applying" 1480 ; NOTE: Format EB03S3MY has been output. 1481 VALUE EB03S4MY (default=32) 1482 -1 = "Not in Universe" 1483 1 = "Circumstance for applying" 1484 2 = "Not a circumstance for applying" 1485 ; NOTE: Format EB03S4MY has been output. 1486 VALUE AB03SM4L (default=32) 1487 0 = "Not imputed" 1488 1 = "Imputed" 1489 2 = "Cold Deck Imputation" 1490 3 = "Logical Imputation (Derivation)" 1491 ; NOTE: Format AB03SM4L has been output. 1492 VALUE EB04S1MY (default=32) 1493 -1 = "Not in Universe" 1494 1 = "Circumstance for applying" 1495 2 = "Not a circumstance for applying" 1496 ; NOTE: Format EB04S1MY has been output. 1497 VALUE EB04S2MY (default=32) 1498 -1 = "Not in Universe" 1499 1 = "Circumstance for applying" 1500 2 = "Not a circumstance for applying" 1501 ; NOTE: Format EB04S2MY has been output. 32 The SAS System 13:18 Wednesday, March 26, 2008 1502 VALUE EB04S3MY (default=32) 1503 -1 = "Not in Universe" 1504 1 = "Circumstance for applying" 1505 2 = "Not a circumstance for applying" 1506 ; NOTE: Format EB04S3MY has been output. 1507 VALUE EB04S4MY (default=32) 1508 -1 = "Not in Universe" 1509 1 = "Circumstance for applying" 1510 2 = "Not a circumstance for applying" 1511 ; NOTE: Format EB04S4MY has been output. 1512 VALUE AB04SM4L (default=32) 1513 0 = "Not imputed" 1514 1 = "Imputed" 1515 2 = "Cold Deck Imputation" 1516 3 = "Logical Imputation (Derivation)" 1517 ; NOTE: Format AB04SM4L has been output. 1518 VALUE ESTP03MK (default=32) 1519 -1 = "Not in Universe" 1520 1 = "Became ineligible because of" 1521 2 = "Because of family chges(family" 1522 3 = "Still eligible but could not" 1523 4 = "Other, specify" 1524 ; NOTE: Format ESTP03MK has been output. 1525 VALUE ASTP03MK (default=32) 1526 0 = "Not imputed" 1527 1 = "Imputed" 1528 2 = "Cold Deck Imputation" 1529 3 = "Logical Imputation (Derivation)" 1530 ; NOTE: Format ASTP03MK has been output. 1531 VALUE ESTP04MK (default=32) 1532 -1 = "Not in Universe" 1533 1 = "Became ineligible because of" 1534 2 = "Because of family chges(family" 1535 3 = "Still eligible but could not" 1536 4 = "Other, specify" 1537 ; NOTE: Format ESTP04MK has been output. 1538 VALUE ASTP04MK (default=32) 1539 0 = "Not imputed" 1540 1 = "Imputed" 1541 2 = "Cold Deck Imputation" 1542 3 = "Logical Imputation (Derivation)" 1543 ; NOTE: Format ASTP04MK has been output. 1544 VALUE ESTP21MK (default=32) 1545 -1 = "Not in Universe" 1546 1 = "Became ineligible because of" 1547 2 = "Because of family chges(family" 1548 3 = "Still eligible but could not" 1549 4 = "Other, specify" 1550 ; NOTE: Format ESTP21MK has been output. 1551 VALUE ASTP21MK (default=32) 33 The SAS System 13:18 Wednesday, March 26, 2008 1552 0 = "Not imputed" 1553 1 = "Imputed" 1554 2 = "Cold Deck Imputation" 1555 3 = "Logical Imputation (Derivation)" 1556 ; NOTE: Format ASTP21MK has been output. 1557 VALUE ESTP24MK (default=32) 1558 -1 = "Not in Universe" 1559 1 = "Became ineligible because of" 1560 2 = "Because of family chges(family" 1561 3 = "Still eligible but could not" 1562 4 = "Other, specify" 1563 ; NOTE: Format ESTP24MK has been output. 1564 VALUE ASTP24MK (default=32) 1565 0 = "Not imputed" 1566 1 = "Imputed" 1567 2 = "Cold Deck Imputation" 1568 3 = "Logical Imputation (Derivation)" 1569 ; NOTE: Format ASTP24MK has been output. 1570 VALUE EB2101MK (default=32) 1571 -1 = "Not in universe" 1572 1 = "Circumstance for applying" 1573 2 = "Not a circumstance for applying" 1574 ; NOTE: Format EB2101MK has been output. 1575 VALUE EB2102MK (default=32) 1576 -1 = "Not in universe" 1577 1 = "Circumstance for applying" 1578 2 = "Not a circumstance for applying" 1579 ; NOTE: Format EB2102MK has been output. 1580 VALUE EB2103MK (default=32) 1581 -1 = "Not in universe" 1582 1 = "Circumstance for applying" 1583 2 = "Not a circumstance for applying" 1584 ; NOTE: Format EB2103MK has been output. 1585 VALUE EB2104MK (default=32) 1586 -1 = "Not in universe" 1587 1 = "Circumstance for applying" 1588 2 = "Not a circumstance for applying" 1589 ; NOTE: Format EB2104MK has been output. 1590 VALUE EB2105MK (default=32) 1591 -1 = "Not in universe" 1592 1 = "Circumstance for applying" 1593 2 = "Not a circumstance for applying" 1594 ; NOTE: Format EB2105MK has been output. 1595 VALUE EB2106MK (default=32) 1596 -1 = "Not in universe" 1597 1 = "Circumstance for applying" 1598 2 = "Not a circumstance for applying" 1599 ; NOTE: Format EB2106MK has been output. 1600 VALUE EB2107MK (default=32) 34 The SAS System 13:18 Wednesday, March 26, 2008 1601 -1 = "Not in universe" 1602 1 = "Circumstance for applying" 1603 2 = "Not a circumstance for applying" 1604 ; NOTE: Format EB2107MK has been output. 1605 VALUE EB2108MK (default=32) 1606 -1 = "Not in universe" 1607 1 = "Circumstance for applying" 1608 2 = "Not a circumstance for applying" 1609 ; NOTE: Format EB2108MK has been output. 1610 VALUE EB2109MK (default=32) 1611 -1 = "Not in universe" 1612 1 = "Circumstance for applying" 1613 2 = "Not a circumstance for applying" 1614 ; NOTE: Format EB2109MK has been output. 1615 VALUE EB2110MK (default=32) 1616 -1 = "Not in universe" 1617 1 = "Circumstance for applying" 1618 2 = "Not a circumstance for applying" 1619 ; NOTE: Format EB2110MK has been output. 1620 VALUE AB21M3L (default=32) 1621 0 = "Not imputed" 1622 1 = "Imputed" 1623 2 = "Cold Deck Imputation" 1624 3 = "Logical Imputation (Derivation)" 1625 ; NOTE: Format AB21M3L has been output. 1626 VALUE EB2401MK (default=32) 1627 -1 = "Not in universe" 1628 1 = "Circumstance for applying" 1629 2 = "Not a circumstance for applying" 1630 ; NOTE: Format EB2401MK has been output. 1631 VALUE EB2402MK (default=32) 1632 -1 = "Not in universe" 1633 1 = "Circumstance for applying" 1634 2 = "Not a circumstance for applying" 1635 ; NOTE: Format EB2402MK has been output. 1636 VALUE EB2403MK (default=32) 1637 -1 = "Not in universe" 1638 1 = "Circumstance for applying" 1639 2 = "Not a circumstance for applying" 1640 ; NOTE: Format EB2403MK has been output. 1641 VALUE EB2404MK (default=32) 1642 -1 = "Not in universe" 1643 1 = "Circumstance for applying" 1644 2 = "Not a circumstance for applying" 1645 ; NOTE: Format EB2404MK has been output. 1646 VALUE EB2405MK (default=32) 1647 -1 = "Not in universe" 1648 1 = "Circumstance for applying" 1649 2 = "Not a circumstance for applying" 35 The SAS System 13:18 Wednesday, March 26, 2008 1650 ; NOTE: Format EB2405MK has been output. 1651 VALUE EB2406MK (default=32) 1652 -1 = "Not in universe" 1653 1 = "Circumstance for applying" 1654 2 = "Not a circumstance for applying" 1655 ; NOTE: Format EB2406MK has been output. 1656 VALUE EB2407MK (default=32) 1657 -1 = "Not in universe" 1658 1 = "Circumstance for applying" 1659 2 = "Not a circumstance for applying" 1660 ; NOTE: Format EB2407MK has been output. 1661 VALUE EB2408MK (default=32) 1662 -1 = "Not in universe" 1663 1 = "Circumstance for applying" 1664 2 = "Not a circumstance for applying" 1665 ; NOTE: Format EB2408MK has been output. 1666 VALUE EB2409MK (default=32) 1667 -1 = "Not in universe" 1668 1 = "Circumstance for applying" 1669 2 = "Not a circumstance for applying" 1670 ; NOTE: Format EB2409MK has been output. 1671 VALUE EB2410MK (default=32) 1672 -1 = "Not in universe" 1673 1 = "Circumstance for applying" 1674 2 = "Not a circumstance for applying" 1675 ; NOTE: Format EB2410MK has been output. 1676 VALUE AB24M3L (default=32) 1677 0 = "Not imputed" 1678 1 = "Imputed" 1679 2 = "Cold Deck Imputation" 1680 3 = "Logical Imputation (Derivation)" 1681 ; NOTE: Format AB24M3L has been output. 1682 VALUE EB03S1MK (default=32) 1683 -1 = "Not in Universe" 1684 1 = "Circumstance for applying" 1685 2 = "Not a circumstance for applying" 1686 ; NOTE: Format EB03S1MK has been output. 1687 VALUE EB03S2MK (default=32) 1688 -1 = "Not in Universe" 1689 1 = "Circumstance for applying" 1690 2 = "Not a circumstance for applying" 1691 ; NOTE: Format EB03S2MK has been output. 1692 VALUE EB03S3MK (default=32) 1693 -1 = "Not in Universe" 1694 1 = "Circumstance for applying" 1695 2 = "Not a circumstance for applying" 1696 ; NOTE: Format EB03S3MK has been output. 1697 VALUE EB03S4MK (default=32) 36 The SAS System 13:18 Wednesday, March 26, 2008 1698 -1 = "Not in Universe" 1699 1 = "Circumstance for applying" 1700 2 = "Not a circumstance for applying" 1701 ; NOTE: Format EB03S4MK has been output. 1702 VALUE AB03SM3L (default=32) 1703 0 = "Not imputed" 1704 1 = "Imputed" 1705 2 = "Cold Deck Imputation" 1706 3 = "Logical Imputation (Derivation)" 1707 ; NOTE: Format AB03SM3L has been output. 1708 VALUE EB04S1MK (default=32) 1709 -1 = "Not in Universe" 1710 1 = "Circumstance for applying" 1711 2 = "Not a circumstance for applying" 1712 ; NOTE: Format EB04S1MK has been output. 1713 VALUE EB04S2MK (default=32) 1714 -1 = "Not in Universe" 1715 1 = "Circumstance for applying" 1716 2 = "Not a circumstance for applying" 1717 ; NOTE: Format EB04S2MK has been output. 1718 VALUE EB04S3MK (default=32) 1719 -1 = "Not in Universe" 1720 1 = "Circumstance for applying" 1721 2 = "Not a circumstance for applying" 1722 ; NOTE: Format EB04S3MK has been output. 1723 VALUE EB04S4MK (default=32) 1724 -1 = "Not in Universe" 1725 1 = "Circumstance for applying" 1726 2 = "Not a circumstance for applying" 1727 ; NOTE: Format EB04S4MK has been output. 1728 VALUE AB04SM3L (default=32) 1729 0 = "Not imputed" 1730 1 = "Imputed" 1731 2 = "Cold Deck Imputation" 1732 3 = "Logical Imputation (Derivation)" 1733 ; NOTE: Format AB04SM3L has been output. 1734 VALUE ESTP03ML (default=32) 1735 -1 = "Not in Universe" 1736 1 = "Became ineligible because of" 1737 2 = "Because of family chges(family" 1738 3 = "Still eligible but could not" 1739 4 = "Other, specify" 1740 ; NOTE: Format ESTP03ML has been output. 1741 VALUE ASTP03ML (default=32) 1742 0 = "Not imputed" 1743 1 = "Imputed" 1744 2 = "Cold Deck Imputation" 1745 3 = "Logical Imputation (Derivation)" 1746 ; NOTE: Format ASTP03ML has been output. 37 The SAS System 13:18 Wednesday, March 26, 2008 1747 VALUE ESTP04ML (default=32) 1748 -1 = "Not in Universe" 1749 1 = "Became ineligible because of" 1750 2 = "Because of family changes(family" 1751 3 = "Still eligible but could not" 1752 4 = "Other, specify" 1753 ; NOTE: Format ESTP04ML has been output. 1754 VALUE ASTP04ML (default=32) 1755 0 = "Not imputed" 1756 1 = "Imputed" 1757 2 = "Cold Deck Imputation" 1758 3 = "Logical Imputation (Derivation)" 1759 ; NOTE: Format ASTP04ML has been output. 1760 VALUE ESTP21ML (default=32) 1761 -1 = "Not in Universe" 1762 1 = "Became ineligible because of" 1763 2 = "Because of family changes(family" 1764 3 = "Still eligible but could not" 1765 4 = "Other, specify" 1766 ; NOTE: Format ESTP21ML has been output. 1767 VALUE ASTP21ML (default=32) 1768 0 = "Not imputed" 1769 1 = "Imputed" 1770 2 = "Cold Deck Imputation" 1771 3 = "Logical Imputation (Derivation)" 1772 ; NOTE: Format ASTP21ML has been output. 1773 VALUE ESTP24ML (default=32) 1774 -1 = "Not in Universe" 1775 1 = "Became ineligible because of" 1776 2 = "Because of family changes(family" 1777 3 = "Still eligible but could not" 1778 4 = "Other, specify" 1779 ; NOTE: Format ESTP24ML has been output. 1780 VALUE ASTP24ML (default=32) 1781 0 = "Not imputed" 1782 1 = "Imputed" 1783 2 = "Cold Deck Imputation" 1784 3 = "Logical Imputation (Derivation)" 1785 ; NOTE: Format ASTP24ML has been output. 1786 VALUE EB2101ML (default=32) 1787 -1 = "Not in universe" 1788 1 = "Circumstance for applying" 1789 2 = "Not a circumstance for applying" 1790 ; NOTE: Format EB2101ML has been output. 1791 VALUE EB2102ML (default=32) 1792 -1 = "Not in universe" 1793 1 = "Circumstance for applying" 1794 2 = "Not a circumstance for applying" 1795 ; NOTE: Format EB2102ML has been output. 1796 VALUE EB2103ML (default=32) 38 The SAS System 13:18 Wednesday, March 26, 2008 1797 -1 = "Not in universe" 1798 1 = "Circumstance for applying" 1799 2 = "Not a circumstance for applying" 1800 ; NOTE: Format EB2103ML has been output. 1801 VALUE EB2104ML (default=32) 1802 -1 = "Not in universe" 1803 1 = "Circumstance for applying" 1804 2 = "Not a circumstance for applying" 1805 ; NOTE: Format EB2104ML has been output. 1806 VALUE EB2105ML (default=32) 1807 -1 = "Not in universe" 1808 1 = "Circumstance for applying" 1809 2 = "Not a circumstance for applying" 1810 ; NOTE: Format EB2105ML has been output. 1811 VALUE EB2106ML (default=32) 1812 -1 = "Not in universe" 1813 1 = "Circumstance for applying" 1814 2 = "Not a circumstance for applying" 1815 ; NOTE: Format EB2106ML has been output. 1816 VALUE EB2107ML (default=32) 1817 -1 = "Not in universe" 1818 1 = "Circumstance for applying" 1819 2 = "Not a circumstance for applying" 1820 ; NOTE: Format EB2107ML has been output. 1821 VALUE EB2108ML (default=32) 1822 -1 = "Not in universe" 1823 1 = "Circumstance for applying" 1824 2 = "Not a circumstance for applying" 1825 ; NOTE: Format EB2108ML has been output. 1826 VALUE EB2109ML (default=32) 1827 -1 = "Not in universe" 1828 1 = "Circumstance for applying" 1829 2 = "Not a circumstance for applying" 1830 ; NOTE: Format EB2109ML has been output. 1831 VALUE EB2110ML (default=32) 1832 -1 = "Not in universe" 1833 1 = "Circumstance for applying" 1834 2 = "Not a circumstance for applying" 1835 ; NOTE: Format EB2110ML has been output. 1836 VALUE AB21M2L (default=32) 1837 0 = "Not imputed" 1838 1 = "Imputed" 1839 2 = "Cold Deck Imputation" 1840 3 = "Logical Imputation (Derivation)" 1841 ; NOTE: Format AB21M2L has been output. 1842 VALUE EB2401ML (default=32) 1843 -1 = "Not in universe" 1844 1 = "Circumstance for applying" 1845 2 = "Not a circumstance for applying" 39 The SAS System 13:18 Wednesday, March 26, 2008 1846 ; NOTE: Format EB2401ML has been output. 1847 VALUE EB2402ML (default=32) 1848 -1 = "Not in universe" 1849 1 = "Circumstance for applying" 1850 2 = "Not a circumstance for applying" 1851 ; NOTE: Format EB2402ML has been output. 1852 VALUE EB2403ML (default=32) 1853 -1 = "Not in universe" 1854 1 = "Circumstance for applying" 1855 2 = "Not a circumstance for applying" 1856 ; NOTE: Format EB2403ML has been output. 1857 VALUE EB2404ML (default=32) 1858 -1 = "Not in universe" 1859 1 = "Circumstance for applying" 1860 2 = "Not a circumstance for applying" 1861 ; NOTE: Format EB2404ML has been output. 1862 VALUE EB2405ML (default=32) 1863 -1 = "Not in universe" 1864 1 = "Circumstance for applying" 1865 2 = "Not a circumstance for applying" 1866 ; NOTE: Format EB2405ML has been output. 1867 VALUE EB2406ML (default=32) 1868 -1 = "Not in universe" 1869 1 = "Circumstance for applying" 1870 2 = "Not a circumstance for applying" 1871 ; NOTE: Format EB2406ML has been output. 1872 VALUE EB2407ML (default=32) 1873 -1 = "Not in universe" 1874 1 = "Circumstance for applying" 1875 2 = "Not a circumstance for applying" 1876 ; NOTE: Format EB2407ML has been output. 1877 VALUE EB2408ML (default=32) 1878 -1 = "Not in universe" 1879 1 = "Circumstance for applying" 1880 2 = "Not a circumstance for applying" 1881 ; NOTE: Format EB2408ML has been output. 1882 VALUE EB2409ML (default=32) 1883 -1 = "Not in universe" 1884 1 = "Circumstance for applying" 1885 2 = "Not a circumstance for applying" 1886 ; NOTE: Format EB2409ML has been output. 1887 VALUE EB2410ML (default=32) 1888 -1 = "Not in universe" 1889 1 = "Circumstance for applying" 1890 2 = "Not a circumstance for applying" 1891 ; NOTE: Format EB2410ML has been output. 1892 VALUE AB24M2L (default=32) 1893 0 = "Not imputed" 40 The SAS System 13:18 Wednesday, March 26, 2008 1894 1 = "Imputed" 1895 2 = "Cold Deck Imputation" 1896 3 = "Logical Imputation (Derivation)" 1897 ; NOTE: Format AB24M2L has been output. 1898 VALUE EB03S1ML (default=32) 1899 -1 = "Not in Universe" 1900 1 = "Circumstance for applying" 1901 2 = "Not a circumstance for applying" 1902 ; NOTE: Format EB03S1ML has been output. 1903 VALUE EB03S2ML (default=32) 1904 -1 = "Not in Universe" 1905 1 = "Circumstance for applying" 1906 2 = "Not a circumstance for applying" 1907 ; NOTE: Format EB03S2ML has been output. 1908 VALUE EB03S3ML (default=32) 1909 -1 = "Not in Universe" 1910 1 = "Circumstance for applying" 1911 2 = "Not a circumstance for applying" 1912 ; NOTE: Format EB03S3ML has been output. 1913 VALUE EB03S4ML (default=32) 1914 -1 = "Not in Universe" 1915 1 = "Circumstance for applying" 1916 2 = "Not a circumstance for applying" 1917 ; NOTE: Format EB03S4ML has been output. 1918 VALUE AB03SM2L (default=32) 1919 0 = "Not imputed" 1920 1 = "Imputed" 1921 2 = "Cold Deck Imputation" 1922 3 = "Logical Imputation (Derivation)" 1923 ; NOTE: Format AB03SM2L has been output. 1924 VALUE EB04S1ML (default=32) 1925 -1 = "Not in Universe" 1926 1 = "Circumstance for applying" 1927 2 = "Not a circumstance for applying" 1928 ; NOTE: Format EB04S1ML has been output. 1929 VALUE EB04S2ML (default=32) 1930 -1 = "Not in Universe" 1931 1 = "Circumstance for applying" 1932 2 = "Not a circumstance for applying" 1933 ; NOTE: Format EB04S2ML has been output. 1934 VALUE EB04S3ML (default=32) 1935 -1 = "Not in Universe" 1936 1 = "Circumstance for applying" 1937 2 = "Not a circumstance for applying" 1938 ; NOTE: Format EB04S3ML has been output. 1939 VALUE EB04S4ML (default=32) 1940 -1 = "Not in Universe" 1941 1 = "Circumstance for applying" 1942 2 = "Not a circumstance for applying" 41 The SAS System 13:18 Wednesday, March 26, 2008 1943 ; NOTE: Format EB04S4ML has been output. 1944 VALUE AB04SM2L (default=32) 1945 0 = "Not imputed" 1946 1 = "Imputed" 1947 2 = "Cold Deck Imputation" 1948 3 = "Logical Imputation (Derivation)" 1949 ; NOTE: Format AB04SM2L has been output. 1950 VALUE EB2101MM (default=32) 1951 -1 = "Not in universe" 1952 1 = "Circumstance for applying" 1953 2 = "Not a circumstance for applying" 1954 ; NOTE: Format EB2101MM has been output. 1955 VALUE EB2102MM (default=32) 1956 -1 = "Not in universe" 1957 1 = "Circumstance for applying" 1958 2 = "Not a circumstance for applying" 1959 ; NOTE: Format EB2102MM has been output. 1960 VALUE EB2103MM (default=32) 1961 -1 = "Not in universe" 1962 1 = "Circumstance for applying" 1963 2 = "Not a circumstance for applying" 1964 ; NOTE: Format EB2103MM has been output. 1965 VALUE EB2104MM (default=32) 1966 -1 = "Not in universe" 1967 1 = "Circumstance for applying" 1968 2 = "Not a circumstance for applying" 1969 ; NOTE: Format EB2104MM has been output. 1970 VALUE EB2105MM (default=32) 1971 -1 = "Not in universe" 1972 1 = "Circumstance for applying" 1973 2 = "Not a circumstance for applying" 1974 ; NOTE: Format EB2105MM has been output. 1975 VALUE EB2106MM (default=32) 1976 -1 = "Not in universe" 1977 1 = "Circumstance for applying" 1978 2 = "Not a circumstance for applying" 1979 ; NOTE: Format EB2106MM has been output. 1980 VALUE EB2107MM (default=32) 1981 -1 = "Not in universe" 1982 1 = "Circumstance for applying" 1983 2 = "Not a circumstance for applying" 1984 ; NOTE: Format EB2107MM has been output. 1985 VALUE EB2108MM (default=32) 1986 -1 = "Not in universe" 1987 1 = "Circumstance for applying" 1988 2 = "Not a circumstance for applying" 1989 ; NOTE: Format EB2108MM has been output. 1990 VALUE EB2109MM (default=32) 42 The SAS System 13:18 Wednesday, March 26, 2008 1991 -1 = "Not in universe" 1992 1 = "Circumstance for applying" 1993 2 = "Not a circumstance for applying" 1994 ; NOTE: Format EB2109MM has been output. 1995 VALUE EB2110MM (default=32) 1996 -1 = "Not in universe" 1997 1 = "Circumstance for applying" 1998 2 = "Not a circumstance for applying" 1999 ; NOTE: Format EB2110MM has been output. 2000 VALUE AB21M1L (default=32) 2001 0 = "Not imputed" 2002 1 = "Imputed" 2003 2 = "Cold Deck Imputation" 2004 3 = "Logical Imputation (Derivation)" 2005 ; NOTE: Format AB21M1L has been output. 2006 VALUE EB2401MM (default=32) 2007 -1 = "Not in universe" 2008 1 = "Circumstance for applying" 2009 2 = "Not a circumstance for applying" 2010 ; NOTE: Format EB2401MM has been output. 2011 VALUE EB2402MM (default=32) 2012 -1 = "Not in universe" 2013 1 = "Circumstance for applying" 2014 2 = "Not a circumstance for applying" 2015 ; NOTE: Format EB2402MM has been output. 2016 VALUE EB2403MM (default=32) 2017 -1 = "Not in universe" 2018 1 = "Circumstance for applying" 2019 2 = "Not a circumstance for applying" 2020 ; NOTE: Format EB2403MM has been output. 2021 VALUE EB2404MM (default=32) 2022 -1 = "Not in universe" 2023 1 = "Circumstance for applying" 2024 2 = "Not a circumstance for applying" 2025 ; NOTE: Format EB2404MM has been output. 2026 VALUE EB2405MM (default=32) 2027 -1 = "Not in universe" 2028 1 = "Circumstance for applying" 2029 2 = "Not a circumstance for applying" 2030 ; NOTE: Format EB2405MM has been output. 2031 VALUE EB2406MM (default=32) 2032 -1 = "Not in universe" 2033 1 = "Circumstance for applying" 2034 2 = "Not a circumstance for applying" 2035 ; NOTE: Format EB2406MM has been output. 2036 VALUE EB2407MM (default=32) 2037 -1 = "Not in universe" 2038 1 = "Circumstance for applying" 2039 2 = "Not a circumstance for applying" 43 The SAS System 13:18 Wednesday, March 26, 2008 2040 ; NOTE: Format EB2407MM has been output. 2041 VALUE EB2408MM (default=32) 2042 -1 = "Not in universe" 2043 1 = "Circumstance for applying" 2044 2 = "Not a circumstance for applying" 2045 ; NOTE: Format EB2408MM has been output. 2046 VALUE EB2409MM (default=32) 2047 -1 = "Not in universe" 2048 1 = "Circumstance for applying" 2049 2 = "Not a circumstance for applying" 2050 ; NOTE: Format EB2409MM has been output. 2051 VALUE EB2410MM (default=32) 2052 -1 = "Not in universe" 2053 1 = "Circumstance for applying" 2054 2 = "Not a circumstance for applying" 2055 ; NOTE: Format EB2410MM has been output. 2056 VALUE AB24M1L (default=32) 2057 0 = "Not imputed" 2058 1 = "Imputed" 2059 2 = "Cold Deck Imputation" 2060 3 = "Logical Imputation (Derivation)" 2061 ; NOTE: Format AB24M1L has been output. 2062 VALUE EB03S1MM (default=32) 2063 -1 = "Not in Universe" 2064 1 = "Circumstance for applying" 2065 2 = "Not a circumstance for applying" 2066 ; NOTE: Format EB03S1MM has been output. 2067 VALUE EB03S2MM (default=32) 2068 -1 = "Not in Universe" 2069 1 = "Circumstance for applying" 2070 2 = "Not a circumstance for applying" 2071 ; NOTE: Format EB03S2MM has been output. 2072 VALUE EB03S3MM (default=32) 2073 -1 = "Not in Universe" 2074 1 = "Circumstance for applying" 2075 2 = "Not a circumstance for applying" 2076 ; NOTE: Format EB03S3MM has been output. 2077 VALUE EB03S4MM (default=32) 2078 -1 = "Not in Universe" 2079 1 = "Circumstance for applying" 2080 2 = "Not a circumstance for applying" 2081 ; NOTE: Format EB03S4MM has been output. 2082 VALUE AB03SM1L (default=32) 2083 0 = "Not imputed" 2084 1 = "Imputed" 2085 2 = "Cold Deck Imputation" 2086 3 = "Logical Imputation (Derivation)" 2087 ; NOTE: Format AB03SM1L has been output. 44 The SAS System 13:18 Wednesday, March 26, 2008 2088 VALUE EB04S1MM (default=32) 2089 -1 = "Not in Universe" 2090 1 = "Circumstance for applying" 2091 2 = "Not a circumstance for applying" 2092 ; NOTE: Format EB04S1MM has been output. 2093 VALUE EB04S2MM (default=32) 2094 -1 = "Not in Universe" 2095 1 = "Circumstance for applying" 2096 2 = "Not a circumstance for applying" 2097 ; NOTE: Format EB04S2MM has been output. 2098 VALUE EB04S3MM (default=32) 2099 -1 = "Not in Universe" 2100 1 = "Circumstance for applying" 2101 2 = "Not a circumstance for applying" 2102 ; NOTE: Format EB04S3MM has been output. 2103 VALUE EB04S4MM (default=32) 2104 -1 = "Not in Universe" 2105 1 = "Circumstance for applying" 2106 2 = "Not a circumstance for applying" 2107 ; NOTE: Format EB04S4MM has been output. 2108 VALUE AB04SM1L (default=32) 2109 0 = "Not imputed" 2110 1 = "Imputed" 2111 2 = "Cold Deck Imputation" 2112 3 = "Logical Imputation (Derivation)" 2113 ; NOTE: Format AB04SM1L has been output. 2114 VALUE ECOVB1M (default=32) 2115 -1 = "Not in universe" 2116 ; NOTE: Format ECOVB1M has been output. 2117 VALUE TCOVB1Y (default=32) 2118 -1 = "Not in universe" 2119 ; NOTE: Format TCOVB1Y has been output. 2120 VALUE ACOVB1M (default=32) 2121 0 = "Not imputed" 2122 1 = "Imputed" 2123 2 = "Cold Deck Imputation" 2124 3 = "Logical Imputation (Derivation)" 2125 ; NOTE: Format ACOVB1M has been output. 2126 VALUE ACOVB1Y (default=32) 2127 0 = "Not imputed" 2128 1 = "Imputed" 2129 2 = "Cold Deck Imputation" 2130 3 = "Logical Imputation (Derivation)" 2131 ; NOTE: Format ACOVB1Y has been output. 2132 VALUE ECOVB3M (default=32) 2133 -1 = "Not in universe" 2134 ; NOTE: Format ECOVB3M has been output. 2135 VALUE TCOVB3Y (default=32) 45 The SAS System 13:18 Wednesday, March 26, 2008 2136 -1 = "Not in universe" 2137 ; NOTE: Format TCOVB3Y has been output. 2138 VALUE ACOVB3M (default=32) 2139 0 = "Not imputed" 2140 1 = "Imputed" 2141 2 = "Cold Deck Imputation" 2142 3 = "Logical Imputation (Derivation)" 2143 ; NOTE: Format ACOVB3M has been output. 2144 VALUE ACOVB3Y (default=32) 2145 0 = "Not imputed" 2146 1 = "Imputed" 2147 2 = "Cold Deck Imputation" 2148 3 = "Logical Imputation (Derivation)" 2149 ; NOTE: Format ACOVB3Y has been output. 2150 VALUE ECOVB4M (default=32) 2151 -1 = "Not in universe" 2152 ; NOTE: Format ECOVB4M has been output. 2153 VALUE TCOVB4Y (default=32) 2154 -1 = "Not in universe" 2155 ; NOTE: Format TCOVB4Y has been output. 2156 VALUE ACOVB4M (default=32) 2157 0 = "Not imputed" 2158 1 = "Imputed" 2159 2 = "Cold Deck Imputation" 2160 3 = "Logical Imputation (Derivation)" 2161 ; NOTE: Format ACOVB4M has been output. 2162 VALUE ACOVB4Y (default=32) 2163 0 = "Not imputed" 2164 1 = "Imputed" 2165 2 = "Cold Deck Imputation" 2166 3 = "Logical Imputation (Derivation)" 2167 ; NOTE: Format ACOVB4Y has been output. 2168 VALUE EAPLFS (default=32) 2169 -1 = "Not in universe" 2170 1 = "Yes" 2171 2 = "No" 2172 ; NOTE: Format EAPLFS has been output. 2173 VALUE AAPLFS (default=32) 2174 0 = "Not imputed" 2175 1 = "Imputed" 2176 2 = "Cold Deck Imputation" 2177 3 = "Logical Imputation (Derivation)" 2178 ; NOTE: Format AAPLFS has been output. 2179 VALUE ERECVFS (default=32) 2180 -1 = "Not in universe" 2181 1 = "Yes" 2182 2 = "No" 2183 ; NOTE: Format ERECVFS has been output. 46 The SAS System 13:18 Wednesday, March 26, 2008 2184 VALUE ARECVFS (default=32) 2185 0 = "Not imputed" 2186 1 = "Imputed" 2187 2 = "Cold Deck Imputation" 2188 3 = "Logical Imputation (Derivation)" 2189 ; NOTE: Format ARECVFS has been output. 2190 VALUE EFSSTRMN (default=32) 2191 -1 = "Not in universe" 2192 ; NOTE: Format EFSSTRMN has been output. 2193 VALUE AFSSTRMN (default=32) 2194 0 = "Not imputed" 2195 1 = "Imputed" 2196 2 = "Cold Deck Imputation" 2197 3 = "Logical Imputation (Derivation)" 2198 ; NOTE: Format AFSSTRMN has been output. 2199 VALUE TFSSTRYR (default=32) 2200 -1 = "Not in universe" 2201 ; NOTE: Format TFSSTRYR has been output. 2202 VALUE AFSSTRYR (default=32) 2203 0 = "Not imputed" 2204 1 = "Imputed" 2205 2 = "Cold Deck Imputation" 2206 3 = "Logical Imputation (Derivation)" 2207 ; NOTE: Format AFSSTRYR has been output. 2208 VALUE EFSLONGR (default=32) 2209 -1 = "Not in universe" 2210 ; NOTE: Format EFSLONGR has been output. 2211 VALUE AFSLONGR (default=32) 2212 0 = "Not imputed" 2213 1 = "Imputed" 2214 2 = "Cold Deck Imputation" 2215 3 = "Logical Imputation (Derivation)" 2216 ; NOTE: Format AFSLONGR has been output. 2217 VALUE EFSLONGK (default=32) 2218 -1 = "Not in universe" 2219 ; NOTE: Format EFSLONGK has been output. 2220 VALUE AFSLONGK (default=32) 2221 0 = "Not imputed" 2222 1 = "Imputed" 2223 2 = "Cold Deck Imputation" 2224 3 = "Logical Imputation (Derivation)" 2225 ; NOTE: Format AFSLONGK has been output. 2226 VALUE EFSTIMES (default=32) 2227 -1 = "Not in universe" 2228 ; NOTE: Format EFSTIMES has been output. 2229 VALUE AFSTIMES (default=32) 2230 0 = "Not imputed" 2231 1 = "Imputed" 47 The SAS System 13:18 Wednesday, March 26, 2008 2232 2 = "Cold Deck Imputation" 2233 3 = "Logical Imputation (Derivation)" 2234 ; NOTE: Format AFSTIMES has been output. 2235 VALUE EAPLAFDC (default=32) 2236 -1 = "Not in universe" 2237 1 = "Yes" 2238 2 = "No" 2239 ; NOTE: Format EAPLAFDC has been output. 2240 VALUE AAPLAFDC (default=32) 2241 0 = "Not imputed" 2242 1 = "Imputed" 2243 2 = "Cold Deck Imputation" 2244 3 = "Logical Imputation (Derivation)" 2245 ; NOTE: Format AAPLAFDC has been output. 2246 VALUE ERCVAFDC (default=32) 2247 -1 = "Not in universe" 2248 1 = "Yes" 2249 2 = "No" 2250 ; NOTE: Format ERCVAFDC has been output. 2251 VALUE ARCVAFDC (default=32) 2252 0 = "Not imputed" 2253 1 = "Imputed" 2254 2 = "Cold Deck Imputation" 2255 3 = "Logical Imputation (Derivation)" 2256 ; NOTE: Format ARCVAFDC has been output. 2257 VALUE EAFDCSTM (default=32) 2258 -1 = "Not in universe" 2259 ; NOTE: Format EAFDCSTM has been output. 2260 VALUE AAFDCSTM (default=32) 2261 0 = "Not imputed" 2262 1 = "Imputed" 2263 2 = "Cold Deck Imputation" 2264 3 = "Logical Imputation (Derivation)" 2265 ; NOTE: Format AAFDCSTM has been output. 2266 VALUE TAFDCSTY (default=32) 2267 -1 = "Not in universe" 2268 ; NOTE: Format TAFDCSTY has been output. 2269 VALUE AAFDCSTY (default=32) 2270 0 = "Not imputed" 2271 1 = "Imputed" 2272 2 = "Cold Deck Imputation" 2273 3 = "Logical Imputation (Derivation)" 2274 ; NOTE: Format AAFDCSTY has been output. 2275 VALUE EAFDCLGY (default=32) 2276 -1 = "Not in universe" 2277 ; NOTE: Format EAFDCLGY has been output. 2278 VALUE AAFDCLGY (default=32) 2279 0 = "Not imputed" 48 The SAS System 13:18 Wednesday, March 26, 2008 2280 1 = "Imputed" 2281 2 = "Cold Deck Imputation" 2282 3 = "Logical Imputation (Derivation)" 2283 ; NOTE: Format AAFDCLGY has been output. 2284 VALUE EAFDCLGK (default=32) 2285 -1 = "Not in universe" 2286 ; NOTE: Format EAFDCLGK has been output. 2287 VALUE AAFDCLGK (default=32) 2288 0 = "Not imputed" 2289 1 = "Imputed" 2290 2 = "Cold Deck Imputation" 2291 3 = "Logical Imputation (Derivation)" 2292 ; NOTE: Format AAFDCLGK has been output. 2293 VALUE EAFDCTIM (default=32) 2294 -1 = "Not in universe" 2295 ; NOTE: Format EAFDCTIM has been output. 2296 VALUE AAFDCTIM (default=32) 2297 0 = "Not imputed" 2298 1 = "Imputed" 2299 2 = "Cold Deck Imputation" 2300 3 = "Logical Imputation (Derivation)" 2301 ; NOTE: Format AAFDCTIM has been output. 2302 VALUE EAPLSSI (default=32) 2303 -1 = "Not in universe" 2304 1 = "Yes" 2305 2 = "No" 2306 ; NOTE: Format EAPLSSI has been output. 2307 VALUE AAPLSSI (default=32) 2308 0 = "Not imputed" 2309 1 = "Imputed" 2310 2 = "Cold Deck Imputation" 2311 3 = "Logical Imputation (Derivation)" 2312 ; NOTE: Format AAPLSSI has been output. 2313 VALUE ERECVSSI (default=32) 2314 -1 = "Not in universe" 2315 1 = "Yes" 2316 2 = "No" 2317 ; NOTE: Format ERECVSSI has been output. 2318 VALUE ARECVSSI (default=32) 2319 0 = "Not imputed" 2320 1 = "Imputed" 2321 2 = "Cold Deck Imputation" 2322 3 = "Logical Imputation (Derivation)" 2323 ; NOTE: Format ARECVSSI has been output. 2324 VALUE ESSISTRM (default=32) 2325 -1 = "Not in universe" 2326 ; NOTE: Format ESSISTRM has been output. 2327 VALUE ASSISTRM (default=32) 49 The SAS System 13:18 Wednesday, March 26, 2008 2328 0 = "Not imputed" 2329 1 = "Imputed" 2330 2 = "Cold Deck Imputation" 2331 3 = "Logical Imputation (Derivation)" 2332 ; NOTE: Format ASSISTRM has been output. 2333 VALUE TSSISTRY (default=32) 2334 -1 = "Not in universe" 2335 ; NOTE: Format TSSISTRY has been output. 2336 VALUE ASSISTRY (default=32) 2337 0 = "Not imputed" 2338 1 = "Imputed" 2339 2 = "Cold Deck Imputation" 2340 3 = "Logical Imputation (Derivation)" 2341 ; NOTE: Format ASSISTRY has been output. 2342 VALUE ESSILNGY (default=32) 2343 -1 = "Not in universe" 2344 ; NOTE: Format ESSILNGY has been output. 2345 VALUE ASSILNGY (default=32) 2346 0 = "Not imputed" 2347 1 = "Imputed" 2348 2 = "Cold Deck Imputation" 2349 3 = "Logical Imputation (Derivation)" 2350 ; NOTE: Format ASSILNGY has been output. 2351 VALUE ESSILNGK (default=32) 2352 -1 = "Not in universe" 2353 ; NOTE: Format ESSILNGK has been output. 2354 VALUE ASSILNGK (default=32) 2355 0 = "Not imputed" 2356 1 = "Imputed" 2357 2 = "Cold Deck Imputation" 2358 3 = "Logical Imputation (Derivation)" 2359 ; NOTE: Format ASSILNGK has been output. 2360 2361 filename raw pipe "unzip -p /homes/data/sipp/1996/sipp96t1.zip "; 2362 NOTE: The data set LIBRARY.FSP96T1 has 1464 observations and 21 variables. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.86 seconds cpu time 0.56 seconds 2363 data library.sip96t1; 2364 2365 missing A; 2366 infile raw lrecl = 20000 missover ; 2367 * To read in uncompressed file, uncomment INFILE & comment filename & infile lines; 2368 * On a PC, you may need to change the direction of the slashes as in C:\; 2369 *INFILE '/homes/data/sipp/1996/sipp96t1.dat' LRECL=20000 PAD END=EOF; 2370 2371 50 The SAS System 13:18 Wednesday, March 26, 2008 2372 2373 *LENGTH 2374 SSUSEQ 4 2375 SSUID $12 2376 SPANEL 4 2377 EPPPNUM $4 2378 WPFINWGT 8 2379 EPNMOM 4 2380 EPNDAD 4 2381 EPNGUARD 4 2382 EPNSPOUS 4 2383 TLSTWRKY 4 2384 TPRVJBYR 4 2385 TFRMRYR 4 2386 TMAKMNYR 4 2387 TNOWRKFR 4 2388 TNOWRKTO 4 2389 TFSTYRFR 4 2390 TFSTYRTO 4 2391 TYBG120Y 4 2392 TWBG120Y 4 2393 TFBG120Y 4 2394 TCOVB1Y 4 2395 TCOVB3Y 4 2396 TCOVB4Y 4 2397 TFSSTRYR 4 2398 TAFDCSTY 4 2399 TSSISTRY 4 2400 DEFAULT=3; 2401 2402 2403 /*-------------------------------------------------------------------------------------*/ 2404 /* The following changes in variable names have been made, if necessary: 2405 '$' to 'd'; '-' to '_'; '%' to 'p'; 2406 2407 Note: Variable names in SAS are not case-sensitive */ 2408 2409 /*-------------------------------------------------------------------------------------*/ 2410 2411 INPUT 2412 2413 @1 SSUSEQ 5. 2414 @6 SSUID $12. 2415 @18 SPANEL 4. 2416 @22 SWAVE 2. 2417 @24 SROTATON 1. 2418 @25 TFIPSST 2. 2419 @27 EOUTCOME 3. 2420 @30 SHHADID 3. 2421 @33 SINTHHID 3. 2422 @36 RFID 3. 2423 @39 RFID2 3. 2424 @42 EPPIDX 3. 2425 @45 EENTAID $3. 2426 @48 EPPPNUM $4. 2427 @52 EPOPSTAT 1. 2428 @53 EPPINTVW 2. 2429 @55 EPPMIS4 1. 51 The SAS System 13:18 Wednesday, March 26, 2008 2430 @56 ESEX 1. 2431 @57 ERACE 1. 2432 @58 EORIGIN 2. 2433 @60 WPFINWGT 10.4 2434 @70 ERRP 2. 2435 @72 EMS 1. 2436 @73 EPNMOM 4. 2437 @77 EPNDAD 4. 2438 @81 EPNGUARD 4. 2439 @85 EPNSPOUS 4. 2440 @89 RDESGPNT 2. 2441 @91 TAGE 2. 2442 @93 EEDUCATE 2. 2443 @95 TLSTWRKY 4. 2444 @99 ELSTWRKM 2. 2445 @101 TPRVJBYR 4. 2446 @105 EPRVJBMN 2. 2447 @107 TFRMRYR 4. 2448 @111 EFRMRMN 2. 2449 @113 TMAKMNYR 4. 2450 @117 EMNRESON 2. 2451 @119 EYRSINCE 2. 2452 @121 EYRSINC2 2. 2453 @123 EWRK35HR 2. 2454 @125 EOFF6MTN 2. 2455 @127 TNOWRKFR 4. 2456 @131 TNOWRKTO 4. 2457 @135 EOTHTIME 2. 2458 @137 ECNTOTHR 2. 2459 @139 TFSTYRFR 4. 2460 @143 TFSTYRTO 4. 2461 @147 ENWRESN 2. 2462 @149 EFRSTRSN 2. 2463 @151 ALSTWRKY 1. 2464 @152 ALSTWRKM 1. 2465 @153 APRVJBYR 1. 2466 @154 APRVJBMN 1. 2467 @155 AFRMRYR 1. 2468 @156 AFRMRMN 1. 2469 @157 AMAKMNYR 1. 2470 @158 AMNRESON 1. 2471 @159 AYRSINCE 1. 2472 @160 AYRSINC2 1. 2473 @161 AWRK35HR 1. 2474 @162 AOFF6MTN 1. 2475 @163 ANOWRKFR 1. 2476 @164 ANOWRKTO 1. 2477 @165 AOTHTIME 1. 2478 @166 ACNTOTHR 1. 2479 @167 AFSTYRFR 1. 2480 @168 AFSTYRTO 1. 2481 @169 ANWRESN 1. 2482 @170 AFRSTRSN 1. 2483 @171 EYSTP21 2. 2484 @173 AYSTP21 1. 2485 @174 EYBG2101 2. 2486 @176 EYBG2102 2. 2487 @178 EYBG2103 2. 52 The SAS System 13:18 Wednesday, March 26, 2008 2488 @180 EYBG2104 2. 2489 @182 EYBG2105 2. 2490 @184 EYBG2106 2. 2491 @186 EYBG2107 2. 2492 @188 EYBG2108 2. 2493 @190 EYBG2109 2. 2494 @192 EYBG2110 2. 2495 @194 AYBG21 1. 2496 @195 EYSTP22 2. 2497 @197 AYSTP22 1. 2498 @198 EYBG2201 2. 2499 @200 EYBG2202 2. 2500 @202 EYBG2203 2. 2501 @204 EYBG2204 2. 2502 @206 EYBG2205 2. 2503 @208 EYBG2206 2. 2504 @210 EYBG2207 2. 2505 @212 EYBG2208 2. 2506 @214 EYBG2209 2. 2507 @216 EYBG2210 2. 2508 @218 AYBG22 1. 2509 @219 EYSTP23 2. 2510 @221 AYSTP23 1. 2511 @222 EYBG2301 2. 2512 @224 EYBG2302 2. 2513 @226 EYBG2303 2. 2514 @228 EYBG2304 2. 2515 @230 EYBG2305 2. 2516 @232 EYBG2306 2. 2517 @234 EYBG2307 2. 2518 @236 EYBG2308 2. 2519 @238 EYBG2309 2. 2520 @240 EYBG2310 2. 2521 @242 AYBG23 1. 2522 @243 TYBG120Y 4. 2523 @247 EYBG120M 2. 2524 @249 AYBG120M 1. 2525 @250 AYBG120Y 1. 2526 @251 EYB22001 2. 2527 @253 EYB22002 2. 2528 @255 EYB22003 2. 2529 @257 EYB22004 2. 2530 @259 EYB22005 2. 2531 @261 EYB22006 2. 2532 @263 EYB22007 2. 2533 @265 EYB22008 2. 2534 @267 EYB22009 2. 2535 @269 EYB22010 2. 2536 @271 AYBG220 1. 2537 @272 EWSTP21 2. 2538 @274 AWSTP21 1. 2539 @275 EWBG2101 2. 2540 @277 EWBG2102 2. 2541 @279 EWBG2103 2. 2542 @281 EWBG2104 2. 2543 @283 EWBG2105 2. 2544 @285 EWBG2106 2. 2545 @287 EWBG2107 2. 53 The SAS System 13:18 Wednesday, March 26, 2008 2546 @289 EWBG2108 2. 2547 @291 EWBG2109 2. 2548 @293 EWBG2110 2. 2549 @295 AWBG21 1. 2550 @296 EWSTP22 2. 2551 @298 AWSTP22 1. 2552 @299 EWBG2201 2. 2553 @301 EWBG2202 2. 2554 @303 EWBG2203 2. 2555 @305 EWBG2204 2. 2556 @307 EWBG2205 2. 2557 @309 EWBG2206 2. 2558 @311 EWBG2207 2. 2559 @313 EWBG2208 2. 2560 @315 EWBG2209 2. 2561 @317 EWBG2210 2. 2562 @319 AWBG22 1. 2563 @320 EWSTP23 2. 2564 @322 AWSTP23 1. 2565 @323 EWBG2301 2. 2566 @325 EWBG2302 2. 2567 @327 EWBG2303 2. 2568 @329 EWBG2304 2. 2569 @331 EWBG2305 2. 2570 @333 EWBG2306 2. 2571 @335 EWBG2307 2. 2572 @337 EWBG2308 2. 2573 @339 EWBG2309 2. 2574 @341 EWBG2310 2. 2575 @343 AWBG23 1. 2576 @344 EWBG120M 2. 2577 @346 TWBG120Y 4. 2578 @350 AWBG120M 1. 2579 @351 AWBG120Y 1. 2580 @352 EWB22001 2. 2581 @354 EWB22002 2. 2582 @356 EWB22003 2. 2583 @358 EWB22004 2. 2584 @360 EWB22005 2. 2585 @362 EWB22006 2. 2586 @364 EWB22007 2. 2587 @366 EWB22008 2. 2588 @368 EWB22009 2. 2589 @370 EWB22010 2. 2590 @372 AWBG220 1. 2591 @373 EFSTP21 2. 2592 @375 AFSTP21 1. 2593 @376 EFBG2101 2. 2594 @378 EFBG2102 2. 2595 @380 EFBG2103 2. 2596 @382 EFBG2104 2. 2597 @384 EFBG2105 2. 2598 @386 EFBG2106 2. 2599 @388 EFBG2107 2. 2600 @390 EFBG2108 2. 2601 @392 EFBG2109 2. 2602 @394 EFBG2110 2. 2603 @396 AFBG21 1. 54 The SAS System 13:18 Wednesday, March 26, 2008 2604 @397 EFSTP22 2. 2605 @399 AFSTP22 1. 2606 @400 EFBG2201 2. 2607 @402 EFBG2202 2. 2608 @404 EFBG2203 2. 2609 @406 EFBG2204 2. 2610 @408 EFBG2205 2. 2611 @410 EFBG2206 2. 2612 @412 EFBG2207 2. 2613 @414 EFBG2208 2. 2614 @416 EFBG2209 2. 2615 @418 EFBG2210 2. 2616 @420 AFBG22 1. 2617 @421 EFSTP23 2. 2618 @423 AFSTP23 1. 2619 @424 EFBG2301 2. 2620 @426 EFBG2302 2. 2621 @428 EFBG2303 2. 2622 @430 EFBG2304 2. 2623 @432 EFBG2305 2. 2624 @434 EFBG2306 2. 2625 @436 EFBG2307 2. 2626 @438 EFBG2308 2. 2627 @440 EFBG2309 2. 2628 @442 EFBG2310 2. 2629 @444 AFBG23 1. 2630 @445 EFBG120M 2. 2631 @447 TFBG120Y 4. 2632 @451 AFBG120M 1. 2633 @452 AFBG120Y 1. 2634 @453 EFB22001 2. 2635 @455 EFB22002 2. 2636 @457 EFB22003 2. 2637 @459 EFB22004 2. 2638 @461 EFB22005 2. 2639 @463 EFB22006 2. 2640 @465 EFB22007 2. 2641 @467 EFB22008 2. 2642 @469 EFB22009 2. 2643 @471 EFB22010 2. 2644 @473 AFB220 1. 2645 @474 ESTP03M4 2. 2646 @476 ASTP03M4 1. 2647 @477 ESTP04M4 2. 2648 @479 ASTP04M4 1. 2649 @480 ESTP21M4 2. 2650 @482 ASTP21M4 1. 2651 @483 ESTP24M4 2. 2652 @485 ASTP24M4 1. 2653 @486 EB2101M4 2. 2654 @488 EB2102M4 2. 2655 @490 EB2103M4 2. 2656 @492 EB2104M4 2. 2657 @494 EB2105M4 2. 2658 @496 EB2106M4 2. 2659 @498 EB2107M4 2. 2660 @500 EB2108M4 2. 2661 @502 EB2109M4 2. 55 The SAS System 13:18 Wednesday, March 26, 2008 2662 @504 EB2110M4 2. 2663 @506 AB21M4 1. 2664 @507 EB2401M4 2. 2665 @509 EB2402M4 2. 2666 @511 EB2403M4 2. 2667 @513 EB2404M4 2. 2668 @515 EB2405M4 2. 2669 @517 EB2406M4 2. 2670 @519 EB2407M4 2. 2671 @521 EB2408M4 2. 2672 @523 EB2409M4 2. 2673 @525 EB2410M4 2. 2674 @527 AB24M4 1. 2675 @528 EB03S1M4 2. 2676 @530 EB03S2M4 2. 2677 @532 EB03S3M4 2. 2678 @534 EB03S4M4 2. 2679 @536 AB03SM4 1. 2680 @537 EB04S1M4 2. 2681 @539 EB04S2M4 2. 2682 @541 EB04S3M4 2. 2683 @543 EB04S4M4 2. 2684 @545 AB04SM4 1. 2685 @546 ESTP03M3 2. 2686 @548 ASTP03M3 1. 2687 @549 ESTP04M3 2. 2688 @551 ASTP04M3 1. 2689 @552 ESTP21M3 2. 2690 @554 ASTP21M3 1. 2691 @555 ESTP24M3 2. 2692 @557 ASTP24M3 1. 2693 @558 EB2101M3 2. 2694 @560 EB2102M3 2. 2695 @562 EB2103M3 2. 2696 @564 EB2104M3 2. 2697 @566 EB2105M3 2. 2698 @568 EB2106M3 2. 2699 @570 EB2107M3 2. 2700 @572 EB2108M3 2. 2701 @574 EB2109M3 2. 2702 @576 EB2110M3 2. 2703 @578 AB21M3 1. 2704 @579 EB2401M3 2. 2705 @581 EB2402M3 2. 2706 @583 EB2403M3 2. 2707 @585 EB2404M3 2. 2708 @587 EB2405M3 2. 2709 @589 EB2406M3 2. 2710 @591 EB2407M3 2. 2711 @593 EB2408M3 2. 2712 @595 EB2409M3 2. 2713 @597 EB2410M3 2. 2714 @599 AB24M3 1. 2715 @600 EB03S1M3 2. 2716 @602 EB03S2M3 2. 2717 @604 EB03S3M3 2. 2718 @606 EB03S4M3 2. 2719 @608 AB03SM3 1. 56 The SAS System 13:18 Wednesday, March 26, 2008 2720 @609 EB04S1M3 2. 2721 @611 EB04S2M3 2. 2722 @613 EB04S3M3 2. 2723 @615 EB04S4M3 2. 2724 @617 AB04SM3 1. 2725 @618 ESTP03M2 2. 2726 @620 ASTP03M2 1. 2727 @621 ESTP04M2 2. 2728 @623 ASTP04M2 1. 2729 @624 ESTP21M2 2. 2730 @626 ASTP21M2 1. 2731 @627 ESTP24M2 2. 2732 @629 ASTP24M2 1. 2733 @630 EB2101M2 2. 2734 @632 EB2102M2 2. 2735 @634 EB2103M2 2. 2736 @636 EB2104M2 2. 2737 @638 EB2105M2 2. 2738 @640 EB2106M2 2. 2739 @642 EB2107M2 2. 2740 @644 EB2108M2 2. 2741 @646 EB2109M2 2. 2742 @648 EB2110M2 2. 2743 @650 AB21M2 1. 2744 @651 EB2401M2 2. 2745 @653 EB2402M2 2. 2746 @655 EB2403M2 2. 2747 @657 EB2404M2 2. 2748 @659 EB2405M2 2. 2749 @661 EB2406M2 2. 2750 @663 EB2407M2 2. 2751 @665 EB2408M2 2. 2752 @667 EB2409M2 2. 2753 @669 EB2410M2 2. 2754 @671 AB24M2 1. 2755 @672 EB03S1M2 2. 2756 @674 EB03S2M2 2. 2757 @676 EB03S3M2 2. 2758 @678 EB03S4M2 2. 2759 @680 AB03SM2 1. 2760 @681 EB04S1M2 2. 2761 @683 EB04S2M2 2. 2762 @685 EB04S3M2 2. 2763 @687 EB04S4M2 2. 2764 @689 AB04SM2 1. 2765 @690 EB2101M1 2. 2766 @692 EB2102M1 2. 2767 @694 EB2103M1 2. 2768 @696 EB2104M1 2. 2769 @698 EB2105M1 2. 2770 @700 EB2106M1 2. 2771 @702 EB2107M1 2. 2772 @704 EB2108M1 2. 2773 @706 EB2109M1 2. 2774 @708 EB2110M1 2. 2775 @710 AB21M1 1. 2776 @711 EB2401M1 2. 2777 @713 EB2402M1 2. 57 The SAS System 13:18 Wednesday, March 26, 2008 2778 @715 EB2403M1 2. 2779 @717 EB2404M1 2. 2780 @719 EB2405M1 2. 2781 @721 EB2406M1 2. 2782 @723 EB2407M1 2. 2783 @725 EB2408M1 2. 2784 @727 EB2409M1 2. 2785 @729 EB2410M1 2. 2786 @731 AB24M1 1. 2787 @732 EB03S1M1 2. 2788 @734 EB03S2M1 2. 2789 @736 EB03S3M1 2. 2790 @738 EB03S4M1 2. 2791 @740 AB03SM1 1. 2792 @741 EB04S1M1 2. 2793 @743 EB04S2M1 2. 2794 @745 EB04S3M1 2. 2795 @747 EB04S4M1 2. 2796 @749 AB04SM1 1. 2797 @750 ECOVB1M 2. 2798 @752 TCOVB1Y 4. 2799 @756 ACOVB1M 1. 2800 @757 ACOVB1Y 1. 2801 @758 ECOVB3M 2. 2802 @760 TCOVB3Y 4. 2803 @764 ACOVB3M 1. 2804 @765 ACOVB3Y 1. 2805 @766 ECOVB4M 2. 2806 @768 TCOVB4Y 4. 2807 @772 ACOVB4M 1. 2808 @773 ACOVB4Y 1. 2809 @774 EAPLFS 2. 2810 @776 AAPLFS 1. 2811 @777 ERECVFS 2. 2812 @779 ARECVFS 1. 2813 @780 EFSSTRMN 2. 2814 @782 AFSSTRMN 1. 2815 @783 TFSSTRYR 4. 2816 @787 AFSSTRYR 1. 2817 @788 EFSLONG1 2. 2818 @790 AFSLONG1 1. 2819 @791 EFSLONG2 2. 2820 @793 AFSLONG2 1. 2821 @794 EFSTIMES 2. 2822 @796 AFSTIMES 1. 2823 @797 EAPLAFDC 2. 2824 @799 AAPLAFDC 1. 2825 @800 ERCVAFDC 2. 2826 @802 ARCVAFDC 1. 2827 @803 EAFDCSTM 2. 2828 @805 AAFDCSTM 1. 2829 @806 TAFDCSTY 4. 2830 @810 AAFDCSTY 1. 2831 @811 EAFDCLG1 2. 2832 @813 AAFDCLG1 1. 2833 @814 EAFDCLG2 2. 2834 @816 AAFDCLG2 1. 2835 @817 EAFDCTIM 2. 58 The SAS System 13:18 Wednesday, March 26, 2008 2836 @819 AAFDCTIM 1. 2837 @820 EAPLSSI 2. 2838 @822 AAPLSSI 1. 2839 @823 ERECVSSI 2. 2840 @825 ARECVSSI 1. 2841 @826 ESSISTRM 2. 2842 @828 ASSISTRM 1. 2843 @829 TSSISTRY 4. 2844 @833 ASSISTRY 1. 2845 @834 ESSILNG1 2. 2846 @836 ASSILNG1 1. 2847 @837 ESSILNG2 2. 2848 @839 ASSILNG2 1. 2849 ; 2850 2851 LABEL 2852 SSUSEQ = "SU: Sequence Number of Sample Unit - P" 2853 SSUID = "SU: Sample Unit Identifier" 2854 SPANEL = "SU: Sample Code - Indicates Panel Year" 2855 SWAVE = "SU: Wave of data collection" 2856 SROTATON = "SU: Rotation of data collection" 2857 TFIPSST = "SU: FIPS State Code for fifth month" 2858 EOUTCOME = "HH: Interview Status code for fifth mo" 2859 SHHADID = "SU: Hhld Address ID in fourth referenc" 2860 SINTHHID = "SU: Hhld Address ID of person in inter" 2861 RFID = "FA: Family ID Number in month four" 2862 RFID2 = "FA: Family ID excluding related subfam" 2863 EPPIDX = "PE: Person index" 2864 EENTAID = "PE: Address ID of hhld where person en" 2865 EPPPNUM = "PE: Person number" 2866 EPOPSTAT = "PE: Population status based on age in " 2867 EPPINTVW = "PE: Person's interview status at time " 2868 EPPMIS4 = "PE: Person's 4th month interview statu" 2869 ESEX = "PE: Sex of this person" 2870 ERACE = "PE: Race of this person" 2871 EORIGIN = "PE: Origin of this person" 2872 WPFINWGT = "WW: Person weight" 2873 ERRP = "PE: Household relationship" 2874 EMS = "PE: Marital status" 2875 EPNMOM = "PE: Person number of mother" 2876 EPNDAD = "PE: Person number of father" 2877 EPNGUARD = "PE: Person number of guardian" 2878 EPNSPOUS = "PE: Person number of spouse" 2879 RDESGPNT = "PE: Designated parent or guardian flag" 2880 TAGE = "PE: Age as of last birthday" 2881 EEDUCATE = "ED: Highest Degree received or grade" 2882 TLSTWRKY = "EM: Year last worked" 2883 ELSTWRKM = "EM: Month last worked" 2884 TPRVJBYR = "EM: Year last worked, prior to referen" 2885 EPRVJBMN = "EM: Month last worked, prior to refere" 2886 TFRMRYR = "EM: Year last or previous job started" 2887 EFRMRMN = "EM: Month last or previous job started" 2888 TMAKMNYR = "EM: Year first worked 6 straight month" 2889 EMNRESON = "EM: Main reason never worked 6 straigh" 2890 EYRSINCE = "EM: Worked annually at least 6 month/y" 2891 EYRSINC2 = "EM: How many years has ... not worked " 2892 EWRK35HR = "EM: Worked 35 or more hours per week" 2893 EOFF6MTN = "EM: Break in labor force because of" 59 The SAS System 13:18 Wednesday, March 26, 2008 2894 TNOWRKFR = "EM: Most recent time of break in labor" 2895 TNOWRKTO = "EM: Most recent time of break in labor" 2896 EOTHTIME = "EM: Were there othr times when, didnt " 2897 ECNTOTHR = "EM: Number of additional breaks in the" 2898 TFSTYRFR = "EM: First time period of break in labo" 2899 TFSTYRTO = "EM: First time period of break in labo" 2900 ENWRESN = "EM: Care receiver of most recent careg" 2901 EFRSTRSN = "EM: Care receiver of 1st caregivng spe" 2902 ALSTWRKY = "EM: Year last worked allocation flag" 2903 ALSTWRKM = "EM: Month last worked allocation flag" 2904 APRVJBYR = "EM: Yr last wrked,prior to ref period " 2905 APRVJBMN = "EM: Month last worked, prior to ref pr" 2906 AFRMRYR = "EM: Year last or previous job started" 2907 AFRMRMN = "EM: Month last or previous job started" 2908 AMAKMNYR = "EM: Year first worked 6 straight month" 2909 AMNRESON = "EM: Main rsn nevr wrked 6 strght mth a" 2910 AYRSINCE = "EM: Worked annually at least 6 mths/yr" 2911 AYRSINC2 = "EM: Number of yrs not wrked 6 straight" 2912 AWRK35HR = "EM: Worked 35 or more hours per week" 2913 AOFF6MTN = "EM: Break in labor force because of" 2914 ANOWRKFR = "EM: Most recent time of brk labor" 2915 ANOWRKTO = "EM: Most recnt time of brk labor force" 2916 AOTHTIME = "EM: Were there othr times when, didnt " 2917 ACNTOTHR = "EM: Number of added breaks in labor fo" 2918 AFSTYRFR = "EM: 1st time period of brk in labor" 2919 AFSTYRTO = "EM: 1st time period of brk in labor" 2920 ANWRESN = "EM: Care receiver of recent caregivng " 2921 AFRSTRSN = "EM: Care receiver of 1st caregivng spe" 2922 EYSTP21 = "RC1: Stopped AFDC in month 4" 2923 AYSTP21 = "RC1: Stopped AFDC in month 4 allocatio" 2924 EYBG2101 = "RC1: Rsn applied for AFDC (1=Needed th" 2925 EYBG2102 = "RC1: Rsn applied for AFDC" 2926 EYBG2103 = "RC1: Rsn applied for AFDC (3=Received " 2927 EYBG2104 = "RC1: Rsn applied for AFDC" 2928 EYBG2105 = "RC1: Rsn applied for AFDC (5=Loss of" 2929 EYBG2106 = "RC1: Rsn applied for AFDC (6=Loss othe" 2930 EYBG2107 = "RC1: Rsn applied for AFDC (7=Just lear" 2931 EYBG2108 = "RC1: Rsn applied for AFDC (8=Just got " 2932 EYBG2109 = "RC1: Rsn applied for AFDC (9=Became" 2933 EYBG2110 = "RC1: Rsn applied for AFDC (10=Other)" 2934 AYBG21 = "RC1: Rsn applied for AFDC allocation f" 2935 EYSTP22 = "EM: General Income Code" 2936 AYSTP22 = "RC1: Stopped AFDC in month 3 allocatio" 2937 EYBG2201 = "RC1: Rsn applied for AFDC (1=Needed th" 2938 EYBG2202 = "RC1: Rsn applied for AFDC" 2939 EYBG2203 = "RC1: Rsn applied for AFDC (3=Received " 2940 EYBG2204 = "RC1: Rsn applied for AFDC" 2941 EYBG2205 = "RC1: Rsn applied for AFDC (5=Loss" 2942 EYBG2206 = "RC1: Rsn applied for AFDC (6=Loss of o" 2943 EYBG2207 = "RC1: Rsn applied for AFDC (7=Just lear" 2944 EYBG2208 = "RC1: Rsn applied for AFDC (8=Just got " 2945 EYBG2209 = "RC1: Rsn applied for AFDC (9=Became" 2946 EYBG2210 = "RC1: Rsn applied for AFDC (10=Other)" 2947 AYBG22 = "RC1: Rsn applied for AFDC allocation f" 2948 EYSTP23 = "RC1: Stopped AFDC in month 2" 2949 AYSTP23 = "RC1: Stopped AFDC in month 2" 2950 EYBG2301 = "RC1: Rsn applied for AFDC (1=Needed th" 2951 EYBG2302 = "RC1: Rsn applied for AFDC" 60 The SAS System 13:18 Wednesday, March 26, 2008 2952 EYBG2303 = "RC1: Rsn applied for AFDC (3=Received " 2953 EYBG2304 = "RC1: Rsn applied for AFDC" 2954 EYBG2305 = "RC1: Rsn applied for AFDC (5=Loss" 2955 EYBG2306 = "RC1: Rsn applied for AFDC (6=Loss of s" 2956 EYBG2307 = "RC1: Rsn applied for AFDC (7=Just lear" 2957 EYBG2308 = "RC1: Rsn applied for AFDC (8=Just got " 2958 EYBG2309 = "RC1: Rsn applied for AFDC (9=Became" 2959 EYBG2310 = "RC1: Rsn applied for AFDC (10=Other)" 2960 AYBG23 = "RC1: Rsn applied for AFDC allocation f" 2961 TYBG120Y = "RC1: When did ... applied for AFDC tha" 2962 EYBG120M = "RC1: When did ... applied for AFDC tha" 2963 AYBG120M = "RC1: Month applied for AFDC allocation" 2964 AYBG120Y = "RC1: Year applied for AFDC allocation " 2965 EYB22001 = "RC1: Rsn applied for AFDC (1=Needed th" 2966 EYB22002 = "RC1: Rsn applied for AFDC" 2967 EYB22003 = "RC1: Rsn applied for AFDC (3=Received " 2968 EYB22004 = "RC1: Rsn applied for AFDC" 2969 EYB22005 = "RC1: Rsn applied for AFDC (5=Loss of" 2970 EYB22006 = "RC1: Rsn applied for AFDC (6=Loss of o" 2971 EYB22007 = "RC1: Rsn applied for AFDC (7=Just lear" 2972 EYB22008 = "RC1: Rsn applied for AFDC (8=Just appl" 2973 EYB22009 = "RC1: Rsn applied for AFDC (9=Became" 2974 EYB22010 = "RC1: Rsn applied for AFDC (10=Other)" 2975 AYBG220 = "RC1: Rsn applied for AFDC allocation f" 2976 EWSTP21 = "RC1: Rsn applied for WIC" 2977 AWSTP21 = "RC1: Rsn applied for WIC allocation fl" 2978 EWBG2101 = "RC1: Rsn applied for WIC (1=Needed the" 2979 EWBG2102 = "RC1: Rsn applied for WIC (2=Pregnancy/" 2980 EWBG2103 = "RC1: Rsn applied for WIC (3 Received" 2981 EWBG2104 = "RC1: Rsn applied for WIC" 2982 EWBG2105 = "RC1: Rsn applied for WIC (5=Loss of" 2983 EWBG2106 = "RC1: Rsn applied for WIC (6=Loss of ot" 2984 EWBG2107 = "RC1: Rsn applied for WIC (7=Just learn" 2985 EWBG2108 = "RC1: Rsn applied for WIC (8=Just got a" 2986 EWBG2109 = "RC1: Rsn applied for WIC (9=Became dis" 2987 EWBG2110 = "RC1: Rsn applied for WIC (10=Other)" 2988 AWBG21 = "RC1: Rsn applied for WIC allocation fl" 2989 EWSTP22 = "RC1 Stopped receiving WIC in month 3" 2990 AWSTP22 = "RC1 Stopped receiving WIC allocation f" 2991 EWBG2201 = "RC1: Rsn applied for WIC (1=Needed the" 2992 EWBG2202 = "RC1: Rsn applied for WIC (2=Pregnancy/" 2993 EWBG2203 = "RC1: Rsn applied for WIC (3=Received f" 2994 EWBG2204 = "RC1: Rsn applied for WIC" 2995 EWBG2205 = "RC1: Rsn applied for WIC (5=Loss of" 2996 EWBG2206 = "RC1: Rsn applied for WIC (6=Loss of ot" 2997 EWBG2207 = "RC1: Rsn applied for WIC (7=Just learn" 2998 EWBG2208 = "RC1: Rsn applied for WIC (8=Just got a" 2999 EWBG2209 = "RC1: Rsn applied for WIC (9=Became dis" 3000 EWBG2210 = "RC1: Rsn applied for WIC (10=Other)" 3001 AWBG22 = "RC1: Rsn applied for WIC allocation fl" 3002 EWSTP23 = "RC1: Rsn stopped receiving WIC in mont" 3003 AWSTP23 = "RC1: Rsn stopped receiving WIC in mont" 3004 EWBG2301 = "RC1: Rsn applied for WIC (1=Needed the" 3005 EWBG2302 = "RC1: Rsn applied for WIC (2=Pregnancy/" 3006 EWBG2303 = "RC1: Rsn applied for WIC (3=Received f" 3007 EWBG2304 = "RC1: Rsn applied for WIC" 3008 EWBG2305 = "RC1: Rsn applied for WIC (5=Loss of" 3009 EWBG2306 = "RC1: Rsn applied for WIC (6=Loss of ot" 61 The SAS System 13:18 Wednesday, March 26, 2008 3010 EWBG2307 = "RC1: Rsn applied for WIC (7=Just learn" 3011 EWBG2308 = "RC1: Rsn applied for WIC (8=Just got a" 3012 EWBG2309 = "RC1: Rsn applied for WIC (9=Became dis" 3013 EWBG2310 = "RC1: Rsn applied for WIC (10=Other)" 3014 AWBG23 = "RC1: Rsn applied for WIC allocation fl" 3015 EWBG120M = "RC1: Month applied for WIC that time" 3016 TWBG120Y = "RC1: Year applied for WIC that time" 3017 AWBG120M = "RC1: Month applied for WIC that time" 3018 AWBG120Y = "RC1: Year applied for WIC that time" 3019 EWB22001 = "RC1: Rsn applied for WIC (1=Needed the" 3020 EWB22002 = "RC1: Rsn applied for WIC (2=Pregnancy/" 3021 EWB22003 = "RC1: Rsn applied for WIC (3=Received f" 3022 EWB22004 = "RC1: Rsn applied for WIC" 3023 EWB22005 = "RC1: Rsn applied for WIC (5=Loss job/i" 3024 EWB22006 = "RC1: Rsn applied for WIC (6=Loss of ot" 3025 EWB22007 = "RC1: Rsn applied for WIC (7=Just learn" 3026 EWB22008 = "RC1: Rsn applied for WIC (8=Just got a" 3027 EWB22009 = "RC1: Rsn applied for WIC (9=Became dis" 3028 EWB22010 = "RC1: Rsn applied for WIC (10=Other)" 3029 AWBG220 = "RC1: Rsn applied for WIC allocation fl" 3030 EFSTP21 = "RC1: Rsn stopped receiving Food Stamps" 3031 AFSTP21 = "RC1: Rsn stopped receiving FStamps-mth" 3032 EFBG2101 = "RC1: Rsn applied for Food Stamps (1=Ne" 3033 EFBG2102 = "RC1: Rsn applied for Food Stamps" 3034 EFBG2103 = "RC1: Rsn applied for FStamps (3=Receiv" 3035 EFBG2104 = "RC1: Rsn applied for Food Stamps" 3036 EFBG2105 = "RC1: Rsn applied for Food Stamps (5=Lo" 3037 EFBG2106 = "RC1: Rsn applied for Food Stamps (6=Lo" 3038 EFBG2107 = "RC1: Rsn applied for FStamps (7=Just l" 3039 EFBG2108 = "RC1: Rsn applied for FStamps (8=Just" 3040 EFBG2109 = "RC1: Rsn applied for Food Stamps (9=Be" 3041 EFBG2110 = "RC1: Rsn applied for Food Stamps (10=O" 3042 AFBG21 = "RC1: Rsn applied for Food Stamps alloc" 3043 EFSTP22 = "RC1: Rsn stopped receiving Food Stamps" 3044 AFSTP22 = "RC1: Rsn stopped receiving FS - month " 3045 EFBG2201 = "RC1: Rsn applied for Food Stamps (1=Ne" 3046 EFBG2202 = "RC1: Rsn applied for Food Stamps" 3047 EFBG2203 = "RC1: Rsn applied for FStamps(3=Receive" 3048 EFBG2204 = "RC1: Rsn applied for Food Stamps" 3049 EFBG2205 = "RC1: Rsn applied for Food Stamps (5=Lo" 3050 EFBG2206 = "RC1: Rsn applied for Food Stamps (6=Lo" 3051 EFBG2207 = "RC1: Rsn applied for Food Stamps (8=Ju" 3052 EFBG2208 = "RC1: Rsn applied for Food Stamps (8=Ju" 3053 EFBG2209 = "RC1: Rsn applied for Food Stamps (9=Be" 3054 EFBG2210 = "RC1: Rsn applied for Food Stamps (10=O" 3055 AFBG22 = "RC1: Rsn applied for Food Stamps alloc" 3056 EFSTP23 = "RC1: Rsn stopped receiving Food Stamps" 3057 AFSTP23 = "RC1: Rsn stopped receiving FStamps-mth" 3058 EFBG2301 = "RC1: Rsn applied for Food Stamps (1=Ne" 3059 EFBG2302 = "RC1: Rsn applied for Food Stamps" 3060 EFBG2303 = "RC1: Rsn applied for FStamps (3=Receiv" 3061 EFBG2304 = "RC1: Rsn applied for Food Stamps" 3062 EFBG2305 = "RC1: Rsn applied for Food Stamps (5=Lo" 3063 EFBG2306 = "RC1: Rsn applied for Food Stamps (6=Lo" 3064 EFBG2307 = "RC1: Rsn applied for Food Stamps (7=Ju" 3065 EFBG2308 = "RC1: Rsn applied for Food Stamps (8=Ju" 3066 EFBG2309 = "RC1: Rsn applied for Food Stamps (9=Be" 3067 EFBG2310 = "RC1: Rsn applied for Food Stamps (10=O" 62 The SAS System 13:18 Wednesday, March 26, 2008 3068 AFBG23 = "RC1: Rsn applied for Food Stamps alloc" 3069 EFBG120M = "RC1: Month applied for Food Stamps tha" 3070 TFBG120Y = "RC1: Year applied for Food Stamps that" 3071 AFBG120M = "RC1: Month applied for Food Stamps" 3072 AFBG120Y = "RC1: Year applied for Food Stamps allo" 3073 EFB22001 = "RC1: Rsn applied for Food Stamps (1=Ne" 3074 EFB22002 = "RC1: Rsn applied for Food Stamps" 3075 EFB22003 = "RC1: Rsn applied for Food Stamps(3=Rec" 3076 EFB22004 = "RC1: Rsn applied for Food Stamps" 3077 EFB22005 = "RC1: Rsn applied for Food Stamps (5=Lo" 3078 EFB22006 = "RC1: Rsn applied for Food Stamps (6=Lo" 3079 EFB22007 = "RC1: Rsn applied for Food Stamps (7=Ju" 3080 EFB22008 = "RC1: Rsn applied for Food Stamps (8=Ju" 3081 EFB22009 = "RC1: Rsn applied for Food Stamps (9=Be" 3082 EFB22010 = "RC1: Rsn applied for Food Stamps (10=O" 3083 AFB220 = "RC1: Rsn applied for Food Stamps alloc" 3084 ESTP03M4 = "RC2: Rsn stopped receiving in month 4" 3085 ASTP03M4 = "RC2: Rsn stopped receiving in month 4" 3086 ESTP04M4 = "RC2: Rsn stopped receiving in month 4" 3087 ASTP04M4 = "RC2: Rsn stopped receiving in month 4" 3088 ESTP21M4 = "RC2: Rsn stopped receiving in month 4" 3089 ASTP21M4 = "RC2: Rsn stopped receiving in month 4" 3090 ESTP24M4 = "RC2: Rsn stopped receiving in month 4" 3091 ASTP24M4 = "RC2: Rsn stopped receiving in month 4" 3092 EB2101M4 = "RC2: Rsn applied for other Welfare(1=N" 3093 EB2102M4 = "RC2: Rsn applied for Gen Ast/Gen" 3094 EB2103M4 = "RC2: Rsn applied for Gen Ast/GRelf(3=A" 3095 EB2104M4 = "RC2: Rsn applied for" 3096 EB2105M4 = "RC2: Rsn applied for GA/GR(5=Loss of" 3097 EB2106M4 = "RC2: Rsn applied for Gen Ast/Gen relf(" 3098 EB2107M4 = "RC2: Rsn applied for Gen Ast/Gen relf(" 3099 EB2108M4 = "RC2: Rsn applied for Gen Ast/Gen relf(" 3100 EB2109M4 = "RC2: Rsn applied for Gen Ast/Gen" 3101 EB2110M4 = "RC2: Rsn applied for Gen Ast/Gen" 3102 AB21M4 = "RC2: Rsn applied for Gen Ast/Gen Relf" 3103 EB2401M4 = "RC2: Rsn applied for other Welfare(1=N" 3104 EB2402M4 = "RC2: Rsn applied for other" 3105 EB2403M4 = "RC2: Rsn applied for other Welfare(3=A" 3106 EB2404M4 = "RC2: Rsn applied for other" 3107 EB2405M4 = "RC2: Rsn applied for other Welfare (5=" 3108 EB2406M4 = "RC2: Rsn applied for other Welfare(6=L" 3109 EB2407M4 = "RC2: Rsn applied for other Welfare(7=J" 3110 EB2408M4 = "RC2: Rsn applied for other Welfare(8=J" 3111 EB2409M4 = "RC2: Rsn applied for other" 3112 EB2410M4 = "RC2: Rsn applied for other Welfare(10=" 3113 AB24M4 = "RC2: Rsn applied for other Welfare" 3114 EB03S1M4 = "RC2: Rsn applied for Fed SSI in mth 4(" 3115 EB03S2M4 = "RC2: Rsn applied for Fed SSI in mth" 3116 EB03S3M4 = "RC2: Rsn applied for Fed SSI in month" 3117 EB03S4M4 = "RC2: Rsn applied for Fed SSI in month" 3118 AB03SM4 = "RC2: Rsn applied for Fed SSI in mth 4" 3119 EB04S1M4 = "RC2: Rsn applied for State SSI-mth" 3120 EB04S2M4 = "RC2: Rsn applied for State SSI-mth" 3121 EB04S3M4 = "RC2: Rsn applied for State SSI in mont" 3122 EB04S4M4 = "RC2: Rsn applied for State SSI in mont" 3123 AB04SM4 = "RC2: Rsn applied for State SSI in mont" 3124 ESTP03M3 = "RC2: Stopped receiving Fed SSI in mont" 3125 ASTP03M3 = "RC2: Stopped receiving Fed SSI in mont" 63 The SAS System 13:18 Wednesday, March 26, 2008 3126 ESTP04M3 = "RC2: Stopped receiving State SSI in mo" 3127 ASTP04M3 = "RC2: Stopped receiving State SSI in mt" 3128 ESTP21M3 = "RC2: Stopped receiving Gen Ast/Gen rel" 3129 ASTP21M3 = "RC2: Stopped receiving Gen Ast/Gen rel" 3130 ESTP24M3 = "RC2: Stopped receiving other Welfare i" 3131 ASTP24M3 = "RC2: Stopped receiving other Welfare i" 3132 EB2101M3 = "RC2: Rsn applied for GA/GR in mth 3(1=" 3133 EB2102M3 = "RC2: Rsn applied for GA/GR - mth" 3134 EB2103M3 = "RC2: Rsn applied for GA/GR-mth 3(3=Rec" 3135 EB2104M3 = "RC2: Rsn applied for GA/GR-mth" 3136 EB2105M3 = "RC2: Rsn applied GA/GR - mth 3(5=Loss" 3137 EB2106M3 = "RC2: Rsn applied GA/GR - month 3(6=Los" 3138 EB2107M3 = "RC2: Rsn for GA/GR - month 3(7=Just le" 3139 EB2108M3 = "RC2: Rsn applied GA/GR in month 3(8=Ju" 3140 EB2109M3 = "RC2: Rsn applied GA/GR in month 3(9=Be" 3141 EB2110M3 = "RC2: Rsn applied for GA/GR in month" 3142 AB21M3 = "RC2: Rsn applied for GA/GR in month 3" 3143 EB2401M3 = "RC2: Rsn applied for othr Welfare-mth" 3144 EB2402M3 = "RC2: Rsn applied for other Welfare-mth" 3145 EB2403M3 = "RC2: Rsn applied for oth Welfare-mth" 3146 EB2404M3 = "RC2: Rsn applied for oth Welfare-mth" 3147 EB2405M3 = "RC2: Rsn applied other Welfare-mth 3(5" 3148 EB2406M3 = "RC2: Rsn applied other Welfare-mth 3(6" 3149 EB2407M3 = "RC2: Rsn for other Welfare-mth 3(7=Jus" 3150 EB2408M3 = "RC2: Rsn applied other Welfare - month" 3151 EB2409M3 = "RC2: Rsn applied othr Welfare - mth" 3152 EB2410M3 = "RC2: Rsn applied for other Welfare in " 3153 AB24M3 = "RC2: Rsn applied for other Welfare-mth" 3154 EB03S1M3 = "RC2: Rsn applied for Fed SSI-mth 3(1=N" 3155 EB03S2M3 = "RC2: Rsn applied for Fed SSI-mth" 3156 EB03S3M3 = "RC2: Rsn applied for Fed SSI in month" 3157 EB03S4M3 = "RC2: Rsn applied for Fed SSI in month" 3158 AB03SM3 = "RC2: Rsn applied for Fed SSI - mth 3" 3159 EB04S1M3 = "RC2: Rsn applied for State SSI-mth" 3160 EB04S2M3 = "RC2: Rsn applied for State SSI-mth" 3161 EB04S3M3 = "RC2: Rsn applied for State SSI in mont" 3162 EB04S4M3 = "RC2: Rsn applied for State SSI in mont" 3163 AB04SM3 = "RC2: Rsn applied for State SSI in mont" 3164 ESTP03M2 = "RC2: Stopped receiving Fed SSI in mont" 3165 ASTP03M2 = "RC2: Stopped receiving Fed SSI - mth 2" 3166 ESTP04M2 = "RC2: Stopped receiving State SSI in mo" 3167 ASTP04M2 = "RC2: Stopped receiving State SSI - mth" 3168 ESTP21M2 = "RC2: Stopped receiving GA/GR in month " 3169 ASTP21M2 = "RC2: Stopped receiving GA/GR-mth 2" 3170 ESTP24M2 = "RC2:Stopped receiving other Welfare in" 3171 ASTP24M2 = "RC2:Stopped receiving other Welfare-mt" 3172 EB2101M2 = "RC2: Rsn applied GA/GR-mth 2(1=Needed " 3173 EB2102M2 = "RC2: Rsn applied for GA/GR-mth" 3174 EB2103M2 = "RC2: Rsn applied GA/GR-mth 2(3=Receive" 3175 EB2104M2 = "RC2: Rsn applied GA/GR in month" 3176 EB2105M2 = "RC2: Rsn applied GA/GR in mth 2(5=Loss" 3177 EB2106M2 = "RC2: Rsn applied GA/GR in mth 2(6=Loss" 3178 EB2107M2 = "RC2: Rsn applied GA/GR in mth 2(7=Just" 3179 EB2108M2 = "RC2: Rsn applied GA/GR in mth 2(8=Just" 3180 EB2109M2 = "RC2: Rsn applied for GA/GR in mth 2(9=" 3181 EB2110M2 = "RC2: Rsn applied for GA/GR in mth" 3182 AB21M2 = "RC2: Rsn applied GA/GR in mth 2 alloca" 3183 EB2401M2 = "RC2: Rsn applied other Welfare-mth" 64 The SAS System 13:18 Wednesday, March 26, 2008 3184 EB2402M2 = "RC2: Rsn applied for other Welfare-mth" 3185 EB2403M2 = "RC2: Rsn applied other Welfare-mth 2(3" 3186 EB2404M2 = "RC2: Rsn applied other Welfare-mth" 3187 EB2405M2 = "RC2: Rsn applied other Welfare-mth 2(5" 3188 EB2406M2 = "RC2: Rsn applied othr Welfare-mth 2(6=" 3189 EB2407M2 = "RC2: Rsn applied othr Welfare-mth 2(7=" 3190 EB2408M2 = "RC2: Rsn applied othr Welfare-mth 2(8=" 3191 EB2409M2 = "RC2: Rsn applied othr Welfare-mth 2(9=" 3192 EB2410M2 = "RC2: Rsn applied for othr Welfare-mth" 3193 AB24M2 = "RC2: Rsn applied othr Welfare-mth 2" 3194 EB03S1M2 = "RC2: Rsn applied for Fed SSI-mth 2(1=N" 3195 EB03S2M2 = "RC2: Rsn applied for Fed SSI-mth 2(2=B" 3196 EB03S3M2 = "RC2: Rsn applied for Fed SSI in month" 3197 EB03S4M2 = "RC2: Rsn applied for Fed SSI in month" 3198 AB03SM2 = "RC2: Rsn applied for Fed SSI in month " 3199 EB04S1M2 = "RC2: Rsn applied for State SSI-mth" 3200 EB04S2M2 = "RC2: Rsn applied for State SSI-mth" 3201 EB04S3M2 = "RC2: Rsn applied for State SSI in mont" 3202 EB04S4M2 = "RC2: Rsn applied for State SSI in mont" 3203 AB04SM2 = "RC2: Rsn applied for State SSI-month 2" 3204 EB2101M1 = "RC2: Rsn applied GA/GR-mth 1(1=Needed " 3205 EB2102M1 = "RC2: Rsn applied GA/GR-mth 1(2=Preg/bi" 3206 EB2103M1 = "RC2: Rsn applied GA/GR-mth 1(3=Receive" 3207 EB2104M1 = "RC2: Rsn applied GA/GR-mth" 3208 EB2105M1 = "RC2: Rsn applied GA/GR-mth 1(5=Loss of" 3209 EB2106M1 = "RC2: Rsn applied GA/GR-mth 1(6=Loss of" 3210 EB2107M1 = "RC2: Rsn applied GA/GR-mth 1(7=Just le" 3211 EB2108M1 = "RC2: Rsn applied GA/GR-mth 1(8=Just" 3212 EB2109M1 = "RC2: Rsn applied GA/GR-mth 1(9=Became" 3213 EB2110M1 = "RC2: Rsn applied for GA/GR-mth 1(10=Ot" 3214 AB21M1 = "RC2: Rsn applied for GA/GR in mth 1" 3215 EB2401M1 = "RC2: Rsn applied other Welfare-mth" 3216 EB2402M1 = "RC2: Rsn applied other Welfare-mth" 3217 EB2403M1 = "RC2: Rsn applied other Welfare-mth 1(3" 3218 EB2404M1 = "RC2: Rsn applied other Welfare-mth" 3219 EB2405M1 = "RC2: Rsn applied other Welfare-mth 1(5" 3220 EB2406M1 = "RC2: Rsn applied GA/GR-mth 1(6=Loss of" 3221 EB2407M1 = "RC2: Rsn applied GA/GR-mth 1(7=Just le" 3222 EB2408M1 = "RC2: Rsn applied other Welfare-mth 1(8" 3223 EB2409M1 = "RC2: Rsn applied other Welfare-mth" 3224 EB2410M1 = "RC2: Rsn applied for other Welfare in " 3225 AB24M1 = "RC2: Rsn applied other Welfare-mth 1" 3226 EB03S1M1 = "RC2: Rsn applied for Fed SSI-mth 1(1=N" 3227 EB03S2M1 = "RC2: Rsn applied Fed SSI-mth 1(2=Becam" 3228 EB03S3M1 = "RC2: Rsn applied for Fed SSI in month" 3229 EB03S4M1 = "RC2: Rsn applied for Fed SSI in month" 3230 AB03SM1 = "RC2: Rsn applied for Fed SSI in month " 3231 EB04S1M1 = "RC2: Rsn applied State SSI mth 1(1=Nee" 3232 EB04S2M1 = "RC2: Rsn applied State SSI mth 1(2=Bec" 3233 EB04S3M1 = "RC2: Rsn applied State SSI-mth 1(3=Ove" 3234 EB04S4M1 = "RC2: Rsn applied for State SSI-mth" 3235 AB04SM1 = "RC2: Rsn applied for State SSI in mont" 3236 ECOVB1M = "RC2: Month applied for Social Security" 3237 TCOVB1Y = "RC2: Year applied for Social Security " 3238 ACOVB1M = "RC2: Month applied for Social Security" 3239 ACOVB1Y = "RC2: Year applied for Social Security " 3240 ECOVB3M = "RC2: Month applied for Fed SSI that ti" 3241 TCOVB3Y = "RC2: Year applied for Fed SSI that tim" 65 The SAS System 13:18 Wednesday, March 26, 2008 3242 ACOVB3M = "RC2: Month applied for Fed SSI that ti" 3243 ACOVB3Y = "RC2: Year applied for Fed SSI that tim" 3244 ECOVB4M = "RC2: Month applied for State SSI that " 3245 TCOVB4Y = "RC2: Year applied for EGICODE that tim" 3246 ACOVB4M = "RC2: Month applied for State SSI that " 3247 ACOVB4Y = "RC2: Year applied for State SSI that t" 3248 EAPLFS = "TMR: Ever applied for Food Stamp Progr" 3249 AAPLFS = "TMR: Ever applied for Food Stamp Progr" 3250 ERECVFS = "TMR: Authorized to receive Food Stamp" 3251 ARECVFS = "TMR: Authorized to receive Food Stamp" 3252 EFSSTRMN = "TMR: Month first received food stamp" 3253 AFSSTRMN = "TMR: Month first received food stamp" 3254 TFSSTRYR = "TMR: Year first received food stamp" 3255 AFSSTRYR = "TMR: Year first received food stamp" 3256 EFSLONG1 = "TMR: Length of time received food" 3257 AFSLONG1 = "TMR: Length of time received FStamps(m" 3258 EFSLONG2 = "TMR: Length of time received food" 3259 AFSLONG2 = "TMR: Length of time received FStamp(yr" 3260 EFSTIMES = "TMR: Number of times received food sta" 3261 AFSTIMES = "TMR: Number of times received FStamps" 3262 EAPLAFDC = "TMR: Ever applied for AFDC/ADC Program" 3263 AAPLAFDC = "TMR: Ever applied for AFDC/ADC Program" 3264 ERCVAFDC = "TMR: Authorized to receive AFDC/ADC" 3265 ARCVAFDC = "TMR: Authorized to receive AFDC/ADC" 3266 EAFDCSTM = "TMR: Month first received AFDC/ADC ben" 3267 AAFDCSTM = "TMR: Month 1st received AFDC/ADC benef" 3268 TAFDCSTY = "TMR: Year first received AFDC/ADC bene" 3269 AAFDCSTY = "TMR: Year 1st received AFDC/ADC benefi" 3270 EAFDCLG1 = "TMR: Length of time received" 3271 AAFDCLG1 = "TMR: Length of time recd AFDC/ADC(mth)" 3272 EAFDCLG2 = "TMR: Length of time received AFDC/ADC(" 3273 AAFDCLG2 = "TMR: Length of time recd AFDC/ADC(yrs)" 3274 EAFDCTIM = "TMR: Number of times received AFDC/ADC" 3275 AAFDCTIM = "TMR: Number of times recd AFDC/ADC" 3276 EAPLSSI = "TMR: Ever applied for SSI program" 3277 AAPLSSI = "TMR: Ever applied for SSI allocation f" 3278 ERECVSSI = "TMR: Authorized to receive SSI" 3279 ARECVSSI = "TMR: Authorized to receive SSI allocat" 3280 ESSISTRM = "TMR: Month first received SSI benefits" 3281 ASSISTRM = "TMR: Month first received SSI benefits" 3282 TSSISTRY = "TMR: Year first received SSI benefits" 3283 ASSISTRY = "TMR: Year first received SSI benefits" 3284 ESSILNG1 = "TMR: Length of time received SSI(month" 3285 ASSILNG1 = "TMR: Length of time received SSI(month" 3286 ESSILNG2 = "TMR: Length of time received SSI(years" 3287 ASSILNG2 = "TMR: Length of time received SSI(years" 3288 ; 3289 NOTE: The infile RAW is: Pipe command="unzip -p /homes/data/sipp/1996/sipp96t1.zip " NOTE: 95315 records were read from the infile RAW. The minimum record length was 840. The maximum record length was 840. NOTE: The data set LIBRARY.SIP96T1 has 95315 observations and 436 variables. NOTE: DATA statement used (Total process time): real time 32.87 seconds 66 The SAS System 13:18 Wednesday, March 26, 2008 cpu time 21.63 seconds 3290 proc print data=library.sip96t1 (obs=6); 3291 3292 3293 FORMAT 3294 SPANEL SPANEL. 3295 TFIPSST TFIPSST. 3296 EOUTCOME EOUTCOME. 3297 RFID2 RFID2L. 3298 EPOPSTAT EPOPSTAT. 3299 EPPINTVW EPPINTVW. 3300 EPPMIS4 EPPMIS4L. 3301 ESEX ESEX. 3302 ERACE ERACE. 3303 EORIGIN EORIGIN. 3304 ERRP ERRP. 3305 EMS EMS. 3306 EPNMOM EPNMOM. 3307 EPNDAD EPNDAD. 3308 EPNGUARD EPNGUARD. 3309 EPNSPOUS EPNSPOUS. 3310 RDESGPNT RDESGPNT. 3311 TAGE TAGE. 3312 EEDUCATE EEDUCATE. 3313 TLSTWRKY TLSTWRKY. 3314 ELSTWRKM ELSTWRKM. 3315 TPRVJBYR TPRVJBYR. 3316 EPRVJBMN EPRVJBMN. 3317 TFRMRYR TFRMRYR. 3318 EFRMRMN EFRMRMN. 3319 TMAKMNYR TMAKMNYR. 3320 EMNRESON EMNRESON. 3321 EYRSINCE EYRSINCE. 3322 EYRSINC2 EYRSINCK. 3323 EWRK35HR EWRK35HR. 3324 EOFF6MTN EOFF6MTN. 3325 TNOWRKFR TNOWRKFR. 3326 TNOWRKTO TNOWRKTO. 3327 EOTHTIME EOTHTIME. 3328 ECNTOTHR ECNTOTHR. 3329 TFSTYRFR TFSTYRFR. 3330 TFSTYRTO TFSTYRTO. 3331 ENWRESN ENWRESN. 3332 EFRSTRSN EFRSTRSN. 3333 ALSTWRKY ALSTWRKY. 3334 ALSTWRKM ALSTWRKM. 3335 APRVJBYR APRVJBYR. 3336 APRVJBMN APRVJBMN. 3337 AFRMRYR AFRMRYR. 3338 AFRMRMN AFRMRMN. 3339 AMAKMNYR AMAKMNYR. 3340 AMNRESON AMNRESON. 3341 AYRSINCE AYRSINCE. 3342 AYRSINC2 AYRSINCK. 3343 AWRK35HR AWRK35HR. 3344 AOFF6MTN AOFF6MTN. 67 The SAS System 13:18 Wednesday, March 26, 2008 3345 ANOWRKFR ANOWRKFR. 3346 ANOWRKTO ANOWRKTO. 3347 AOTHTIME AOTHTIME. 3348 ACNTOTHR ACNTOTHR. 3349 AFSTYRFR AFSTYRFR. 3350 AFSTYRTO AFSTYRTO. 3351 ANWRESN ANWRESN. 3352 AFRSTRSN AFRSTRSN. 3353 EYSTP21 EYSTP21L. 3354 AYSTP21 AYSTP21L. 3355 EYBG2101 EYBG210N. 3356 EYBG2102 EYBG210K. 3357 EYBG2103 EYBG210L. 3358 EYBG2104 EYBG210M. 3359 EYBG2105 EYBG210O. 3360 EYBG2106 EYBG210P. 3361 EYBG2107 EYBG210Q. 3362 EYBG2108 EYBG210R. 3363 EYBG2109 EYBG210S. 3364 EYBG2110 EYBG211N. 3365 AYBG21 AYBG21L. 3366 EYSTP22 EYSTP22L. 3367 AYSTP22 AYSTP22L. 3368 EYBG2201 EYBG220N. 3369 EYBG2202 EYBG220K. 3370 EYBG2203 EYBG220L. 3371 EYBG2204 EYBG220M. 3372 EYBG2205 EYBG220O. 3373 EYBG2206 EYBG220P. 3374 EYBG2207 EYBG220Q. 3375 EYBG2208 EYBG220R. 3376 EYBG2209 EYBG220S. 3377 EYBG2210 EYBG221N. 3378 AYBG22 AYBG22L. 3379 EYSTP23 EYSTP23L. 3380 AYSTP23 AYSTP23L. 3381 EYBG2301 EYBG230N. 3382 EYBG2302 EYBG230K. 3383 EYBG2303 EYBG230L. 3384 EYBG2304 EYBG230M. 3385 EYBG2305 EYBG230O. 3386 EYBG2306 EYBG230P. 3387 EYBG2307 EYBG230Q. 3388 EYBG2308 EYBG230R. 3389 EYBG2309 EYBG230S. 3390 EYBG2310 EYBG231N. 3391 AYBG23 AYBG23L. 3392 TYBG120Y TYBG120Y. 3393 EYBG120M EYBG120M. 3394 AYBG120M AYBG120M. 3395 AYBG120Y AYBG120Y. 3396 EYB22001 EYB2200Y. 3397 EYB22002 EYB2200K. 3398 EYB22003 EYB2200L. 3399 EYB22004 EYB2200M. 3400 EYB22005 EYB2200N. 3401 EYB22006 EYB2200O. 3402 EYB22007 EYB2200P. 68 The SAS System 13:18 Wednesday, March 26, 2008 3403 EYB22008 EYB2200Q. 3404 EYB22009 EYB2200R. 3405 EYB22010 EYB2201Y. 3406 AYBG220 AYBG220L. 3407 EWSTP21 EWSTP21L. 3408 AWSTP21 AWSTP21L. 3409 EWBG2101 EWBG210Y. 3410 EWBG2102 EWBG210K. 3411 EWBG2103 EWBG210L. 3412 EWBG2104 EWBG210M. 3413 EWBG2105 EWBG210N. 3414 EWBG2106 EWBG210O. 3415 EWBG2107 EWBG210P. 3416 EWBG2108 EWBG210Q. 3417 EWBG2109 EWBG210R. 3418 EWBG2110 EWBG211Y. 3419 AWBG21 AWBG21L. 3420 EWSTP22 EWSTP22L. 3421 AWSTP22 AWSTP22L. 3422 EWBG2201 EWBG220Y. 3423 EWBG2202 EWBG220K. 3424 EWBG2203 EWBG220L. 3425 EWBG2204 EWBG220M. 3426 EWBG2205 EWBG220N. 3427 EWBG2206 EWBG220O. 3428 EWBG2207 EWBG220P. 3429 EWBG2208 EWBG220Q. 3430 EWBG2209 EWBG220R. 3431 EWBG2210 EWBG221Y. 3432 AWBG22 AWBG22L. 3433 EWSTP23 EWSTP23L. 3434 AWSTP23 AWSTP23L. 3435 EWBG2301 EWBG230Y. 3436 EWBG2302 EWBG230K. 3437 EWBG2303 EWBG230L. 3438 EWBG2304 EWBG230M. 3439 EWBG2305 EWBG230N. 3440 EWBG2306 EWBG230O. 3441 EWBG2307 EWBG230P. 3442 EWBG2308 EWBG230Q. 3443 EWBG2309 EWBG230R. 3444 EWBG2310 EWBG231Y. 3445 AWBG23 AWBG23L. 3446 EWBG120M EWBG120M. 3447 TWBG120Y TWBG120Y. 3448 AWBG120M AWBG120M. 3449 AWBG120Y AWBG120Y. 3450 EWB22001 EWB2200Y. 3451 EWB22002 EWB2200K. 3452 EWB22003 EWB2200L. 3453 EWB22004 EWB2200M. 3454 EWB22005 EWB2200N. 3455 EWB22006 EWB2200O. 3456 EWB22007 EWB2200P. 3457 EWB22008 EWB2200Q. 3458 EWB22009 EWB2200R. 3459 EWB22010 EWB2201Y. 3460 AWBG220 AWBG220L. 69 The SAS System 13:18 Wednesday, March 26, 2008 3461 EFSTP21 EFSTP21L. 3462 AFSTP21 AFSTP21L. 3463 EFBG2101 EFBG210Y. 3464 EFBG2102 EFBG210K. 3465 EFBG2103 EFBG210L. 3466 EFBG2104 EFBG210M. 3467 EFBG2105 EFBG210N. 3468 EFBG2106 EFBG210O. 3469 EFBG2107 EFBG210P. 3470 EFBG2108 EFBG210Q. 3471 EFBG2109 EFBG210R. 3472 EFBG2110 EFBG211Y. 3473 AFBG21 AFBG21L. 3474 EFSTP22 EFSTP22L. 3475 AFSTP22 AFSTP22L. 3476 EFBG2201 EFBG220Y. 3477 EFBG2202 EFBG220K. 3478 EFBG2203 EFBG220L. 3479 EFBG2204 EFBG220M. 3480 EFBG2205 EFBG220N. 3481 EFBG2206 EFBG220O. 3482 EFBG2207 EFBG220P. 3483 EFBG2208 EFBG220Q. 3484 EFBG2209 EFBG220R. 3485 EFBG2210 EFBG221Y. 3486 AFBG22 AFBG22L. 3487 EFSTP23 EFSTP23L. 3488 AFSTP23 AFSTP23L. 3489 EFBG2301 EFBG230Y. 3490 EFBG2302 EFBG230K. 3491 EFBG2303 EFBG230L. 3492 EFBG2304 EFBG230M. 3493 EFBG2305 EFBG230N. 3494 EFBG2306 EFBG230O. 3495 EFBG2307 EFBG230P. 3496 EFBG2308 EFBG230Q. 3497 EFBG2309 EFBG230R. 3498 EFBG2310 EFBG231Y. 3499 AFBG23 AFBG23L. 3500 EFBG120M EFBG120M. 3501 TFBG120Y TFBG120Y. 3502 AFBG120M AFBG120M. 3503 AFBG120Y AFBG120Y. 3504 EFB22001 EFB2200Y. 3505 EFB22002 EFB2200K. 3506 EFB22003 EFB2200L. 3507 EFB22004 EFB2200M. 3508 EFB22005 EFB2200N. 3509 EFB22006 EFB2200O. 3510 EFB22007 EFB2200P. 3511 EFB22008 EFB2200Q. 3512 EFB22009 EFB2200R. 3513 EFB22010 EFB2201Y. 3514 AFB220 AFB220L. 3515 ESTP03M4 ESTP03MY. 3516 ASTP03M4 ASTP03MY. 3517 ESTP04M4 ESTP04MY. 3518 ASTP04M4 ASTP04MY. 70 The SAS System 13:18 Wednesday, March 26, 2008 3519 ESTP21M4 ESTP21MY. 3520 ASTP21M4 ASTP21MY. 3521 ESTP24M4 ESTP24MY. 3522 ASTP24M4 ASTP24MY. 3523 EB2101M4 EB2101MY. 3524 EB2102M4 EB2102MY. 3525 EB2103M4 EB2103MY. 3526 EB2104M4 EB2104MY. 3527 EB2105M4 EB2105MY. 3528 EB2106M4 EB2106MY. 3529 EB2107M4 EB2107MY. 3530 EB2108M4 EB2108MY. 3531 EB2109M4 EB2109MY. 3532 EB2110M4 EB2110MY. 3533 AB21M4 AB21M4L. 3534 EB2401M4 EB2401MY. 3535 EB2402M4 EB2402MY. 3536 EB2403M4 EB2403MY. 3537 EB2404M4 EB2404MY. 3538 EB2405M4 EB2405MY. 3539 EB2406M4 EB2406MY. 3540 EB2407M4 EB2407MY. 3541 EB2408M4 EB2408MY. 3542 EB2409M4 EB2409MY. 3543 EB2410M4 EB2410MY. 3544 AB24M4 AB24M4L. 3545 EB03S1M4 EB03S1MY. 3546 EB03S2M4 EB03S2MY. 3547 EB03S3M4 EB03S3MY. 3548 EB03S4M4 EB03S4MY. 3549 AB03SM4 AB03SM4L. 3550 EB04S1M4 EB04S1MY. 3551 EB04S2M4 EB04S2MY. 3552 EB04S3M4 EB04S3MY. 3553 EB04S4M4 EB04S4MY. 3554 AB04SM4 AB04SM4L. 3555 ESTP03M3 ESTP03MK. 3556 ASTP03M3 ASTP03MK. 3557 ESTP04M3 ESTP04MK. 3558 ASTP04M3 ASTP04MK. 3559 ESTP21M3 ESTP21MK. 3560 ASTP21M3 ASTP21MK. 3561 ESTP24M3 ESTP24MK. 3562 ASTP24M3 ASTP24MK. 3563 EB2101M3 EB2101MK. 3564 EB2102M3 EB2102MK. 3565 EB2103M3 EB2103MK. 3566 EB2104M3 EB2104MK. 3567 EB2105M3 EB2105MK. 3568 EB2106M3 EB2106MK. 3569 EB2107M3 EB2107MK. 3570 EB2108M3 EB2108MK. 3571 EB2109M3 EB2109MK. 3572 EB2110M3 EB2110MK. 3573 AB21M3 AB21M3L. 3574 EB2401M3 EB2401MK. 3575 EB2402M3 EB2402MK. 3576 EB2403M3 EB2403MK. 71 The SAS System 13:18 Wednesday, March 26, 2008 3577 EB2404M3 EB2404MK. 3578 EB2405M3 EB2405MK. 3579 EB2406M3 EB2406MK. 3580 EB2407M3 EB2407MK. 3581 EB2408M3 EB2408MK. 3582 EB2409M3 EB2409MK. 3583 EB2410M3 EB2410MK. 3584 AB24M3 AB24M3L. 3585 EB03S1M3 EB03S1MK. 3586 EB03S2M3 EB03S2MK. 3587 EB03S3M3 EB03S3MK. 3588 EB03S4M3 EB03S4MK. 3589 AB03SM3 AB03SM3L. 3590 EB04S1M3 EB04S1MK. 3591 EB04S2M3 EB04S2MK. 3592 EB04S3M3 EB04S3MK. 3593 EB04S4M3 EB04S4MK. 3594 AB04SM3 AB04SM3L. 3595 ESTP03M2 ESTP03ML. 3596 ASTP03M2 ASTP03ML. 3597 ESTP04M2 ESTP04ML. 3598 ASTP04M2 ASTP04ML. 3599 ESTP21M2 ESTP21ML. 3600 ASTP21M2 ASTP21ML. 3601 ESTP24M2 ESTP24ML. 3602 ASTP24M2 ASTP24ML. 3603 EB2101M2 EB2101ML. 3604 EB2102M2 EB2102ML. 3605 EB2103M2 EB2103ML. 3606 EB2104M2 EB2104ML. 3607 EB2105M2 EB2105ML. 3608 EB2106M2 EB2106ML. 3609 EB2107M2 EB2107ML. 3610 EB2108M2 EB2108ML. 3611 EB2109M2 EB2109ML. 3612 EB2110M2 EB2110ML. 3613 AB21M2 AB21M2L. 3614 EB2401M2 EB2401ML. 3615 EB2402M2 EB2402ML. 3616 EB2403M2 EB2403ML. 3617 EB2404M2 EB2404ML. 3618 EB2405M2 EB2405ML. 3619 EB2406M2 EB2406ML. 3620 EB2407M2 EB2407ML. 3621 EB2408M2 EB2408ML. 3622 EB2409M2 EB2409ML. 3623 EB2410M2 EB2410ML. 3624 AB24M2 AB24M2L. 3625 EB03S1M2 EB03S1ML. 3626 EB03S2M2 EB03S2ML. 3627 EB03S3M2 EB03S3ML. 3628 EB03S4M2 EB03S4ML. 3629 AB03SM2 AB03SM2L. 3630 EB04S1M2 EB04S1ML. 3631 EB04S2M2 EB04S2ML. 3632 EB04S3M2 EB04S3ML. 3633 EB04S4M2 EB04S4ML. 3634 AB04SM2 AB04SM2L. 72 The SAS System 13:18 Wednesday, March 26, 2008 3635 EB2101M1 EB2101MM. 3636 EB2102M1 EB2102MM. 3637 EB2103M1 EB2103MM. 3638 EB2104M1 EB2104MM. 3639 EB2105M1 EB2105MM. 3640 EB2106M1 EB2106MM. 3641 EB2107M1 EB2107MM. 3642 EB2108M1 EB2108MM. 3643 EB2109M1 EB2109MM. 3644 EB2110M1 EB2110MM. 3645 AB21M1 AB21M1L. 3646 EB2401M1 EB2401MM. 3647 EB2402M1 EB2402MM. 3648 EB2403M1 EB2403MM. 3649 EB2404M1 EB2404MM. 3650 EB2405M1 EB2405MM. 3651 EB2406M1 EB2406MM. 3652 EB2407M1 EB2407MM. 3653 EB2408M1 EB2408MM. 3654 EB2409M1 EB2409MM. 3655 EB2410M1 EB2410MM. 3656 AB24M1 AB24M1L. 3657 EB03S1M1 EB03S1MM. 3658 EB03S2M1 EB03S2MM. 3659 EB03S3M1 EB03S3MM. 3660 EB03S4M1 EB03S4MM. 3661 AB03SM1 AB03SM1L. 3662 EB04S1M1 EB04S1MM. 3663 EB04S2M1 EB04S2MM. 3664 EB04S3M1 EB04S3MM. 3665 EB04S4M1 EB04S4MM. 3666 AB04SM1 AB04SM1L. 3667 ECOVB1M ECOVB1M. 3668 TCOVB1Y TCOVB1Y. 3669 ACOVB1M ACOVB1M. 3670 ACOVB1Y ACOVB1Y. 3671 ECOVB3M ECOVB3M. 3672 TCOVB3Y TCOVB3Y. 3673 ACOVB3M ACOVB3M. 3674 ACOVB3Y ACOVB3Y. 3675 ECOVB4M ECOVB4M. 3676 TCOVB4Y TCOVB4Y. 3677 ACOVB4M ACOVB4M. 3678 ACOVB4Y ACOVB4Y. 3679 EAPLFS EAPLFS. 3680 AAPLFS AAPLFS. 3681 ERECVFS ERECVFS. 3682 ARECVFS ARECVFS. 3683 EFSSTRMN EFSSTRMN. 3684 AFSSTRMN AFSSTRMN. 3685 TFSSTRYR TFSSTRYR. 3686 AFSSTRYR AFSSTRYR. 3687 EFSLONG1 EFSLONGR. 3688 AFSLONG1 AFSLONGR. 3689 EFSLONG2 EFSLONGK. 3690 AFSLONG2 AFSLONGK. 3691 EFSTIMES EFSTIMES. 3692 AFSTIMES AFSTIMES. 73 The SAS System 13:18 Wednesday, March 26, 2008 3693 EAPLAFDC EAPLAFDC. 3694 AAPLAFDC AAPLAFDC. 3695 ERCVAFDC ERCVAFDC. 3696 ARCVAFDC ARCVAFDC. 3697 EAFDCSTM EAFDCSTM. 3698 AAFDCSTM AAFDCSTM. 3699 TAFDCSTY TAFDCSTY. 3700 AAFDCSTY AAFDCSTY. 3701 EAFDCLG1 EAFDCLGY. 3702 AAFDCLG1 AAFDCLGY. 3703 EAFDCLG2 EAFDCLGK. 3704 AAFDCLG2 AAFDCLGK. 3705 EAFDCTIM EAFDCTIM. 3706 AAFDCTIM AAFDCTIM. 3707 EAPLSSI EAPLSSI. 3708 AAPLSSI AAPLSSI. 3709 ERECVSSI ERECVSSI. 3710 ARECVSSI ARECVSSI. 3711 ESSISTRM ESSISTRM. 3712 ASSISTRM ASSISTRM. 3713 TSSISTRY TSSISTRY. 3714 ASSISTRY ASSISTRY. 3715 ESSILNG1 ESSILNGY. 3716 ASSILNG1 ASSILNGY. 3717 ESSILNG2 ESSILNGK. 3718 ASSILNG2 ASSILNGK. 3719 ; NOTE: There were 6 observations read from the data set LIBRARY.SIP96T1. NOTE: The PROCEDURE PRINT printed pages 1-12. NOTE: PROCEDURE PRINT used (Total process time): real time 0.93 seconds cpu time 0.62 seconds 3720 proc contents data=library.sip96t1; 3721 /* 3722 Copyright 2003 shared by the National Bureau of Economic Research and Jean Roth 3723 3724 National Bureau of Economic Research. 3725 1050 Massachusetts Avenue 3726 Cambridge, MA 02138 3727 jroth@nber.org 3728 3729 This program and all programs referenced in it are free software. You 3730 can redistribute the program or modify it under the terms of the GNU 3731 General Public License as published by the Free Software Foundation; 3732 either version 2 of the License, or (at your option) any later version. 3733 3734 This program is distributed in the hope that it will be useful, 3735 but WITHOUT ANY WARRANTY; without even the implied warranty of 3736 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 3737 GNU General Public License for more details. 3738 3739 You should have received a copy of the GNU General Public License 3740 along with this program; if not, write to the Free Software 3741 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 3742 USA. 74 The SAS System 13:18 Wednesday, March 26, 2008 3743 */ NOTE: The PROCEDURE CONTENTS printed pages 13-21. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.20 seconds cpu time 0.09 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 35.71 seconds cpu time 23.13 seconds