SAS User File for H211 Data This file contains information and sample SAS programs to create a permanent SAS dataset for users who want to use SAS in processing the MEPS data provided in this PUF release. There are two ways to create a permanent SAS dataset, using either the SAS transport data file (H211.SSP) or the ASCII data file (H211.DAT) supplied in this PUF release. Section A provides a sample SAS program for the first alternative, which is to convert the SAS transport data file to a regular SAS dataset using the SAS procedure: CIMPORT. Section B provides a sample SAS program for the second alternative, which is to read data from the ASCII data file using a SAS DATA step with INFILE, INPUT, and LABEL statements. Section C explains format-related SAS statements that a user may optionally use when working with the SAS dataset. Examples of SAS programs (DATA step or PROC) are provided in all three sections, primarily for the benefit of inexperienced users. Section D contains complete SAS statements that must be used in the programs described in Sections B and C. ****************************************************************************** The sample SAS programs provided in Sections A and B show how to create a permanent SAS dataset from the data files provided in this PUF release. A. A Sample SAS Program for Converting the SAS Transport File to a Permanent SAS Dataset The SAS procedure CIMPORT will read a SAS transport file and convert the data to regular SAS format, storing the output in a permanent SAS dataset. This permanent SAS dataset can then be used for all future processing and analyses. Below is a sample SAS program that can be used to convert the SAS transport file to a permanent SAS dataset (in a Windows environment). LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\H211.SSP'; PROC CIMPORT DATA=PUFLIB.H211 INFILE=IN1; RUN; Below are SAS statements to print a list of variables and a few sample records from the permanent SAS dataset: PROC CONTENTS DATA=PUFLIB.H211; TITLE 'List of Variables in MEPS H211 SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H211 (OBS=20); TITLE 'First 20 Observations in MEPS H211 SAS Dataset'; RUN; The LIBNAME statement tells SAS the location (directory name) to store the permanent SAS dataset which is output by PROC CIMPORT. The FILENAME statement tells SAS the location (complete directory and file name) of the input SAS transport data file. NOTES: 1) The names used in the LIBNAME and FILENAME statements shown above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary aliases. 2) The directory and file names used in the LIBNAME and FILENAME statements shown above are Windows syntax and may need to be modified for other operating systems such as UNIX and Linux. 3) H211 is the internal SAS dataset name (also the PC file name, without the extension) prior to the creation of the SAS transport data file. After running PROC CIMPORT, the output SAS dataset assumes the same dataset name (or file name). Hence, in the example above, a file named H211.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC CIMPORT runs successfully. 4) The SAS transport file H211.SSP was created from a SAS V9 data file, using PROC CPORT. This file should work with earlier versions of SAS, although it has not been tested with those versions. Users who are unable to use this SAS transport file should instead convert the ASCII data file H211.DAT to a SAS dataset as described in Section B. B. A Sample SAS Program for Converting the ASCII Data File to a Permanent SAS Dataset The complete SAS statements (INPUT and LABEL) included in Section D are intended to save time for those users wishing to create a permanent SAS dataset from the H211.DAT ASCII data file. These statements must be used in combination with other SAS statements to create the appropriate SAS program, as shown below. To use the statements provided in Section D to create a SAS program, you will need an ASCII text editor. If you are using an interactive form of SAS (Windows, UNIX, Linux, etc.), use the editor provided as part of the SAS software. Following is a sample Windows SAS program that will convert the ASCII data file to SAS format: LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\H211.DAT'; DATA PUFLIB.H211; INFILE IN1 LRECL=268; INPUT .....; * to user: insert the complete INPUT statement that is provided in Section D; LABEL .....; * to user: insert the complete LABEL statement that is provided in Section D; RUN; Here is an explanation of the SAS statements used in the program above. LIBNAME statement: This tells SAS the location (directory name) of the permanent SAS dataset. FILENAME statement: This tells SAS the location of the input ASCII data file. DATA statement: This signifies the beginning of a SAS DATA step and specifies the output SAS dataset, referencing the LIBNAME entry (PUFLIB) and assigning an internal SAS dataset name (H211). In the example, after the successful completion of the DATA step, a PC file named H211.SAS7BDAT would have been created in the C:\MEPS\SASDATA directory. INFILE statement: This tells SAS the location (directory and file name) of the input ASCII data file. Also provided is the logical record length (268 bytes), with the default of RECFM=V implied when this parameter is omitted. LRECL and RECFM are optional parameters in the INFILE statement. With regard to these options, please note the following: the ASCII data file H211.DAT contains a 2-byte carriage return/line feed at the end of each record. When converting to a PC-SAS file, the LRECL option should be used to specify the record length to avoid use of a default record length by PC-SAS. If the RECFM=V option is used, the LRECL option must be specified as the logical record length (e.g., 268 for H211.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (270 for H211.DAT). Note that if the RECFM option is omitted, then the default option of RECFM=V is automatically used, and LRECL should be specified as the logical record (268 for H211.DAT). INPUT statement: This specifies the input record layout, giving names, the beginning column positions, and the lengths for data items (which become SAS variables) in the ASCII data file (H211.DAT). Variable type (numeric or character) is also defined by character variables having a dollar sign ($) directly before the variables length, while numeric variables do not have a dollar sign. LABEL statement: This associates descriptive names with the SAS variables. RUN statement: This tells SAS to execute all commands up to this point. C. Optional Format-related SAS Statements If a user wants to use formats for the SAS variables, a SAS format catalog must first be created. Below is a SAS program that will accomplish this: LIBNAME PUFLIB 'C:\MEPS\SASDATA'; PROC FORMAT LIBRARY=PUFLIB; VALUE .....; * to user: insert the complete set of VALUE statements found in Section D; VALUE .....; .......... ; RUN; Below is an example of how to use the SAS formats defined by the PROC FORMAT procedure: LIBNAME PUFLIB 'C:\MEPS\SASDATA'; OPTIONS FMTSEARCH=(PUFLIB); PROC FREQ DATA=PUFLIB.H211; TABLES .... / LIST MISSING; FORMAT varnam1 fmtnam1. Varnam2 fmtnam2. .... ; * to user: substitute varnam1 and fmtnam1 with actual variable names and format names; * Insert the FORMAT statement provided in Section D, if you are using all the variables in the TABLES statement; TITLE 'Frequency Distributions ....'; RUN; Here is an explanation of the SAS statements used above. LIBNAME statement: This tells SAS the location (directory name) of the SAS format library. Please note that SAS datasets (file name extension is 'SAS7BDAT') and format catalog (file name extension is 'SAS7BCAT') can be stored under the same directory. OPTIONS FMTSEARCH=...: This specifies the SAS format library. PROC FORMAT statement: This identifies the SAS procedure that will make SAS formats according to VALUE statements. Formats will be stored in a file named FORMATS.SAS7BCAT. Please note that the option 'LIBRARY=...' can be omitted if the user does not want to create a permanent SAS format library. When simply 'PROC FORMAT;' is used, the formats are defined only for the duration of the batch SAS program or an interactive SAS session. VALUE statement: This gives a) names to formats; and b) descriptive labels for individual values, or range of values. The format names can then be invoked using a FORMAT statement if desired. PROC FREQ statement: This identifies the SAS procedure that generates frequency distributions of variables specified in the TABLES statement, formatted if a FORMAT statement is used. The input SAS dataset is specified in the 'DATA=' option. FORMAT statement: This associates existing formats with variables. When using this statement, the formats must have already been created with a PROC FORMAT procedure. RUN statement: This tells SAS to execute all commands up to this point. NOTES: 1) Use of formats is entirely optional, and depends on the types of analyses that you are doing. It is recommended that you create and use them as appropriate. 2) The names used in the LIBNAME and FILENAME statements shown above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary aliases. 3) The file and directory specifications in the LIBNAME and FILENAME statements are Windows syntax and may need to be modified for other operating systems such as UNIX and Linux. D. SAS Statements This section contains SAS INPUT, LABEL, FORMAT, and VALUE statements for use in converting the ASCII H211.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=268; INPUT @1 JOBSIDX $14.0 @15 JOBIDX $13.0 @28 JOBNUM $3.0 @31 DUPERSID $10.0 @41 DUID $7.0 @48 PID 3.0 @51 RN 1.0 @52 OrigRnd 1.0 @53 PANEL 2.0 @55 JSTRTM 2.0 @57 JSTRTY 4.0 @61 JSTOPM 2.0 @63 JSTOPY 4.0 @67 RETIRJOB 1.0 @68 SUBTYPE 1.0 @69 STILLAT 2.0 @71 TYPECHGD 2.0 @73 MAIN_JOB 2.0 @75 DIFFWAGE 2.0 @77 StillWorkFTPT 2.0 @79 WhyChngPTToFT 2.0 @81 WhyChngFTToPT 2.0 @83 STILLWRK 2.0 @85 OFFTAKEI 2.0 @87 NOWTAKEI 2.0 @89 ESTBTHRU 2.0 @91 INSESTB 2.0 @93 HIDISAVW $4.0 @97 RvwTotNumEmp 5.0 @102 WHY_LEFT_M18 2.0 @104 JOBTYPE 2.0 @106 NUMEMPS 5.0 @111 ESTMATE1_M18 2.0 @113 ESTMATE1_M19 2.0 @115 MORELOC 2.0 @117 BUSINC 2.0 @119 PROPRIET 2.0 @121 TYPEEMPL 2.0 @123 YLEFT_M18 2.0 @125 YNOBUSN_M18 2.0 @127 HRSPRWK 3.0 @130 HRS35WK 2.0 @132 TEMPJOB 2.0 @134 SESNLJOB 2.0 @136 SICKPAY 2.0 @138 PAYDRVST 2.0 @140 PAYVACTN 2.0 @142 RETIRPLN 2.0 @144 WKLYAMT 7.2 @151 EMPLINS 2.0 @153 JOBHASHI 2.0 @155 OFFRDINS 2.0 @157 DIFFPLNS 2.0 @159 ANYINS 2.0 @161 INUNION 2.0 @163 PROVDINS 2.0 @165 HHMEMBER_M18 2.0 @167 TOTLEMP_M18 5.0 @172 TotNumEmp 4.0 @176 SALARIED 2.0 @178 HOWPAID 2.0 @180 DAYWAGE 6.2 @186 HRSPRDY 2.0 @188 MAKEAMT 9.2 @197 PERUNIT_M18 2.0 @199 HRLYWAGE 6.2 @205 MORE10 2.0 @207 MORE15 2.0 @209 MOREMINM 2.0 @211 GROSSPAY 9.2 @220 GROSSPER 2.0 @222 SALRYWKS 2.0 @224 HRSALBAS 3.0 @227 EARNTIPS 2.0 @229 EARNBONS 2.0 @231 EARNCOMM 2.0 @233 TIPSAMT 8.2 @241 TIPSUNIT_M18 2.0 @243 BONSAMT 9.2 @252 BONSUNIT 2.0 @254 COMMAMT 9.2 @263 COMMUNIT 2.0 @265 INDCODEX 2.0 @267 OCCCODEX 2.0 ; * FORMAT STATEMENTS; FORMAT JOBSIDX $JOBSIDX. JOBIDX $JOBIDX. JOBNUM $JOBNUM. DUPERSID $DUPERSI. DUID $DUID. PID PID. RN RN. OrigRnd ORIGRND. PANEL PANEL. JSTRTM JSTRTM. JSTRTY JSTRTY. JSTOPM JSTOPM. JSTOPY JSTOPY. RETIRJOB RETIRJOB. SUBTYPE SUBTYPE. STILLAT STILLAT. TYPECHGD TYPECHGD. MAIN_JOB MAIN_JOB. DIFFWAGE DIFFWAGE. StillWorkFTPT STILLWORKFTPT. WhyChngPTToFT WHYCHNGPTTOFT. WhyChngFTToPT WHYCHNGFTTOPT. STILLWRK STILLWRK. OFFTAKEI OFFTAKEI. NOWTAKEI NOWTAKEI. ESTBTHRU ESTBTHRU. INSESTB INSESTB. HIDISAVW $HIDISAVW. RvwTotNumEmp RVWTOTNUMEMP. WHY_LEFT_M18 WHY_LEFT_M18F. JOBTYPE JOBTYPE. NUMEMPS NUMEMPS. ESTMATE1_M18 ESTMATE1_M18F. ESTMATE1_M19 ESTMATE1_M19F. MORELOC MORELOC. BUSINC BUSINC. PROPRIET PROPRIET. TYPEEMPL TYPEEMPL. YLEFT_M18 YLEFT_M18F. YNOBUSN_M18 YNOBUSN_M18F. HRSPRWK HRSPRWK. HRS35WK HRS35WK. TEMPJOB TEMPJOB. SESNLJOB SESNLJOB. SICKPAY SICKPAY. PAYDRVST PAYDRVST. PAYVACTN PAYVACTN. RETIRPLN RETIRPLN. WKLYAMT WKLYAMT. EMPLINS EMPLINS. JOBHASHI JOBHASHI. OFFRDINS OFFRDINS. DIFFPLNS DIFFPLNS. ANYINS ANYINS. INUNION INUNION. PROVDINS PROVDINS. HHMEMBER_M18 HHMEMBER_M18F. TOTLEMP_M18 TOTLEMP_M18F. TotNumEmp TOTNUMEMP. SALARIED SALARIED. HOWPAID HOWPAID. DAYWAGE DAYWAGE. HRSPRDY HRSPRDY. MAKEAMT MAKEAMT. PERUNIT_M18 PERUNIT_M18F. HRLYWAGE HRLYWAGE. MORE10 MORE10F. MORE15 MORE15F. MOREMINM MOREMINM. GROSSPAY GROSSPAY. GROSSPER GROSSPER. SALRYWKS SALRYWKS. HRSALBAS HRSALBAS. EARNTIPS EARNTIPS. EARNBONS EARNBONS. EARNCOMM EARNCOMM. TIPSAMT TIPSAMT. TIPSUNIT_M18 TIPSUNIT_M18F. BONSAMT BONSAMT. BONSUNIT BONSUNIT. COMMAMT COMMAMT. COMMUNIT COMMUNIT. INDCODEX INDCODEX. OCCCODEX OCCCODEX. ; * LABEL STATEMENTS; LABEL JOBSIDX ="Job-round identifier" JOBIDX ="Person s unique job identifier" JOBNUM ="Unique DU-job identifier" DUPERSID ="Person ID (DUID+PID)" DUID ="Panel # + encrypted DU identifier" PID ="Person number" RN ="Round" OrigRnd ="Round job reported" PANEL ="Panel" JSTRTM ="Job start date - month" JSTRTY ="Job start date - year" JSTOPM ="Job stop date - month" JSTOPY ="Job stop date - year" RETIRJOB ="Person retired from this job" SUBTYPE ="Job sub-type" STILLAT ="Still works at main job establishment" TYPECHGD ="Job sub-type changed between rounds" MAIN_JOB ="Still main job or business" DIFFWAGE ="Any change in wage amount" StillWorkFTPT ="Still works full or part time" WhyChngPTToFT ="Why change part to full time" WhyChngFTToPT ="Why change full to part time" STILLWRK ="Still works at misc job establishment" OFFTAKEI ="Offered insurance and now take" NOWTAKEI ="Now offered and take insurance" ESTBTHRU ="Offered insurance, did not take (review)" INSESTB ="Insurance offered to any employees (review)" HIDISAVW ="Capi q where emp/union health ins disvwd" RvwTotNumEmp ="Establishment size at continuing self-employed job" WHY_LEFT_M18 ="Reason why no longer at job now" JOBTYPE ="Self-employed or works for someone else" NUMEMPS ="Establishment size at not self-employed job" ESTMATE1_M18 ="Categorical approximate establishment size" ESTMATE1_M19 ="Categorical approximate establishment size" MORELOC ="Employer has more than one location" BUSINC ="Business incorporated" PROPRIET ="Proprietorship or partnership" TYPEEMPL ="Employee type" YLEFT_M18 ="Reason why no longer at job" YNOBUSN_M18 ="Reason why no longer has business" HRSPRWK ="Number of hours worked per week" HRS35WK ="Works at least 35 hours per week" TEMPJOB ="Job at employer is temporary" SESNLJOB ="Job available certain time of year" SICKPAY ="Has paid sick leave thru job" PAYDRVST ="Has paid sick leave for doc visit thru job" PAYVACTN ="Has paid vacation leave thru job" RETIRPLN ="Has pension/retirement plan thru job" WKLYAMT ="Usual weekly gross income at misc job" EMPLINS ="Has health insurance thru current main job" JOBHASHI ="Has health insurance thru job" OFFRDINS ="Offered insurance but chose not to take" DIFFPLNS ="Choice of different health insurance plans" ANYINS ="Health insurance offered to any employees" INUNION ="Belongs to labor union" PROVDINS ="Employer, union, both provides health ins" HHMEMBER_M18 ="Any other hh member wrk at this business" TOTLEMP_M18 ="Current establishment size at self-employed job" TotNumEmp ="Establishment size at new self-employed job" SALARIED ="Person salaried, paid by hour, some other way" HOWPAID ="How is person paid" DAYWAGE ="Person s daily wage rate" HRSPRDY ="Number of hours person worked in one day" MAKEAMT ="How much money does person make" PERUNIT_M18 ="Period for which person is paid" HRLYWAGE ="How much person makes per hour" MORE10 ="Person makes more or less than $10/hour" MORE15 ="Person makes more or less than $15/hour" MOREMINM ="Person makes more or less than min. wage" GROSSPAY ="Person s salary before taxes (gross)" GROSSPER ="Period in which gross salary was earned" SALRYWKS ="Number of weeks per year salary is based" HRSALBAS ="Hours per week salary based on" EARNTIPS ="Person earns tips" EARNBONS ="Person earns bonuses" EARNCOMM ="Person earns commission" TIPSAMT ="How much are person s tips" TIPSUNIT_M18 ="Period which tip earnings are based on" BONSAMT ="How much are person s bonuses" BONSUNIT ="Period which bonuses are based on" COMMAMT ="How much are person s commissions" COMMUNIT ="Period which commissions are based on" INDCODEX ="Condensed industry code" OCCCODEX ="Condensed occupation code" ; * VALUE STATEMENTS; VALUE ANYINS -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE BONSAMT -15 = "-15 CANNOT BE COMPUTED" -10 = "-10 HOURLY WAGE >= $96.15" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 0 = "0" 0.3 - 100000 = "$0.30 - $100,000.00" ; VALUE BONSUNIT -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 PER HOUR" 2 = "2 PER DAY" 3 = "3 PER WEEK" 4 = "4 PER TWO WKS" 5 = "5 PER MONTH" 6 = "6 PER YEAR" 91 = "91 OTHER" ; VALUE BUSINC -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE COMMAMT -15 = "-15 CANNOT BE COMPUTED" -10 = "-10 HOURLY WAGE >= $96.15" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 0 = "0" 1 - 300000 = "$1.00 - $300,000.00" ; VALUE COMMUNIT -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 PER HOUR" 2 = "2 PER DAY" 3 = "3 PER WEEK" 4 = "4 PER TWO WKS" 5 = "5 PER MONTH" 6 = "6 PER YEAR" 91 = "91 OTHER" ; VALUE DAYWAGE -15 = "-15 CANNOT BE COMPUTED" -10 = "-10 HOURLY WAGE >= $96.15" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 0 = "0" 8 - 600 = "$8.00 - $600.00" ; VALUE DIFFPLNS -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES, GT ONE" 2 = "2 NO, ONLY ONE" ; VALUE DIFFWAGE -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE $DUID '2320002' - '2469689' = "VALID ID" ; VALUE $DUPERSI '2320002101' - '2469689101' = "VALID ID" ; VALUE EARNBONS -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE EARNCOMM -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE EARNTIPS -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE EMPLINS -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE ESTBTHRU -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE ESTMATE1_M18F -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 2 = "2 2 - 9" 3 = "3 10 - 25" 4 = "4 26 - 50" 5 = "5 51 - 100" 6 = "6 101 - 200" 7 = "7 201 - 500" 8 = "8 501+" ; VALUE ESTMATE1_M19F -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 2 = "2 2 - 9" 3 = "3 10 - 25" 4 = "4 26 - 49" 5 = "5 50 - 100" 6 = "6 101 - 500" 7 = "7 501 - 1000" 8 = "8 1001 - 5000" 9 = "9 5001+" ; VALUE GROSSPAY -15 = "-15 CANNOT BE COMPUTED" -10 = "-10 HOURLY WAGE >= $96.15" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 0 = "0" 13.18 - 231000 = "$13.18 - $231,000.00" ; VALUE GROSSPER -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 PER YEAR" 2 = "2 PER MONTH" 3 = "3 PER TWO WKS" 4 = "4 PER WEEK" 91 = "91 OTHER" ; VALUE HHMEMBER_M18F -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE $HIDISAVW '-1' = "-1 INAPPLICABLE" '-15' = "-15 CANNOT BE COMPUTED" 'HP70' = "Q# HP70" 'HX14' = "Q# HX14" 'HX15' = "Q# HX15" 'HX20' = "Q# HX20" ; VALUE HOWPAID -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 BY THE DAY" 2 = "2 PIECEWORK" 3 = "3 COMMISSION" 4 = "4 BONUS" 5 = "5 BY JOB/MILE" 91 = "91 OTHER" ; VALUE HRLYWAGE -15 = "-15 CANNOT BE COMPUTED" -10 = "-10 HOURLY WAGE >= $96.15" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 0 = "0" 1 - 90 = "$1.00 - $90.00" ; VALUE HRS35WK -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE HRSALBAS -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 - 20 = "1 - 20" 21 - 30 = "21 - 30" 31 - 40 = "31 - 40" 41 - 60 = "41 - 60" 61 - 80 = "61 - 80" 81 - 84 = "81 - 84" 85 - 168 = "85 - 168" ; VALUE HRSPRDY -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 2 - 4 = "2 - 4" 5 - 8 = "5 - 8" 9 - 15 = "9 - 15" 16 = "16" ; VALUE HRSPRWK -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 0 = "0" 1 - 20 = "1 - 20" 21 - 30 = "21 - 30" 31 - 40 = "31 - 40" 41 - 60 = "41 - 60" 61 - 80 = "61 - 80" 81 - 120 = "81 - 120" 121 - 150 = "121 - 150" ; VALUE INDCODEX -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 NATURAL RESOURCES" 2 = "2 MINING" 3 = "3 CONSTRUCTION" 4 = "4 MANUFACTURING" 5 = "5 WHOLESALE AND RETAIL TRADE" 6 = "6 TRANSPORTATION AND UTILITIES" 7 = "7 INFORMATION" 8 = "8 FINANCIAL ACTIVITIES" 9 = "9 PROFESSIONAL AND BUSINESS SERVICES" 10 = "10 EDUCATION, HEALTH, AND SOCIAL SERVICES" 11 = "11 LEISURE AND HOSPITALITY" 12 = "12 OTHER SERVICES" 13 = "13 PUBLIC ADMINISTRATION" 14 = "14 MILITARY" 15 = "15 UNCLASSIFIABLE INDUSTRY" ; VALUE INSESTB -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE INUNION -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE JOBHASHI -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE $JOBIDX '2320002101202' - '2469689101101' = "VALID ID" ; VALUE $JOBNUM '061' - '503' = "VALID ID" ; VALUE $JOBSIDX '23200021013202' - '24696891013101' = "VALID ID" ; VALUE JOBTYPE -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 SELF-EMPLOYED" 2 = "2 FOR SOMEONE ELSE" ; VALUE JSTOPM -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 - 12 = "1 - 12" ; VALUE JSTOPY -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 0 = "0 STILL AT JOB" 1950 - 2018 = "1950 - 2018" 2019 = "2019" 2020 = "2020" ; VALUE JSTRTM -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 - 12 = "1 - 12" ; VALUE JSTRTY -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1949 - 2012 = "1949 - 2012" 2013 = "2013" 2014 = "2014" 2015 = "2015" 2016 = "2016" 2017 = "2017" 2018 = "2018" 2019 = "2019" ; VALUE MAIN_JOB -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE MAKEAMT -15 = "-15 CANNOT BE COMPUTED" -10 = "-10 HOURLY WAGE >= $96.15" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 0 = "0" 0.41 - 200000 = "$0.41 - $200,000.00" ; VALUE MORE10F -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 GE $10" 2 = "2 LT $10" ; VALUE MORE15F -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 GE $15" 2 = "2 LT $15" ; VALUE MORELOC -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE MOREMINM -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 GE MINIMUM WAGE" 2 = "2 LT MINIMUM WAGE" ; VALUE NOWTAKEI -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE NUMEMPS -10 = "-10 # OF EMP >= 12,000" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 0 = "0" 1 - 9 = "1 - 9" 10 - 25 = "10 - 25" 26 - 50 = "26 - 50" 51 - 100 = "51 - 100" 101 - 500 = "101 - 500" 501 - 11000 = "501 - 11,000" ; VALUE OCCCODEX -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 MANAGEMENT, BUSINESS, AND FINANCIAL OPER" 2 = "2 PROFESSIONAL AND RELATED OCCUPATIONS" 3 = "3 SERVICE OCCUPATIONS" 4 = "4 SALES AND RELATED OCCUPATIONS" 5 = "5 OFFICE AND ADMINISTRATIVE SUPPORT" 6 = "6 FARMING, FISHING, AND FORESTRY" 7 = "7 CONSTRUCTION, EXTRACTION, AND MAINTENANC" 8 = "8 PRODUCTION, TRNSPORTATION, MATRL MOVING" 9 = "9 MILITARY SPECIFIC OCCUPATIONS" 10 = "10 NOT IN LABOR FORCE" 11 = "11 UNCLASSIFIABLE OCCUPATION" ; VALUE OFFRDINS -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE OFFTAKEI -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE ORIGRND 1 = "1" 2 = "2" 3 = "3" 4 = "4" 5 = "5" ; VALUE PANEL 23 = "23" 24 = "24" ; VALUE PAYDRVST -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE PAYVACTN -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE PERUNIT_M18F -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 PER DAY" 2 = "2 PER WEEK" 3 = "3 PER MONTH" 4 = "4 PER YEAR" 91 = "91 OTHER" ; VALUE PID 101 - 503 = "101 - 503" ; VALUE PROPRIET -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE PROVDINS -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 EMPLOYER" 2 = "2 UNION" 3 = "3 BOTH" ; VALUE RETIRJOB 1 = "1 YES" 2 = "2 NO" ; VALUE RETIRPLN -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE RN 1 = "1" 2 = "2" 3 = "3" 4 = "4" 5 = "5" ; VALUE RVWTOTNUMEMP -10 = "-10 # OF EMP >= 12,000" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 - 10000 = "1 - 10,000" ; VALUE SALARIED -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 SALARIED" 2 = "2 PAID BY HOUR" 3 = "3 OTHER" ; VALUE SALRYWKS -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 0 = "0" 5 - 52 = "5 - 52" ; VALUE SESNLJOB -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YEAR ROUND" 2 = "2 NOT YEAR ROUND" ; VALUE SICKPAY -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STILLAT -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STILLWORKFTPT -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STILLWRK -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE SUBTYPE -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 CUR MAIN JOB IN REF PD" 2 = "2 CUR MISC JOB IN REF PD" 3 = "3 FMR MAIN JOB IN REF PD" 4 = "4 FMR MISC JOB IN REF PD" 5 = "5 LAST JOB OUTSD REF PD" 6 = "6 RETIREMENT JOB" ; VALUE TEMPJOB -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE TIPSAMT -15 = "-15 CANNOT BE COMPUTED" -10 = "-10 HOURLY WAGE >= $96.15" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 0 = "0" 0.75 - 60000 = "$0.75 - $60,000.00" ; VALUE TIPSUNIT_M18F -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 PER DAY" 2 = "2 PER WEEK" 3 = "3 PER MONTH" 4 = "4 PER YEAR" 91 = "91 OTHER" ; VALUE TOTLEMP_M18F -10 = "-10 # OF EMP >= 12,000" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 - 10000 = "1 - 10,000" ; VALUE TOTNUMEMP -10 = "-10 # OF EMP >= 12,000" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 - 2000 = "1 - 2,000" ; VALUE TYPECHGD -1 = "-1 INAPPLICABLE" 1 = "1 SUBTYPE CHANGE" 2 = "2 NO SUBTYPE CHANGE" ; VALUE TYPEEMPL -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 PRIVATE" 2 = "2 FEDERAL" 3 = "3 STATE" 4 = "4 LOCAL" 5 = "5 ARMED FORCES" 6 = "6 FOREIGN NON US GOV" ; VALUE WHYCHNGFTTOPT -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 HOURS CUT, BUSINESS SLOW" 2 = "2 CHANGE IN SCHEDULE OR SHIFT" 3 = "3 ILLNESS, INJURY, HEALTH PROBLEM" 4 = "4 FAMILY, SCHOOL, TEMPORARY LEAVE" 91 = "91 OTHER - SPECIFY" ; VALUE WHYCHNGPTTOFT -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 CHANGE IN SCHEDULE OR SHIFT" 2 = "2 CHANGE IN PAY" 3 = "3 BENEFITS/HEALTH INSURANCE" 4 = "4 FAMILY, SCHOOL, TEMPORARY LEAVE" 91 = "91 OTHER - SPECIFY" ; VALUE WHY_LEFT_M18F -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 JOB ENDED, TEMPORARY, SEASONAL, CONTRACT, ETC." 2 = "2 BUSINESS CLOSED OR SOLD" 3 = "3 RETIRED" 4 = "4 ILLNESS, INJURY, ANY HEALTH PROBLEM" 5 = "5 TERMINATED, FIRED, DISMISSED" 6 = "6 LAID OFF, LET GO" 7 = "7 QUIT - FAMILY REASON, MATERNITY LEAVE" 8 = "8 QUIT - SCHOOL" 9 = "9 QUIT - JOB RELATED REASON" 10 = "10 QUIT - ANY OTHER REASON" 91 = "91 OTHER - SPECIFY" ; VALUE WKLYAMT -15 = "-15 CANNOT BE COMPUTED" -10 = "-10 HOURLY WAGE >= $96.15" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 0 = "0" 1 - 3700 = "$1.00 - $3,700.00" ; VALUE YLEFT_M18F -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 JOB ENDED, TEMPORARY, SEASONAL, CONTRACT, ETC." 2 = "2 BUSINESS CLOSED OR SOLD" 3 = "3 ILLNESS, INJURY, ANY HEALTH PROBLEM" 4 = "4 TERMINATED, FIRED, DISMISSED" 5 = "5 LAID OFF, LET GO" 6 = "6 QUIT - FAMILY REASON, MATERNITY LEAVE" 7 = "7 QUIT - SCHOOL" 8 = "8 QUIT - JOB RELATED REASON" 9 = "9 QUIT - ANY OTHER REASON" 91 = "91 OTHER - SPECIFY" ; VALUE YNOBUSN_M18F -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 BUSINESS SOLD OR CLOSED" 2 = "2 RETIRED" 3 = "3 ILLNESS OR INJURY" 91 = "91 OTHER" ;