SAS User File for H67D 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 (H67D.SSP) or the ASCII data file (H67D.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. ****************************************************************************** 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 data 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 PC-SAS program that can be used to convert the SAS transport file to a permanent PC SAS dataset (in a Windows environment, with SAS V6.12). LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\MEPS\H67D.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT; RUN; If the user wants a list of variables and a few sample records in the permanent SAS dataset, following are the SAS statements to accomplish these. PROC CONTENTS DATA=PUFLIB.H67D; TITLE 'List of Variables in MEPS H67D SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H67D (OBS=20); TITLE 'First 20 Observations in MEPS H67D 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) 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, MAC/OS, VMS, or OS/2. 3) H67D 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 H67D.SAS7BDAT will be created under the C:\MEPS directory when PROC XCOPY runs successfully. 4) The SAS transport file H67D.SSP was created from a PC-SAS Version 6.12 data file, using PROC COPY. This file has been tested for use with PC-SAS version 6.10 or higher, or with mainframe SAS version 6.08 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 H67D.DAT to a SAS data set as described in Section B. ADDITIONAL NOTE TO USERS OF SAS VERSION 8: One of the following procedures should be used to avoid a SAS error when using the downloaded SAS Transport file: 1) Add V8 to LIBNAME statement - e.g., LIBNAME PUFLIB V8 'C:\MEPS'; OR 2) Output the SAS data set to a different library than the one which contains the downloaded SAS Transport file - e.g., LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\DOWNLOAD\H67D.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT RUN; 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 H67D.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'; FILENAME IN1 'C:\MEPS\H67D.DAT'; DATA PUFLIB.H67D; INFILE IN1 LRECL=377; 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 describes the output SAS dataset, referencing the LIBNAME entry (PUFLIB) and assigning an internal SAS dataset name (H67D). In the example, after the successful completion of the DATA step, a PC file named H67D.SAS7BDAT would have been created in the C:\MEPS 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 (377 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 H67D.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., 377 for H67D.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (379 for H67D.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 (377 for H67D.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 (H67D.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. ADDITIONAL NOTE TO USERS OF SAS VERSION 8: One of the following procedures should be used to avoid a SAS error when using the downloaded ASCII data file: 1) Add V8 to LIBNAME statement - e.g., LIBNAME PUFLIB V8 'C:\MEPS'; OR 2) Output the SAS data set to a different library than the one which contains the downloaded SAS Transport file - e.g., LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\DOWNLOAD\H67D.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT RUN; 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'; 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'; OPTIONS FMTSEARCH=(PUFLIB); PROC FREQ DATA=PUFLIB.H67D; TABLES .... / LIST MISSING; FORMAT varnam1 fmtnam1. Varnam2 fmtnam2. .... ; * to user: substitute varnami and fmtnami 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 libraries (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 will generate 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 type 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 data set 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 H67D.DAT file into a SAS data set, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=377; 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 MPCDATA 1.0 @55 IPBEGYR 4.0 @59 IPBEGMM 2.0 @61 IPBEGDD 2.0 @63 IPENDYR 4.0 @67 IPENDMM 2.0 @69 IPENDDD 2.0 @71 NUMNIGHX 3.0 @74 NUMNIGHT 3.0 @77 EMERROOM 2.0 @79 SPECCOND 2.0 @81 RSNINHOS 2.0 @83 ANYOPER 2.0 @85 VAPLACE 1.0 @86 IPICD1X $3.0 @89 IPICD2X $3.0 @92 IPICD3X $3.0 @95 IPICD4X $3.0 @98 IPPRO1X $2.0 @100 IPPRO2X $2.0 @102 IPCCC1X $3.0 @105 IPCCC2X $3.0 @108 IPCCC3X $3.0 @111 IPCCC4X $3.0 @114 DSCHPMED 2.0 @116 FFIPTYPE 2.0 @118 FFBEF02 2.0 @120 IPXP02X 9.2 @129 IPTC02X 9.2 @138 IPFSF02X 8.2 @146 IPFMR02X 9.2 @155 IPFMD02X 9.2 @164 IPFPV02X 9.2 @173 IPFVA02X 9.2 @182 IPFTR02X 9.2 @191 IPFOF02X 8.2 @199 IPFSL02X 8.2 @207 IPFWC02X 8.2 @215 IPFOR02X 9.2 @224 IPFOU02X 8.2 @232 IPFOT02X 8.2 @240 IPFXP02X 9.2 @249 IPFTC02X 9.2 @258 IPDSF02X 7.2 @265 IPDMR02X 8.2 @273 IPDMD02X 7.2 @280 IPDPV02X 8.2 @288 IPDVA02X 6.2 @294 IPDTR02X 7.2 @301 IPDOF02X 6.2 @307 IPDSL02X 7.2 @314 IPDWC02X 8.2 @322 IPDOR02X 8.2 @330 IPDOU02X 7.2 @337 IPDOT02X 7.2 @344 IPDXP02X 8.2 @352 IPDTC02X 9.2 @361 IMPFLAG 1.0 @362 PERWT02F 12.6 @374 VARSTR 3.0 @377 VARPSU 1.0 ; * FORMAT STATEMENTS; FORMAT DUID DUID. PID PID. DUPERSID $DUPERS. EVNTIDX $EVNTIDX. EVENTRN EVENTRNF. ERHEVIDX $ERHEIDF. FFEEIDX $FFEEIDX. MPCDATA MPCDATAF. IPBEGYR IPBEGYRF. IPBEGMM IPBEGMMF. IPBEGDD IPBEGDDF. IPENDYR IPENDYRF. IPENDMM IPENDMMF. IPENDDD IPENDDF. NUMNIGHX NUMNIGHX. NUMNIGHT NUMNIGHF. EMERROOM EMERROOF. SPECCOND SPECCONF. RSNINHOS RSNINHOF. ANYOPER ANYOPERF. VAPLACE VAPLACEF. IPICD1X $IPICD1X. IPICD2X $IPICD2X. IPICD3X $IPICD3X. IPICD4X $IPICD4X. IPPRO1X $IPPRO1X. IPPRO2X $IPPRO2X. IPCCC1X $IPCCC1X. IPCCC2X $IPCCC2X. IPCCC3X $IPCCC3X. IPCCC4X $IPCCC4X. DSCHPMED DSCHPMEF. FFIPTYPE FFIPTYPF. FFBEF02 FFBEF02F. IPXP02X IPXP02XF. IPTC02X IPTC02XF. IPFSF02X IPFSF02F. IPFMR02X IPFMR02F. IPFMD02X IPFMD02F. IPFPV02X IPFPV02F. IPFVA02X IPFVA02F. IPFTR02X IPFTR02F. IPFOF02X IPFOF02F. IPFSL02X IPFSL02F. IPFWC02X IPFWC02F. IPFOR02X IPFOR02F. IPFOU02X IPFOU02F. IPFOT02X IPFOT02F. IPFXP02X IPFXP02F. IPFTC02X IPFTC02F. IPDSF02X IPDSF02F. IPDMR02X IPDMR02F. IPDMD02X IPDMD02F. IPDPV02X IPDPV02F. IPDVA02X IPDVA02F. IPDTR02X IPDTR02F. IPDOF02X IPDOF02F. IPDSL02X IPDSL02F. IPDWC02X IPDWC02F. IPDOR02X IPDOR02F. IPDOU02X IPDOU02F. IPDOT02X IPDOT02F. IPDXP02X IPDXP02F. IPDTC02X IPDTC02F. IMPFLAG IMPFLAGF. PERWT02F PERWT02F. 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' 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' ANYOPER ='ANY OPERATIONS OR SURGERIES PERFORMED' VAPLACE ='VA FACILITY FLAG' 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' FFBEF02 ='TOTAL # OF VISITS IN FF BEFORE 2002' IPXP02X ='TOT EXP FOR EVENT (IPFXP02X+IPDXP02X)' IPTC02X ='TOTAL CHG FOR EVENT (IPFTC02X+IPDTC02X)' IPFSF02X='FACILITY AMT PD, FAMILY (IMPUTED)' IPFMR02X='FACILITY AMT PD, MEDICARE (IMPUTED)' IPFMD02X='FACILITY AMT PD, MEDICAID (IMPUTED)' IPFPV02X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' IPFVA02X='FACILITY AMT PD, VETERANS (IMPUTED)' IPFTR02X='FACILITY AMT PD, TRICARE (IMPUTED)' IPFOF02X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' IPFSL02X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' IPFWC02X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' IPFOR02X='FACILITY AMT PD, OTH PRIV (IMPUTED)' IPFOU02X='FACILITY AMT PD, OTH PUB (IMPUTED)' IPFOT02X='FACILITY AMT PD, OTH INSUR (IMPUTED)' IPFXP02X='FACILITY SUM PAYMENTS IPFSF02X-IPFOT02X' IPFTC02X='TOTAL FACILITY CHARGE (IMPUTED)' IPDSF02X='DOCTOR AMOUNT PD, FAMILY (IMPUTED)' IPDMR02X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' IPDMD02X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' IPDPV02X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' IPDVA02X='DOCTOR AMOUNT PD, VETERANS (IMPUTED)' IPDTR02X='DOCTOR AMOUNT PD, TRICARE (IMPUTED)' IPDOF02X='DOCTOR AMT PD, OTH FEDERAL (IMPUTED)' IPDSL02X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' IPDWC02X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' IPDOR02X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' IPDOU02X='DOCTOR AMT PD, OTH PUB (IMPUTED)' IPDOT02X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' IPDXP02X='DOCTOR SUM PAYMENTS IPDSF02X-IPDOT02X' IPDTC02X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT02F='EXPENDITURE FILE PERSON WEIGHT, 2002' VARSTR ='VARIANCE ESTIMATION STRATUM, 2002' VARPSU ='VARIANCE ESTIMATION PSU, 2002' ; * VALUE STATEMENTS; VALUE ANYOPERF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; 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 $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 FFBEF02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' 2 = '2' ; 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' 2001 = '2001' 2002 = '2002' ; VALUE $IPCCC1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '260' = '001 - 260' ; VALUE $IPCCC2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '260' = '001 - 260' ; VALUE $IPCCC3X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '260' = '001 - 260' ; VALUE $IPCCC4X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '260' = '001 - 260' ; VALUE IPDMD02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.52 - 94.96 = '$0.52 - $94.96' 94.97 - 257.72 = '$94.97 - $257.72' 257.73 - 759.99 = '$257.73 - $759.99' 760 - 7757.08 = '$760.00 - $7,757.08' ; VALUE IPDMR02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.47 - 220 = '$5.47 - $220.00' 220.01 - 505.36 = '$220.01 - $505.36' 505.37 - 1121.75 = '$505.37 - $1,121.75' 1121.76 - 13209.01 = '$1,121.76 - $13,209.01' ; VALUE IPDOF02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 159 - 919.71 = '$159.00 - $919.71' ; VALUE IPDOR02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.57 - 67.7 = '$0.57 - $67.70' 67.71 - 188.31 = '$67.71 - $188.31' 188.32 - 514.62 = '$188.32 - $514.62' 514.63 - 20718.34 = '$514.63 - $20,718.34' ; VALUE IPDOT02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6.15 - 7000 = '$6.15 - $7,000.00' ; VALUE IPDOU02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.32 - 62.94 = '$2.32 - $62.94' 62.95 - 248.5 = '$62.95 - $248.50' 248.51 - 765.71 = '$248.51 - $765.71' 765.72 - 5058 = '$765.72 - $5,058.00' ; VALUE IPDPV02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.65 - 168.7 = '$1.65 - $168.70' 168.71 - 535.36 = '$168.71 - $535.36' 535.37 - 1612.11 = '$535.37 - $1,612.11' 1612.12 - 32124.24 = '$1,612.12 - $32,124.24' ; VALUE IPDSF02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.6 - 29.04 = '$0.60 - $29.04' 29.05 - 96.39 = '$29.05 - $96.39' 96.4 - 266.98 = '$96.40 - $266.98' 266.99 - 7976.28 = '$266.99 - $7,976.28' ; VALUE IPDSL02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 78.68 - 1380 = '$78.68 - $1,380.00' ; VALUE IPDTC02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 14 - 644 = '$14.00 - $644.00' 644.01 - 1707.66 = '$644.01 - $1,707.66' 1707.67 - 3938.41 = '$1,707.67 - $3,938.41' 3938.42 - 129581.5 = '$3,938.42 - $129,581.50' ; VALUE IPDTR02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.68 - 46.61 = '$1.68 - $46.61' 46.62 - 187.79 = '$46.62 - $187.79' 187.8 - 889.76 = '$187.80 - $889.76' 889.77 - 3747.45 = '$889.77 - $3,747.45' ; VALUE IPDVA02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 10.16 - 539.84 = '$10.16 - $539.84' ; VALUE IPDWC02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 36.12 - 10273.34 = '$36.12 - $10,273.34' ; VALUE IPDXP02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.84 - 300 = '$4.84 - $300.00' 300.01 - 735.05 = '$300.01 - $735.05' 735.06 - 1681.71 = '$735.06 - $1,681.71' 1681.72 - 32180.61 = '$1,681.72 - $32,180.61' ; 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' 2001 = '2001' 2002 = '2002' ; VALUE IPFMD02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.05 - 812 = '$0.05 - $812.00' 812.01 - 2176.59 = '$812.01 - $2,176.59' 2176.6 - 4078.95 = '$2,176.60 - $4,078.95' 4078.96 - 380464.79 = '$4,078.96 - $380,464.79' ; VALUE IPFMR02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8 - 2802.25 = '$8.00 - $2,802.25' 2802.26 - 4547.48 = '$2,802.26 - $4,547.48' 4547.49 - 8855.52 = '$4,547.49 - $8,855.52' 8855.53 - 151363.64 = '$8,855.53 - $151,363.64' ; VALUE IPFOF02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 154.56 - 10193.24 = '$154.56 - $10,193.24' ; VALUE IPFOR02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.71 - 799.8 = '$1.71 - $799.80' 799.81 - 826.93 = '$799.81 - $826.93' 826.94 - 2451 = '$826.94 - $2,451.00' 2451.01 - 105848.71 = '$2,451.01 - $105,848.71' ; VALUE IPFOT02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.53 - 1056.79 = '$8.53 - $1,056.79' 1056.8 - 2253.62 = '$1,056.80 - $2,253.62' 2253.63 - 4520.52 = '$2,253.63 - $4,520.52' 4520.53 - 27282.24 = '$4,520.53 - $27,282.24' ; VALUE IPFOU02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 16.51 - 1438.96 = '$16.51 - $1,438.96' 1438.97 - 2469.06 = '$1,438.97 - $2,469.06' 2469.07 - 4090.32 = '$2,469.07 - $4,090.32' 4090.33 - 75749.72 = '$4,090.33 - $75,749.72' ; VALUE IPFPV02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.06 - 826.93 = '$1.06 - $826.93' 826.94 - 2408.99 = '$826.94 - $2,408.99' 2409 - 5197.11 = '$2,409.00 - $5,197.11' 5197.12 - 244307.09 = '$5,197.12 - $244,307.09' ; VALUE IPFSF02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.22 - 42.18 = '$0.22 - $42.18' 42.19 - 182 = '$42.19 - $182.00' 182.01 - 620 = '$182.01 - $620.00' 620.01 - 29542 = '$620.01 - $29,542.00' ; VALUE IPFSL02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 733.22 - 1042.48 = '$733.22 - $1,042.48' 1042.49 - 2301.25 = '$1,042.49 - $2,301.25' 2301.26 - 7204.29 = '$2,301.26 - $7,204.29' 7204.3 - 61254.29 = '$7,204.30 - $61,254.29' ; VALUE IPFTC02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5 - 4667.5 = '$5.00 - $4,667.50' 4667.51 - 9105.65 = '$4,667.51 - $9,105.65' 9105.66 - 18445.03 = '$9,105.66 - $18,445.03' 18445.04 - 833458.9 = '$18,445.04 - $833,458.90' ; VALUE IPFTR02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 56.51 - 179999.82 = '$56.51 - $179,999.82' ; VALUE IPFVA02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.92 - 1802.29 = '$3.92 - $1,802.29' 1802.3 - 5321.86 = '$1,802.30 - $5,321.86' 5321.87 - 11758 = '$5,321.87 - $11,758.00' 11758.01 - 136850 = '$11,758.01 - $136,850.00' ; VALUE IPFWC02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 447.21 - 2219.05 = '$447.21 - $2,219.05' 2219.06 - 4801.11 = '$2,219.06 - $4,801.11' 4801.12 - 8672.39 = '$4,801.12 - $8,672.39' 8672.4 - 91841.02 = '$8,672.40 - $91,841.02' ; VALUE IPFXP02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5 - 2206.41 = '$5.00 - $2,206.41' 2206.42 - 4062 = '$2,206.42 - $4,062.00' 4062.01 - 7418.56 = '$4,062.01 - $7,418.56' 7418.57 - 380464.79 = '$7,418.57 - $380,464.79' ; 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' 'V00' - 'V99' = 'V00 - V99' ; 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' 'V00' - 'V99' = 'V00 - V99' ; 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' 'V00' - 'V99' = 'V00 - V99' ; 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' 'V00' - 'V99' = 'V00 - V99' ; VALUE $IPPRO1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '01' - '05' = '01 - 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' '01' - '05' = '01 - 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 IPTC02XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 29.62 - 5922.05 = '$29.62 - $5,922.05' 5922.06 - 11353.37 = '$5,922.06 - $11,353.37' 11353.38 - 22301.5 = '$11,353.38 - $22,301.50' 22301.51 - 963040.4 = '$22,301.51 - $963,040.40' ; VALUE IPXP02XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6.15 - 2677.97 = '$6.15 - $2,677.97' 2677.98 - 4825.72 = '$2,677.98 - $4,825.72' 4825.73 - 8626.57 = '$4,825.73 - $8,626.57' 8626.58 - 401894.03 = '$8,626.58 - $401,894.03' ; 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 - 270 = '1 - 270 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 - 393 = '1 - 393 NUMBER OF NIGHTS' ; VALUE PERWT02F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 601.300787 - 32581.070838 = '601.300787 - 32581.070838 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)' 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 VAPLACEF -1 = '-1 INAPPLICABLE' 0 = '0 NO' 1 = '1 YES' ; VALUE VARPSUF (DEFAULT=40) 1 - 3 = '1 - 3' ; VALUE VARSTRF (DEFAULT=40) 1 - 203 = '1 - 203' ;