SAS User File for H135D 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 (H135D.SSP) or the ASCII data file (H135D.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\H135D.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.H135D; TITLE 'List of Variables in MEPS H135D SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H135D (OBS=20); TITLE 'First 20 Observations in MEPS H135D 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) H135D 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 H135D.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file H135D.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 H135D.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 H135D.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\H135D.DAT'; DATA PUFLIB.H135D; INFILE IN1 LRECL=378; 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 (H135D). In the example, after the successful completion of the DATA step, a PC file named H135D.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 (378 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 H135D.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., 378 for H135D.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (380 for H135D.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 (378 for H135D.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 (H135D.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.H135D; 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 H135D.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=378; 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 IPXP10X 9.2 @131 IPTC10X 9.2 @140 IPFSF10X 8.2 @148 IPFMR10X 9.2 @157 IPFMD10X 9.2 @166 IPFPV10X 9.2 @175 IPFVA10X 8.2 @183 IPFTR10X 8.2 @191 IPFOF10X 8.2 @199 IPFSL10X 8.2 @207 IPFWC10X 8.2 @215 IPFOR10X 8.2 @223 IPFOU10X 8.2 @231 IPFOT10X 8.2 @239 IPFXP10X 9.2 @248 IPFTC10X 9.2 @257 IPDSF10X 8.2 @265 IPDMR10X 8.2 @273 IPDMD10X 8.2 @281 IPDPV10X 8.2 @289 IPDVA10X 7.2 @296 IPDTR10X 7.2 @303 IPDOF10X 4.2 @307 IPDSL10X 7.2 @314 IPDWC10X 8.2 @322 IPDOR10X 8.2 @330 IPDOU10X 7.2 @337 IPDOT10X 7.2 @344 IPDXP10X 8.2 @352 IPDTC10X 9.2 @361 IMPFLAG 1.0 @362 PERWT10F 12.6 @374 VARSTR 4.0 @378 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. IPXP10X IPXP10XF. IPTC10X IPTC10XF. IPFSF10X IPFSF10F. IPFMR10X IPFMR10F. IPFMD10X IPFMD10F. IPFPV10X IPFPV10F. IPFVA10X IPFVA10F. IPFTR10X IPFTR10F. IPFOF10X IPFOF10F. IPFSL10X IPFSL10F. IPFWC10X IPFWC10F. IPFOR10X IPFOR10F. IPFOU10X IPFOU10F. IPFOT10X IPFOT10F. IPFXP10X IPFXP10F. IPFTC10X IPFTC10F. IPDSF10X IPDSF10F. IPDMR10X IPDMR10F. IPDMD10X IPDMD10F. IPDPV10X IPDPV10F. IPDVA10X IPDVA10F. IPDTR10X IPDTR10F. IPDOF10X IPDOF10F. IPDSL10X IPDSL10F. IPDWC10X IPDWC10F. IPDOR10X IPDOR10F. IPDOU10X IPDOU10F. IPDOT10X IPDOT10F. IPDXP10X IPDXP10F. IPDTC10X IPDTC10F. IMPFLAG IMPFLAGF. PERWT10F PERWT10F. 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' IPXP10X ='TOT EXP FOR EVENT (IPFXP10X+IPDXP10X)' IPTC10X ='TOTAL CHG FOR EVENT (IPFTC10X+IPDTC10X)' IPFSF10X='FACILITY AMT PD, FAMILY (IMPUTED)' IPFMR10X='FACILITY AMT PD, MEDICARE (IMPUTED)' IPFMD10X='FACILITY AMT PD, MEDICAID (IMPUTED)' IPFPV10X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' IPFVA10X='FAC AMT PD,VETERANS/CHAMPVA(IMPUTED)' IPFTR10X='FACILITY AMT PD,TRICARE(IMPUTED)' IPFOF10X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' IPFSL10X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' IPFWC10X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' IPFOR10X='FACILITY AMT PD, OTH PRIV (IMPUTED)' IPFOU10X='FACILITY AMT PD, OTH PUB (IMPUTED)' IPFOT10X='FACILITY AMT PD, OTH INSUR (IMPUTED)' IPFXP10X='FACILITY SUM PAYMENTS IPFSF10X-IPFOT10X' IPFTC10X='TOTAL FACILITY CHARGE (IMPUTED)' IPDSF10X='DOCTOR AMOUNT PD, FAMILY (IMPUTED)' IPDMR10X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' IPDMD10X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' IPDPV10X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' IPDVA10X='DR AMT PD,VETERANS/CHAMPVA(IMPUTED)' IPDTR10X='DOCTOR AMT PD,TRICARE(IMPUTED)' IPDOF10X='DOCTOR AMT PD, OTH FEDERAL (IMPUTED)' IPDSL10X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' IPDWC10X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' IPDOR10X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' IPDOU10X='DOCTOR AMT PD, OTH PUB (IMPUTED)' IPDOT10X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' IPDXP10X='DOCTOR SUM PAYMENTS IPDSF10X-IPDOT10X' IPDTC10X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT10F='EXPENDITURE FILE PERSON WEIGHT, 2010' VARSTR ='VARIANCE ESTIMATION STRATUM, 2010' VARPSU ='VARIANCE ESTIMATION PSU, 2010' ; * 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' 2009 = '2009' 2010 = '2010' ; 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 IPDMD10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.89 - 97.97 = '$0.89 - $97.97' 97.98 - 352.58 = '$97.98 - $352.58' 352.59 - 956.3 = '$352.59 - $956.30' 956.31 - 17343.37 = '$956.31 - $17,343.37' ; VALUE IPDMR10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.06 - 266.66 = '$2.06 - $266.66' 266.67 - 672.39 = '$266.67 - $672.39' 672.4 - 1447.66 = '$672.40 - $1,447.66' 1447.67 - 52654.49 = '$1,447.67 - $52,654.49' ; VALUE IPDOF10F -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 99999999.99 = '.01 - 99999999.99' ; VALUE IPDOR10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.09 - 75.43 = '$2.09 - $75.43' 75.44 - 267.2 = '$75.44 - $267.20' 267.21 - 867.56 = '$267.21 - $867.56' 867.57 - 15817.48 = '$867.57 - $15,817.48' ; VALUE IPDOT10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.88 - 87.48 = '$1.88 - $87.48' 87.49 - 293.55 = '$87.49 - $293.55' 293.56 - 739.99 = '$293.56 - $739.99' 740 - 6889.62 = '$740.00 - $6,889.62' ; VALUE IPDOU10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.6 - 89.67 = '$1.60 - $89.67' 89.68 - 427.92 = '$89.68 - $427.92' 427.93 - 1118.45 = '$427.93 - $1,118.45' 1118.46 - 8025.82 = '$1,118.46 - $8,025.82' ; VALUE IPDPV10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.89 - 252.12 = '$0.89 - $252.12' 252.13 - 874.88 = '$252.13 - $874.88' 874.89 - 2138.7 = '$874.89 - $2,138.70' 2138.71 - 33282.07 = '$2,138.71 - $33,282.07' ; VALUE IPDSF10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 36.28 = '$1.00 - $36.28' 36.29 - 120.29 = '$36.29 - $120.29' 120.3 - 413.56 = '$120.30 - $413.56' 413.57 - 12030 = '$413.57 - $12,030.00' ; VALUE IPDSL10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 9.44 - 165.25 = '$9.44 - $165.25' 165.26 - 372.6 = '$165.26 - $372.60' 372.61 - 766.07 = '$372.61 - $766.07' 766.08 - 2055.18 = '$766.08 - $2,055.18' ; VALUE IPDTC10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 7.88 - 888.27 = '$7.88 - $888.27' 888.28 - 2460 = '$888.28 - $2,460.00' 2460.01 - 5403.4 = '$2,460.01 - $5,403.40' 5403.41 - 124810.9 = '$5,403.41 - $124,810.90' ; VALUE IPDTR10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.8 - 165.24 = '$1.80 - $165.24' 165.25 - 398.97 = '$165.25 - $398.97' 398.98 - 1136.83 = '$398.98 - $1,136.83' 1136.84 - 3822.21 = '$1,136.84 - $3,822.21' ; VALUE IPDVA10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 13.37 - 110.97 = '$13.37 - $110.97' 110.98 - 290 = '$110.98 - $290.00' 290.01 - 680 = '$290.01 - $680.00' 680.01 - 2024.28 = '$680.01 - $2,024.28' ; VALUE IPDWC10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 9.07 - 27275.8 = '$9.07 - $27,275.80' ; VALUE IPDXP10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.14 - 378.16 = '$3.14 - $378.16' 378.17 - 949.17 = '$378.17 - $949.17' 949.18 - 2057.15 = '$949.18 - $2,057.15' 2057.16 - 52654.49 = '$2,057.16 - $52,654.49' ; 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' 2010 = '2010' ; VALUE IPFMD10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.02 - 1506.07 = '$0.02 - $1,506.07' 1506.08 - 3754.02 = '$1,506.08 - $3,754.02' 3754.03 - 6722.93 = '$3,754.03 - $6,722.93' 6722.94 - 132986.12 = '$6,722.94 - $132,986.12' ; VALUE IPFMR10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.66 - 3285.22 = '$1.66 - $3,285.22' 3285.23 - 6824.05 = '$3,285.23 - $6,824.05' 6824.06 - 12499.05 = '$6,824.06 - $12,499.05' 12499.06 - 127677.85 = '$12,499.06 - $127,677.85' ; VALUE IPFOF10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3396.36 - 18415.27 = '$3,396.36 - $18,415.27' ; VALUE IPFOR10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.74 - 880 = '$1.74 - $880.00' 880.01 - 1100 = '$880.01 - $1,100.00' 1100.01 - 5763.85 = '$1,100.01 - $5,763.85' 5763.86 - 58451.28 = '$5,763.86 - $58,451.28' ; VALUE IPFOT10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.65 - 2341.53 = '$2.65 - $2,341.53' 2341.54 - 8316.94 = '$2,341.54 - $8,316.94' 8316.95 - 17919.57 = '$8,316.95 - $17,919.57' 17919.58 - 64702.17 = '$17,919.58 - $64,702.17' ; VALUE IPFOU10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 245.66 - 2587.67 = '$245.66 - $2,587.67' 2587.68 - 4622.35 = '$2,587.68 - $4,622.35' 4622.36 - 9958.01 = '$4,622.36 - $9,958.01' 9958.02 - 76873.79 = '$9,958.02 - $76,873.79' ; VALUE IPFPV10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 1137.5 = '$0.01 - $1,137.50' 1137.51 - 4792 = '$1,137.51 - $4,792.00' 4792.01 - 10893.59 = '$4,792.01 - $10,893.59' 10893.6 - 317739.39 = '$10,893.60 - $317,739.39' ; VALUE IPFSF10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.8 - 103 = '$0.80 - $103.00' 103.01 - 300 = '$103.01 - $300.00' 300.01 - 983.13 = '$300.01 - $983.13' 983.14 - 40099.05 = '$983.14 - $40,099.05' ; VALUE IPFSL10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.5 - 858.06 = '$2.50 - $858.06' 858.07 - 5502.33 = '$858.07 - $5,502.33' 5502.34 - 11008.8 = '$5,502.34 - $11,008.80' 11008.81 - 64702.17 = '$11,008.81 - $64,702.17' ; VALUE IPFTC10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 29 - 9179.28 = '$29.00 - $9,179.28' 9179.29 - 17944.63 = '$9,179.29 - $17,944.63' 17944.64 - 36818.69 = '$17,944.64 - $36,818.69' 36818.7 - 790522.24 = '$36,818.70 - $790,522.24' ; VALUE IPFTR10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.8 - 1021.19 = '$8.80 - $1,021.19' 1021.2 - 1154.69 = '$1,021.20 - $1,154.69' 1154.7 - 3821.49 = '$1,154.70 - $3,821.49' 3821.5 - 36829.47 = '$3,821.50 - $36,829.47' ; VALUE IPFVA10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 431.3 - 3237.13 = '$431.30 - $3,237.13' 3237.14 - 5513.2 = '$3,237.14 - $5,513.20' 5513.21 - 11705.66 = '$5,513.21 - $11,705.66' 11705.67 - 57453.4 = '$11,705.67 - $57,453.40' ; VALUE IPFWC10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 361.7 - 78000 = '$361.70 - $78,000.00' ; VALUE IPFXP10F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.02 - 3272.67 = '$0.02 - $3,272.67' 3272.68 - 6179.78 = '$3,272.68 - $6,179.78' 6179.79 - 12274.58 = '$6,179.79 - $12,274.58' 12274.59 - 317739.39 = '$12,274.59 - $317,739.39' ; 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 IPTC10XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 26 - 10905.51 = '$26.00 - $10,905.51' 10905.52 - 21325.2 = '$10,905.52 - $21,325.20' 21325.21 - 42351.34 = '$21,325.21 - $42,351.34' 42351.35 - 791962.24 = '$42,351.35 - $791,962.24' ; VALUE IPXP10XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.36 - 3757.7 = '$2.36 - $3,757.70' 3757.71 - 7205.46 = '$3,757.71 - $7,205.46' 7205.47 - 13855.61 = '$7,205.47 - $13,855.61' 13855.62 - 318118.84 = '$13,855.62 - $318,118.84' ; 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 - 86 = '1 - 86 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 - 203 = '1 - 203 NUMBER OF NIGHTS' ; VALUE PANELF 14 = 'PANEL 14' 15 = 'PANEL 15' ; VALUE PERWT10F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 1201.51082 - 67520.556824 = '1201.510820 - 67520.556824 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' ;