SAS User File for H126D 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 (H126D.SSP) or the ASCII data file (H126D.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: XCOPY. 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. INCLUDED BELOW ARE NOTES APPLICABLE TO USERS OF SAS VERSION 8 OR HIGHER. ****************************************************************************** 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 XCOPY 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, with SAS V8 or higher). LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\H126D.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT; RUN; SAS transport files, SAS data files, and SAS program files each should be stored in separate locations (directory names). Storing different types of SAS files in one location can cause errors with converting or retrieving data. Below are SAS statements to print a list of variables and a few sample records from the permanent SAS dataset: PROC CONTENTS DATA=PUFLIB.H126D; TITLE 'List of Variables in MEPS H126D SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H126D (OBS=20); TITLE 'First 20 Observations in MEPS H126D SAS Dataset'; RUN; The LIBNAME statement tells SAS the location (directory name) to store the permanent SAS dataset which is output by PROC XCOPY. The FILENAME statement tells SAS the location (complete directory and file name) of the input SAS transport data file. NOTES: 1) If you have an error reading a SAS data file you created, the problem may be a result of where you are storing and/or how you are retrieving the data. First check the data library for multiple releases of SAS files (e.g., V8 or higher with file extensions of '.SAS7BDAT' and V6 with file extensions of '.SD2') stored in the same location. a) You can avoid errors when reading these files by including the SAS release within the LIBNAME statement - e.g., LIBNAME PUFLIB V8 'C:\MEPS\SASDATA'; or b) Store SAS data files with different file extensions such as .SD2 and .SAS7BDAT, in separate folders (do not co-mingle V8 and V6 files in the same folder); or c) When importing transport files, output the SAS dataset to a different library than the one which contains the downloaded SAS transport file - e.g., LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\Hxxx.SSP'; PROC XCOPY IN=IN1 OUT=PUBLIB IMPORT; RUN; 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 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, MAC/OS, VMS, or OS/2. 4) H126D 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 XCOPY, the output SAS dataset assumes the same dataset name (or file name). Hence, in the example above, a file named H126D.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file H126D.SSP was created from a SAS V9 data file, using PROC COPY. This file has been tested for use with SAS V8 or higher. This file may 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 H126D.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 H126D.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, OS2, etc.), use the editor provided as part of the SAS software. Following is a sample SAS program that will convert the ASCII data file to SAS format: LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\H126D.DAT'; DATA PUFLIB.H126D; INFILE IN1 LRECL=384; 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 (H126D). In the example, after the successful completion of the DATA step, a PC file named H126D.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 (384 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 H126D.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., 384 for H126D.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (386 for H126D.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 (384 for H126D.DAT). INPUT statement: This specifies the input record layout, giving names and the beginning and ending column positions for data items (which become SAS variables) in the ASCII data file (H126D.DAT). Variable type (numeric or character) is also defined via the INPUT statement. LABEL statement: This associates descriptive names with the SAS variables. RUN statement: This tells SAS to execute all commands up to this point. See Section A.1 above for tips on retrieving and storing the permanent SAS data files. C. Optional Format-related SAS Statements If a user wants to use formats for the SAS variables, a SAS format library 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.H126D; 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' for SAS V8 or higher and 'SD2' for SAS V6) and format libraries (file name extension is 'SAS7BCAT' for SAS V8 or higher and 'SC2' for SAS V6) 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) You only create the permanent SAS dataset once. Additional analyses can be run using this permanent dataset. 4) 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, MAC/OS, VMS, or OS/2. D. SAS Statements This section contains SAS INPUT, LABEL, FORMAT, and VALUE statements for use in converting the ASCII H126D.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=384; INPUT @1 DUID 5.0 @6 PID 3.0 @9 DUPERSID $8.0 @17 EVNTIDX $12.0 @29 EVENTRN 1.0 @30 ERHEVIDX $12.0 @42 FFEEIDX $12.0 @54 PANEL 2.0 @56 MPCDATA 1.0 @57 IPBEGYR 4.0 @61 IPBEGMM 2.0 @63 IPBEGDD 2.0 @65 IPENDYR 4.0 @69 IPENDMM 2.0 @71 IPENDDD 2.0 @73 NUMNIGHX 3.0 @76 NUMNIGHT 2.0 @78 EMERROOM 2.0 @80 SPECCOND 2.0 @82 RSNINHOS 2.0 @84 DLVRTYPE 2.0 @86 EPIDURAL 2.0 @88 ANYOPER 2.0 @90 IPICD1X $3.0 @93 IPICD2X $3.0 @96 IPICD3X $3.0 @99 IPICD4X $3.0 @102 IPPRO1X $2.0 @104 IPPRO2X $2.0 @106 IPCCC1X $3.0 @109 IPCCC2X $3.0 @112 IPCCC3X $3.0 @115 IPCCC4X $3.0 @118 DSCHPMED 2.0 @120 FFIPTYPE 2.0 @122 IPXP09X 9.2 @131 IPTC09X 9.2 @140 IPFSF09X 8.2 @148 IPFMR09X 9.2 @157 IPFMD09X 9.2 @166 IPFPV09X 9.2 @175 IPFVA09X 8.2 @183 IPFTR09X 8.2 @191 IPFOF09X 8.2 @199 IPFSL09X 9.2 @208 IPFWC09X 8.2 @216 IPFOR09X 8.2 @224 IPFOU09X 9.2 @233 IPFOT09X 8.2 @241 IPFXP09X 9.2 @250 IPFTC09X 9.2 @259 IPDSF09X 7.2 @266 IPDMR09X 8.2 @274 IPDMD09X 8.2 @282 IPDPV09X 8.2 @290 IPDVA09X 7.2 @297 IPDTR09X 7.2 @304 IPDOF09X 7.2 @311 IPDSL09X 7.2 @318 IPDWC09X 8.2 @326 IPDOR09X 8.2 @334 IPDOU09X 8.2 @342 IPDOT09X 8.2 @350 IPDXP09X 8.2 @358 IPDTC09X 9.2 @367 IMPFLAG 1.0 @368 PERWT09F 12.6 @380 VARSTR 4.0 @384 VARPSU 1.0 ; * FORMAT STATEMENTS; FORMAT DUID DUID. PID PID. DUPERSID $DUPERS. EVNTIDX $EVNTIDX. EVENTRN EVENTRNF. ERHEVIDX $ERHEIDF. FFEEIDX $FFEEIDX. PANEL PANELF. MPCDATA MPCDATAF. IPBEGYR IPBEGYRF. IPBEGMM IPBEGMMF. IPBEGDD IPBEGDDF. IPENDYR IPENDYRF. IPENDMM IPENDMMF. IPENDDD IPENDDF. NUMNIGHX NUMNIGHX. NUMNIGHT NUMNIGHF. EMERROOM EMERROOF. SPECCOND SPECCONF. RSNINHOS RSNINHOF. DLVRTYPE DLVRTYPF. EPIDURAL EPIDURLF. ANYOPER ANYOPERF. IPICD1X $IPICD1X. IPICD2X $IPICD2X. IPICD3X $IPICD3X. IPICD4X $IPICD4X. IPPRO1X $IPPRO1X. IPPRO2X $IPPRO2X. IPCCC1X $IPCCC1X. IPCCC2X $IPCCC2X. IPCCC3X $IPCCC3X. IPCCC4X $IPCCC4X. DSCHPMED DSCHPMEF. FFIPTYPE FFIPTYPF. IPXP09X IPXP09XF. IPTC09X IPTC09XF. IPFSF09X IPFSF09F. IPFMR09X IPFMR09F. IPFMD09X IPFMD09F. IPFPV09X IPFPV09F. IPFVA09X IPFVA09F. IPFTR09X IPFTR09F. IPFOF09X IPFOF09F. IPFSL09X IPFSL09F. IPFWC09X IPFWC09F. IPFOR09X IPFOR09F. IPFOU09X IPFOU09F. IPFOT09X IPFOT09F. IPFXP09X IPFXP09F. IPFTC09X IPFTC09F. IPDSF09X IPDSF09F. IPDMR09X IPDMR09F. IPDMD09X IPDMD09F. IPDPV09X IPDPV09F. IPDVA09X IPDVA09F. IPDTR09X IPDTR09F. IPDOF09X IPDOF09F. IPDSL09X IPDSL09F. IPDWC09X IPDWC09F. IPDOR09X IPDOR09F. IPDOU09X IPDOU09F. IPDOT09X IPDOT09F. IPDXP09X IPDXP09F. IPDTC09X IPDTC09F. IMPFLAG IMPFLAGF. PERWT09F PERWT09F. VARSTR VARSTRF. VARPSU VARPSUF. ; * LABEL STATEMENTS; LABEL DUID ='DWELLING UNIT ID' PID ='PERSON NUMBER' DUPERSID='PERSON ID (DUID + PID)' EVNTIDX ='EVENT ID' EVENTRN ='EVENT ROUND NUMBER' ERHEVIDX='EVENT ID FOR CORRESPONDING EMER RM VISIT' FFEEIDX ='FLAT FEE ID' PANEL ='PANEL NUMBER' MPCDATA ='MPC DATA FLAG' IPBEGYR ='EVENT START DATE - YEAR' IPBEGMM ='EVENT START DATE - MONTH' IPBEGDD ='EVENT START DATE - DAY' IPENDYR ='EVENT END DATE - YEAR' IPENDMM ='EVENT END DATE - MONTH' IPENDDD ='EVENT END DATE - DAY' NUMNIGHX='# OF NIGHTS IN HOSPITAL - EDITED/IMPUTED' NUMNIGHT='NUMBER OF NIGHTS STAYED AT PROVIDER' EMERROOM='DID STAY BEGIN WITH EMERGENCY ROOM VISIT' SPECCOND='HOSPITAL STAY RELATED TO CONDITION' RSNINHOS='REASON ENTERED HOSPITAL' DLVRTYPE='VAGINAL OR CAESAREAN DELIVERY' EPIDURAL='RECEIVE AN EPIDURAL OR SPINAL FOR PAIN' ANYOPER ='ANY OPERATIONS OR SURGERIES PERFORMED' IPICD1X ='3-DIGIT ICD-9-CM CONDITION CODE' IPICD2X ='3-DIGIT ICD-9-CM CONDITION CODE' IPICD3X ='3-DIGIT ICD-9-CM CONDITION CODE' IPICD4X ='3-DIGIT ICD-9-CM CONDITION CODE' IPPRO1X ='2-DIGIT ICD-9-CM PROCEDURE CODE' IPPRO2X ='2-DIGIT ICD-9-CM PROCEDURE CODE' IPCCC1X ='MODIFIED CLINICAL CLASSIFICATION CODE' IPCCC2X ='MODIFIED CLINICAL CLASSIFICATION CODE' IPCCC3X ='MODIFIED CLINICAL CLASSIFICATION CODE' IPCCC4X ='MODIFIED CLINICAL CLASSIFICATION CODE' DSCHPMED='MEDICINES PRESCRIBED AT DISCHARGE' FFIPTYPE='FLAT FEE BUNDLE' IPXP09X ='TOT EXP FOR EVENT (IPFXP09X+IPDXP09X)' IPTC09X ='TOTAL CHG FOR EVENT (IPFTC09X+IPDTC09X)' IPFSF09X='FACILITY AMT PD, FAMILY (IMPUTED)' IPFMR09X='FACILITY AMT PD, MEDICARE (IMPUTED)' IPFMD09X='FACILITY AMT PD, MEDICAID (IMPUTED)' IPFPV09X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' IPFVA09X='FAC AMT PD,VETERANS/CHAMPVA(IMPUTED)' IPFTR09X='FACILITY AMT PD,TRICARE(IMPUTED)' IPFOF09X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' IPFSL09X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' IPFWC09X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' IPFOR09X='FACILITY AMT PD, OTH PRIV (IMPUTED)' IPFOU09X='FACILITY AMT PD, OTH PUB (IMPUTED)' IPFOT09X='FACILITY AMT PD, OTH INSUR (IMPUTED)' IPFXP09X='FACILITY SUM PAYMENTS IPFSF09X-IPFOT09X' IPFTC09X='TOTAL FACILITY CHARGE (IMPUTED)' IPDSF09X='DOCTOR AMOUNT PD, FAMILY (IMPUTED)' IPDMR09X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' IPDMD09X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' IPDPV09X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' IPDVA09X='DR AMT PD,VETERANS/CHAMPVA(IMPUTED)' IPDTR09X='DOCTOR AMT PD,TRICARE(IMPUTED)' IPDOF09X='DOCTOR AMT PD, OTH FEDERAL (IMPUTED)' IPDSL09X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' IPDWC09X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' IPDOR09X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' IPDOU09X='DOCTOR AMT PD, OTH PUB (IMPUTED)' IPDOT09X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' IPDXP09X='DOCTOR SUM PAYMENTS IPDSF09X-IPDOT09X' IPDTC09X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT09F='EXPENDITURE FILE PERSON WEIGHT, 2009' VARSTR ='VARIANCE ESTIMATION STRATUM, 2009' VARPSU ='VARIANCE ESTIMATION PSU, 2009' ; * VALUE STATEMENTS; VALUE ANYOPERF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE DLVRTYPF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 VAGINAL DELIVERY' 2 = '2 CAESAREAN SECTION' ; VALUE DSCHPMEF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE DUID OTHER = 'VALID ID' ; VALUE $DUPERS OTHER = 'VALID ID' ; VALUE EMERROOF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE EPIDURLF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE $ERHEIDF '-1' = '-1 INAPPLICABLE' OTHER = 'VALID ID' ; VALUE EVENTRNF 1 = 'ROUND 1' 2 = 'ROUND 2' 3 = 'ROUND 3' 4 = 'ROUND 4' 5 = 'ROUND 5' ; VALUE $EVNTIDX OTHER = 'VALID ID' ; VALUE $FFEEIDX '-1' = '-1 INAPPLICABLE' OTHER = 'VALID ID' ; VALUE FFIPTYPF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 FLAT FEE STEM' 2 = '2 FLAT FEE LEAF' ; VALUE IMPFLAGF 0 = '0 NOT ELIGIBLE FOR IMPUTATION' 1 = '1 COMPLETE HC DATA' 2 = '2 COMPLETE MPC DATA' 3 = '3 FULLY IMPUTED' 4 = '4 PARTIALLY IMPUTED' 5 = '5 CAPITATION IMPUTATION' ; VALUE IPBEGDDF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 31 = '1 - 31 DAY' ; VALUE IPBEGMMF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 12 = '1 - 12 MONTH' ; VALUE IPBEGYRF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 2008 = '2008' 2009 = '2009' ; VALUE $IPCCC1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '670' = '650-670' ; VALUE $IPCCC2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '670' = '650-670' ; VALUE $IPCCC3X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '670' = '650-670' ; VALUE $IPCCC4X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '670' = '650-670' ; VALUE IPDMD09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.33 - 94.16 = '$0.33 - $94.16' 94.17 - 270.69 = '$94.17 - $270.69' 270.7 - 945.17 = '$270.70 - $945.17' 945.18 - 30282.04 = '$945.18 - $30,282.04' ; VALUE IPDMR09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2 - 237.49 = '$2.00 - $237.49' 237.5 - 569.33 = '$237.50 - $569.33' 569.34 - 1316.5 = '$569.34 - $1,316.50' 1316.51 - 51120.86 = '$1,316.51 - $51,120.86' ; VALUE IPDOF09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1205.1 - 2023.98 = '$1,205.10 - $2,023.98' ; VALUE IPDOR09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.11 - 88.58 = '$2.11 - $88.58' 88.59 - 308.94 = '$88.59 - $308.94' 308.95 - 897.3 = '$308.95 - $897.30' 897.31 - 26481.36 = '$897.31 - $26,481.36' ; VALUE IPDOT09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.83 - 119.96 = '$1.83 - $119.96' 119.97 - 285 = '$119.97 - $285.00' 285.01 - 1012.85 = '$285.01 - $1,012.85' 1012.86 - 18689.39 = '$1,012.86 - $18,689.39' ; VALUE IPDOU09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2 - 108.36 = '$2.00 - $108.36' 108.37 - 294.01 = '$108.37 - $294.01' 294.02 - 797.43 = '$294.02 - $797.43' 797.44 - 16838.22 = '$797.44 - $16,838.22' ; VALUE IPDPV09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.71 - 213.79 = '$1.71 - $213.79' 213.8 - 706.91 = '$213.80 - $706.91' 706.92 - 2066.77 = '$706.92 - $2,066.77' 2066.78 - 26481.36 = '$2,066.78 - $26,481.36' ; VALUE IPDSF09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.06 - 31 = '$0.06 - $31.00' 31.01 - 115 = '$31.01 - $115.00' 115.01 - 360.83 = '$115.01 - $360.83' 360.84 - 4986.8 = '$360.84 - $4,986.80' ; VALUE IPDSL09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 22.58 - 172.31 = '$22.58 - $172.31' 172.32 - 434.5 = '$172.32 - $434.50' 434.51 - 923.03 = '$434.51 - $923.03' 923.04 - 9760.03 = '$923.04 - $9,760.03' ; VALUE IPDTC09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 11.73 - 766 = '$11.73 - $766.00' 766.01 - 2150 = '$766.01 - $2,150.00' 2150.01 - 4943 = '$2,150.01 - $4,943.00' 4943.01 - 121175.63 = '$4,943.01 - $121,175.63' ; VALUE IPDTR09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6.24 - 90.31 = '$6.24 - $90.31' 90.32 - 311.86 = '$90.32 - $311.86' 311.87 - 1051.85 = '$311.87 - $1,051.85' 1051.86 - 8910.23 = '$1,051.86 - $8,910.23' ; VALUE IPDVA09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.86 - 71.03 = '$8.86 - $71.03' 71.04 - 182.38 = '$71.04 - $182.38' 182.39 - 1478.6 = '$182.39 - $1,478.60' 1478.61 - 6106.59 = '$1,478.61 - $6,106.59' ; VALUE IPDWC09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2 - 158.17 = '$2.00 - $158.17' 158.18 - 1641.94 = '$158.18 - $1,641.94' 1641.95 - 3651.57 = '$1,641.95 - $3,651.57' 3651.58 - 10181.14 = '$3,651.58 - $10,181.14' ; VALUE IPDXP09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6.94 - 302.47 = '$6.94 - $302.47' 302.48 - 819.1 = '$302.48 - $819.10' 819.11 - 1927.04 = '$819.11 - $1,927.04' 1927.05 - 51120.86 = '$1,927.05 - $51,120.86' ; VALUE IPENDDF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 31 = '1 - 31 DAY' ; VALUE IPENDMMF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 12 = '1 - 12 MONTH' ; VALUE IPENDYRF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 2009 = '2009' ; VALUE IPFMD09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.71 - 1193.37 = '$1.71 - $1,193.37' 1193.38 - 3341.31 = '$1,193.38 - $3,341.31' 3341.32 - 6575.31 = '$3,341.32 - $6,575.31' 6575.32 - 215940.37 = '$6,575.32 - $215,940.37' ; VALUE IPFMR09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 11.35 - 3481.82 = '$11.35 - $3,481.82' 3481.83 - 6815.8 = '$3,481.83 - $6,815.80' 6815.81 - 11490.85 = '$6,815.81 - $11,490.85' 11490.86 - 292535.63 = '$11,490.86 - $292,535.63' ; VALUE IPFOF09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1064.22 - 2989.54 = '$1,064.22 - $2,989.54' 2989.55 - 4538.72 = '$2,989.55 - $4,538.72' 4538.73 - 9798.39 = '$4,538.73 - $9,798.39' 9798.4 - 53012.84 = '$9,798.40 - $53,012.84' ; VALUE IPFOR09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.71 - 982.71 = '$1.71 - $982.71' 982.72 - 1074.93 = '$982.72 - $1,074.93' 1074.94 - 4710.83 = '$1,074.94 - $4,710.83' 4710.84 - 54450 = '$4,710.84 - $54,450.00' ; VALUE IPFOT09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 70.99 - 3024.22 = '$70.99 - $3,024.22' 3024.23 - 6936.22 = '$3,024.23 - $6,936.22' 6936.23 - 11457.62 = '$6,936.23 - $11,457.62' 11457.63 - 91255.39 = '$11,457.63 - $91,255.39' ; VALUE IPFOU09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 24.17 - 1641.84 = '$24.17 - $1,641.84' 1641.85 - 3518.62 = '$1,641.85 - $3,518.62' 3518.63 - 6788.15 = '$3,518.63 - $6,788.15' 6788.16 - 146067.65 = '$6,788.16 - $146,067.65' ; VALUE IPFPV09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.75 - 1324 = '$1.75 - $1,324.00' 1324.01 - 4704.69 = '$1,324.01 - $4,704.69' 4704.7 - 10559.12 = '$4,704.70 - $10,559.12' 10559.13 - 282254.71 = '$10,559.13 - $282,254.71' ; VALUE IPFSF09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.03 - 100 = '$0.03 - $100.00' 100.01 - 325 = '$100.01 - $325.00' 325.01 - 1068 = '$325.01 - $1,068.00' 1068.01 - 92690.77 = '$1,068.01 - $92,690.77' ; VALUE IPFSL09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.54 - 1402 = '$8.54 - $1,402.00' 1402.01 - 3166.62 = '$1,402.01 - $3,166.62' 3166.63 - 13160.45 = '$3,166.63 - $13,160.45' 13160.46 - 102558.85 = '$13,160.46 - $102,558.85' ; VALUE IPFTC09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 16.25 - 8252.75 = '$16.25 - $8,252.75' 8252.76 - 16361.21 = '$8,252.76 - $16,361.21' 16361.22 - 33538.36 = '$16,361.22 - $33,538.36' 33538.37 - 674184.19 = '$33,538.37 - $674,184.19' ; VALUE IPFTR09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 11.82 - 1063.16 = '$11.82 - $1,063.16' 1063.17 - 1661.74 = '$1,063.17 - $1,661.74' 1661.75 - 4281.34 = '$1,661.75 - $4,281.34' 4281.35 - 40920.5 = '$4,281.35 - $40,920.50' ; VALUE IPFVA09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.38 - 1890.24 = '$3.38 - $1,890.24' 1890.25 - 3779.29 = '$1,890.25 - $3,779.29' 3779.3 - 9287.23 = '$3,779.30 - $9,287.23' 9287.24 - 64495.67 = '$9,287.24 - $64,495.67' ; VALUE IPFWC09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 82.18 - 2845.19 = '$82.18 - $2,845.19' 2845.2 - 7659.28 = '$2,845.20 - $7,659.28' 7659.29 - 19904.78 = '$7,659.29 - $19,904.78' 19904.79 - 36845.76 = '$19,904.79 - $36,845.76' ; VALUE IPFXP09F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 3136.88 = '$1.00 - $3,136.88' 3136.89 - 6049.65 = '$3,136.89 - $6,049.65' 6049.66 - 11639.85 = '$6,049.66 - $11,639.85' 11639.86 - 292535.63 = '$11,639.86 - $292,535.63' ; VALUE $IPICD1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '139' = '001 - 139' '140' - '239' = '140 - 239' '240' - '279' = '240 - 279' '280' - '289' = '280 - 289' '290' - '319' = '290 - 319' '320' - '389' = '320 - 389' '390' - '459' = '390 - 459' '460' - '519' = '460 - 519' '520' - '579' = '520 - 579' '580' - '629' = '580 - 629' '630' - '677' = '630 - 677' '680' - '709' = '680 - 709' '710' - '739' = '710 - 739' '740' - '759' = '740 - 759' '760' - '779' = '760 - 779' '780' - '799' = '780 - 799' '800' - '999' = '800 - 999' 'V01' - 'V83' = 'V01 - V83' ; VALUE $IPICD2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '139' = '001 - 139' '140' - '239' = '140 - 239' '240' - '279' = '240 - 279' '280' - '289' = '280 - 289' '290' - '319' = '290 - 319' '320' - '389' = '320 - 389' '390' - '459' = '390 - 459' '460' - '519' = '460 - 519' '520' - '579' = '520 - 579' '580' - '629' = '580 - 629' '630' - '677' = '630 - 677' '680' - '709' = '680 - 709' '710' - '739' = '710 - 739' '740' - '759' = '740 - 759' '760' - '779' = '760 - 779' '780' - '799' = '780 - 799' '800' - '999' = '800 - 999' 'V01' - 'V83' = 'V01 - V83' ; VALUE $IPICD3X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '139' = '001 - 139' '140' - '239' = '140 - 239' '240' - '279' = '240 - 279' '280' - '289' = '280 - 289' '290' - '319' = '290 - 319' '320' - '389' = '320 - 389' '390' - '459' = '390 - 459' '460' - '519' = '460 - 519' '520' - '579' = '520 - 579' '580' - '629' = '580 - 629' '630' - '677' = '630 - 677' '680' - '709' = '680 - 709' '710' - '739' = '710 - 739' '740' - '759' = '740 - 759' '760' - '779' = '760 - 779' '780' - '799' = '780 - 799' '800' - '999' = '800 - 999' 'V01' - 'V83' = 'V01 - V83' ; VALUE $IPICD4X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '139' = '001 - 139' '140' - '239' = '140 - 239' '240' - '279' = '240 - 279' '280' - '289' = '280 - 289' '290' - '319' = '290 - 319' '320' - '389' = '320 - 389' '390' - '459' = '390 - 459' '460' - '519' = '460 - 519' '520' - '579' = '520 - 579' '580' - '629' = '580 - 629' '630' - '677' = '630 - 677' '680' - '709' = '680 - 709' '710' - '739' = '710 - 739' '740' - '759' = '740 - 759' '760' - '779' = '760 - 779' '780' - '799' = '780 - 799' '800' - '999' = '800 - 999' 'V01' - 'V83' = 'V01 - V83' ; VALUE $IPPRO1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '00' - '05' = '00 - 05' '06' - '07' = '06 - 07' '08' - '16' = '08 - 16' '18' - '20' = '18 - 20' '21' - '29' = '21 - 29' '30' - '34' = '30 - 34' '35' - '39' = '35 - 39' '40' - '41' = '40 - 41' '42' - '54' = '42 - 54' '55' - '59' = '55 - 59' '60' - '64' = '60 - 64' '65' - '71' = '65 - 71' '72' - '75' = '72 - 75' '76' - '84' = '76 - 84' '85' - '86' = '85 - 86' '87' - '99' = '87 - 99' ; VALUE $IPPRO2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '00' - '05' = '00 - 05' '06' - '07' = '06 - 07' '08' - '16' = '08 - 16' '18' - '20' = '18 - 20' '21' - '29' = '21 - 29' '30' - '34' = '30 - 34' '35' - '39' = '35 - 39' '40' - '41' = '40 - 41' '42' - '54' = '42 - 54' '55' - '59' = '55 - 59' '60' - '64' = '60 - 64' '65' - '71' = '65 - 71' '72' - '75' = '72 - 75' '76' - '84' = '76 - 84' '85' - '86' = '85 - 86' '87' - '99' = '87 - 99' ; VALUE IPTC09XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 16.25 - 9831 = '$16.25 - $9,831.00' 9831.01 - 19443.88 = '$9,831.01 - $19,443.88' 19443.89 - 37904.09 = '$19,443.89 - $37,904.09' 37904.1 - 680975.19 = '$37,904.10 - $680,975.19' ; VALUE IPXP09XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.96 - 3680.66 = '$5.96 - $3,680.66' 3680.67 - 7084.28 = '$3,680.67 - $7,084.28' 7084.29 - 13347.08 = '$7,084.29 - $13,347.08' 13347.09 - 294472.63 = '$13,347.09 - $294,472.63' ; VALUE MPCDATAF 1 = '1 HAS MPC DATA' 2 = '2 NO MPC DATA' ; VALUE NUMNIGHF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 60 = '1 - 60 NUMBER OF NIGHTS' ; VALUE NUMNIGHX (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0 NUMBER OF NIGHTS' 1 - 213 = '1 - 213 NUMBER OF NIGHTS' ; VALUE PANELF 13 = 'PANEL 13' 14 = 'PANEL 14' ; VALUE PERWT09F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 501.878666 - 61137.083518 = '501.878666 - 61137.083518 WEIGHT' ; VALUE PID OTHER = 'VALID ID' ; VALUE RSNINHOF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 OPERATION OR SURGICAL PROCEDURE' 2 = '2 TREATMENT/THERAPY' 3 = '3 DIAGNOSTIC TESTS ONLY' 4 = '4 GIVE BIRTH TO A BABY (MOTHER)' 5 = '5 TO BE BORN (BABY)' 6 = '6 PREGNANCY-RELATED COMPLICATIONS' 91 = '91 OTHER (SPECIFY)' ; VALUE SPECCONF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE VARPSUF (DEFAULT=40) 1 - 3 = '1 - 3' ; VALUE VARSTRF (DEFAULT=40) 1001 - 1165 = '1,001 - 1,165' ;