SAS User File for H59D 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 (H59D.SSP) or the ASCII data file (H59D.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\H59D.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.H59D; TITLE "List of Variables in MEPS H59D SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.H59D (OBS=20); TITLE "First 20 Observations in MEPS H59D 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) H59D 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 H59D.SD2 will be created under the C:\MEPS directory when PROC XCOPY runs successfully. 4) The SAS transport file H59D.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 H59D.DAT to a SAS data set as described in Section B. ADDITONAL 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\H59D.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 H59D.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\H59D.DAT'; DATA PUFLIB.H59D; INFILE IN1 LRECL=368; 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 (H59D). In the example, after the successful completion of the DATA step, a PC file named H59D.SD2 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 (368 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 H59D.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., 368 for H59D.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (370 for H59D.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 (368 for H59D.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 (H59D.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. ADDITONAL 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 ASCII data file - e.g., LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\DOWNLOAD\H59D.DAT'; DATA PUFLIB.H59D; INFILE IN1 LRECL=368; 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.H59D; 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 'SD2') and format libraries (file name extension is 'SC2') 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.SC2. 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 H59D.DAT file into a SAS data set, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=368; 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 2.0 @76 EMERROOM 2.0 @78 SPECCOND 2.0 @80 RSNINHOS 2.0 @82 ANYOPER 2.0 @84 VAPLACE 1.0 @85 IPICD1X $3.0 @88 IPICD2X $3.0 @91 IPICD3X $3.0 @94 IPICD4X $3.0 @97 IPPRO1X $2.0 @99 IPPRO2X $2.0 @101 IPCCC1X $3.0 @104 IPCCC2X $3.0 @107 IPCCC3X $3.0 @110 IPCCC4X $3.0 @113 DSCHPMED 2.0 @115 FFIPTYPE 2.0 @117 FFTOT02 2.0 @119 IPXP01X 9.2 @128 IPTC01X 9.2 @137 IPFSF01X 7.2 @144 IPFMR01X 9.2 @153 IPFMD01X 8.2 @161 IPFPV01X 9.2 @170 IPFVA01X 8.2 @178 IPFTR01X 8.2 @186 IPFOF01X 7.2 @193 IPFSL01X 8.2 @201 IPFWC01X 8.2 @209 IPFOR01X 8.2 @217 IPFOU01X 8.2 @225 IPFOT01X 8.2 @233 IPFXP01X 9.2 @242 IPFTC01X 9.2 @251 IPDSF01X 7.2 @258 IPDMR01X 8.2 @266 IPDMD01X 7.2 @273 IPDPV01X 8.2 @281 IPDVA01X 7.2 @288 IPDTR01X 7.2 @295 IPDOF01X 5.2 @300 IPDSL01X 6.2 @306 IPDWC01X 7.2 @313 IPDOR01X 8.2 @321 IPDOU01X 7.2 @328 IPDOT01X 7.2 @335 IPDXP01X 8.2 @343 IPDTC01X 8.2 @351 IMPFLAG 1.0 @352 PERWT01F 12.6 @364 VARSTR01 3.0 @367 VARPSU01 2.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. FFTOT02 FFTOT02F. IPXP01X IPXP01XF. IPTC01X IPTC01XF. IPFSF01X IPFSF01F. IPFMR01X IPFMR01F. IPFMD01X IPFMD01F. IPFPV01X IPFPV01F. IPFVA01X IPFVA01F. IPFTR01X IPFTR01F. IPFOF01X IPFOF01F. IPFSL01X IPFSL01F. IPFWC01X IPFWC01F. IPFOR01X IPFOR01F. IPFOU01X IPFOU01F. IPFOT01X IPFOT01F. IPFXP01X IPFXP01F. IPFTC01X IPFTC01F. IPDSF01X IPDSF01F. IPDMR01X IPDMR01F. IPDMD01X IPDMD01F. IPDPV01X IPDPV01F. IPDVA01X IPDVA01F. IPDTR01X IPDTR01F. IPDOF01X IPDOF01F. IPDSL01X IPDSL01F. IPDWC01X IPDWC01F. IPDOR01X IPDOR01F. IPDOU01X IPDOU01F. IPDOT01X IPDOT01F. IPDXP01X IPDXP01F. IPDTC01X IPDTC01F. IMPFLAG IMPFLAGF. PERWT01F PERWT01F. VARSTR01 VARSTR0F. VARPSU01 VARPSU0F. ; * 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' FFTOT02 ='TOTAL # OF VISITS IN FF AFTER 2001' IPXP01X ='TOT EXP FOR EVENT (IPFXP01X+IPDXP01X)' IPTC01X ='TOTAL CHG FOR EVENT (IPFTC01X+IPDTC01X)' IPFSF01X='FACILITY AMT PD, FAMILY (IMPUTED)' IPFMR01X='FACILITY AMT PD, MEDICARE (IMPUTED)' IPFMD01X='FACILITY AMT PD, MEDICAID (IMPUTED)' IPFPV01X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' IPFVA01X='FACILITY AMT PD, VETERANS (IMPUTED)' IPFTR01X='FACILITY AMT PD, TRICARE (IMPUTED)' IPFOF01X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' IPFSL01X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' IPFWC01X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' IPFOR01X='FACILITY AMT PD, OTH PRIV (IMPUTED)' IPFOU01X='FACILITY AMT PD, OTH PUB (IMPUTED)' IPFOT01X='FACILITY AMT PD, OTH INSUR (IMPUTED)' IPFXP01X='FACILITY SUM PAYMENTS IPFSF01X-IPFOT01X' IPFTC01X='TOTAL FACILITY CHARGE (IMPUTED)' IPDSF01X='DOCTOR AMOUNT PD, FAMILY (IMPUTED)' IPDMR01X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' IPDMD01X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' IPDPV01X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' IPDVA01X='DOCTOR AMOUNT PD, VETERANS (IMPUTED)' IPDTR01X='DOCTOR AMOUNT PD, TRICARE (IMPUTED)' IPDOF01X='DOCTOR AMT PD, OTH FEDERAL (IMPUTED)' IPDSL01X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' IPDWC01X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' IPDOR01X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' IPDOU01X='DOCTOR AMT PD, OTH PUB (IMPUTED)' IPDOT01X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' IPDXP01X='DOCTOR SUM PAYMENTS IPDSF01X-IPDOT01X' IPDTC01X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT01F='FINAL PERSON LEVEL WEIGHT, 2001' VARSTR01='VARIANCE ESTIMATION STRATUM, 2001' VARPSU01='VARIANCE ESTIMATION PSU, 2001' ; * 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 $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 FFTOT02F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 = '1' ; 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' 2000 = '2000' 2001 = '2001' ; 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 IPDMD01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.4 - 76.93 = '$1.40 - $76.93' 76.94 - 219.42 = '$76.94 - $219.42' 219.43 - 642.46 = '$219.43 - $642.46' 642.47 - 5634.34 = '$642.47 - $5,634.34' ; VALUE IPDMR01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 7.39 - 230 = '$7.39 - $230.00' 230.01 - 485.46 = '$230.01 - $485.46' 485.47 - 1168.95 = '$485.47 - $1,168.95' 1168.96 - 16391.94 = '$1,168.96 - $16,391.94' ; VALUE IPDOF01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 50.33 = '$50.33' ; VALUE IPDOR01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.48 - 63.12 = '$1.48 - $63.12' 63.13 - 201.69 = '$63.13 - $201.69' 201.7 - 480.82 = '$201.70 - $480.82' 480.83 - 18791 = '$480.83 - $18,791.00' ; VALUE IPDOT01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 129.86 - 2147.36 = '$129.86 - $2,147.36' ; VALUE IPDOU01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.36 - 62.4 = '$2.36 - $62.40' 62.41 - 214.41 = '$62.41 - $214.41' 214.42 - 770.17 = '$214.42 - $770.17' 770.18 - 3980.21 = '$770.18 - $3,980.21' ; VALUE IPDPV01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.72 - 152.5 = '$0.72 - $152.50' 152.51 - 527.5 = '$152.51 - $527.50' 527.51 - 1510 = '$527.51 - $1,510.00' 1510.01 - 28429.16 = '$1,510.01 - $28,429.16' ; VALUE IPDSF01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 30 = '$0.01 - $30.00' 30.01 - 89.19 = '$30.01 - $89.19' 89.2 - 288.24 = '$89.20 - $288.24' 288.25 - 9658.05 = '$288.25 - $9,658.05' ; VALUE IPDSL01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.1 - 46.14 = '$2.10 - $46.14' 46.15 - 159.17 = '$46.15 - $159.17' 159.18 - 321.72 = '$159.18 - $321.72' 321.73 - 992 = '$321.73 - $992.00' ; VALUE IPDTC01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 16 - 602 = '$16.00 - $602.00' 602.01 - 1548.53 = '$602.01 - $1,548.53' 1548.54 - 3489 = '$1,548.54 - $3,489.00' 3489.01 - 53421.29 = '$3,489.01 - $53,421.29' ; VALUE IPDTR01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 33.15 - 135.2 = '$33.15 - $135.20' 135.21 - 285.33 = '$135.21 - $285.33' 285.34 - 1125.37 = '$285.34 - $1,125.37' 1125.38 - 2342.41 = '$1,125.38 - $2,342.41' ; VALUE IPDVA01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.62 - 38.45 = '$0.62 - $38.45' 38.46 - 99.88 = '$38.46 - $99.88' 99.89 - 320.75 = '$99.89 - $320.75' 320.76 - 8302.7 = '$320.76 - $8,302.70' ; VALUE IPDWC01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 142.81 - 888.49 = '$142.81 - $888.49' 888.5 - 1160 = '$888.50 - $1,160.00' 1160.01 - 2986.17 = '$1,160.01 - $2,986.17' 2986.18 - 7898.98 = '$2,986.18 - $7,898.98' ; VALUE IPDXP01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.77 - 293 = '$3.77 - $293.00' 293.01 - 723.21 = '$293.01 - $723.21' 723.22 - 1661.62 = '$723.22 - $1,661.62' 1661.63 - 32663.72 = '$1,661.63 - $32,663.72' ; 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' 2000 = '2000' 2001 = '2001' ; VALUE IPFMD01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.45 - 896.12 = '$0.45 - $896.12' 896.13 - 2180.49 = '$896.13 - $2,180.49' 2180.5 - 4273.07 = '$2,180.50 - $4,273.07' 4273.08 - 65409.83 = '$4,273.08 - $65,409.83' ; VALUE IPFMR01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.43 - 2725.55 = '$5.43 - $2,725.55' 2725.56 - 4467.44 = '$2,725.56 - $4,467.44' 4467.45 - 8518.53 = '$4,467.45 - $8,518.53' 8518.54 - 127904.16 = '$8,518.54 - $127,904.16' ; VALUE IPFOF01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.69 - 8828.24 = '$3.69 - $8,828.24' ; VALUE IPFOR01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.18 - 30305.61 = '$2.18 - $30,305.61' ; VALUE IPFOT01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 32.82 - 42638.56 = '$32.82 - $42,638.56' ; VALUE IPFOU01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 183.89 - 2047.8 = '$183.89 - $2,047.80' 2047.81 - 3421.48 = '$2,047.81 - $3,421.48' 3421.49 - 7051.6 = '$3,421.49 - $7,051.60' 7051.61 - 76390.12 = '$7,051.61 - $76,390.12' ; VALUE IPFPV01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.76 - 804.09 = '$0.76 - $804.09' 804.1 - 2508 = '$804.10 - $2,508.00' 2508.01 - 5266.7 = '$2,508.01 - $5,266.70' 5266.71 - 173504 = '$5,266.71 - $173,504.00' ; VALUE IPFSF01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 40.22 = '$1.00 - $40.22' 40.23 - 175 = '$40.23 - $175.00' 175.01 - 571.48 = '$175.01 - $571.48' 571.49 - 9949.93 = '$571.49 - $9,949.93' ; VALUE IPFSL01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 727 - 1041.36 = '$727.00 - $1,041.36' 1041.37 - 2020.75 = '$1,041.37 - $2,020.75' 2020.76 - 4492.52 = '$2,020.76 - $4,492.52' 4492.53 - 19515.31 = '$4,492.53 - $19,515.31' ; VALUE IPFTC01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.97 - 4320.95 = '$8.97 - $4,320.95' 4320.96 - 8087.59 = '$4,320.96 - $8,087.59' 8087.6 - 16062.45 = '$8,087.60 - $16,062.45' 16062.46 - 389869.23 = '$16,062.46 - $389,869.23' ; VALUE IPFTR01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 371.57 - 12091.62 = '$371.57 - $12,091.62' ; VALUE IPFVA01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.11 - 74256 = '$2.11 - $74,256.00' ; VALUE IPFWC01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 260.48 - 2653.06 = '$260.48 - $2,653.06' 2653.07 - 4749.25 = '$2,653.07 - $4,749.25' 4749.26 - 10814.97 = '$4,749.26 - $10,814.97' 10814.98 - 78752.2 = '$10,814.98 - $78,752.20' ; VALUE IPFXP01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.43 - 2164.1 = '$5.43 - $2,164.10' 2164.11 - 4086.4 = '$2,164.11 - $4,086.40' 4086.41 - 7246.38 = '$4,086.41 - $7,246.38' 7246.39 - 179205.36 = '$7,246.39 - $179,205.36' ; 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 IPTC01XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 25 - 5434.04 = '$25.00 - $5,434.04' 5434.05 - 10013 = '$5,434.05 - $10,013.00' 10013.01 - 18974.36 = '$10,013.01 - $18,974.36' 18974.37 - 394951.23 = '$18,974.37 - $394,951.23' ; VALUE IPXP01XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.43 - 2626.86 = '$5.43 - $2,626.86' 2626.87 - 4854.39 = '$2,626.87 - $4,854.39' 4854.4 - 8436.7 = '$4,854.40 - $8,436.70' 8436.71 - 181765.61 = '$8,436.71 - $181,765.61' ; 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 - 87 = '1 - 87 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 - 164 = '1 - 164 NUMBER OF NIGHTS' ; VALUE PERWT01F 0 = '0.000000 WEIGHT' 578.984842 - 59821.855601 = '578.984842 - 59821.855601 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 VARPSU0F (DEFAULT=40) 1 - 59 = '1 - 59' ; VALUE VARSTR0F (DEFAULT=40) 1 - 145 = '1 - 145' ;