SAS User File for H94D 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 (H94D.SSP) or the ASCII data file (H94D.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 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 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'; FILENAME IN1 'C:\MEPS\H94D.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.H94D; TITLE 'List of Variables in MEPS H94D SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H94D (OBS=20); TITLE 'First 20 Observations in MEPS H94D 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 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'; 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 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\Hxx.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) H94D 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 H94D.SAS7BDAT will be created under the C:\MEPS directory when PROC XCOPY runs successfully. 5) The SAS transport file H94D.SSP was created from a PC-SAS Version 8 data file, using PROC COPY. This file has been tested for use with SAS version 8 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 H94D.DAT to a SAS data set 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 H94D.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\H94D.DAT'; DATA PUFLIB.H94D; INFILE IN1 LRECL=YYYYY; 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 (H94D). In the example, after the successful completion of the DATA step, a PC file named H94D.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 (YYYYY 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 H94D.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., YYYYY for H94D.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (XXXXX for H94D.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 (YYYYY for H94D.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 (H94D.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'; 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.H94D; TABLES .... / LIST MISSING; FORMAT varnam1 fmtnam1. Varnam2 fmtnam2. .... ; * to user: substitute varnam1 and fmtnam1 with actual variable names and format names; * Insert the FORMAT statement provided in Section D, if you are using all the variables in the TABLES statement; TITLE 'Frequency Distributions ....'; RUN; Here is an explanation of the SAS statements used above. LIBNAME statement: This tells SAS the location (directory name) of the SAS format library. Please note that SAS datasets (file name extension is 'SAS7BDAT') and format libraries (file name extension is 'SAS7BDAT') 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.SAS7BDAT. 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 H94D.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 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 ANYOPER 2.0 @86 VAPLACE 1.0 @87 IPICD1X $3.0 @90 IPICD2X $3.0 @93 IPICD3X $3.0 @96 IPICD4X $3.0 @99 IPPRO1X $2.0 @101 IPPRO2X $2.0 @103 IPCCC1X $3.0 @106 IPCCC2X $3.0 @109 IPCCC3X $3.0 @112 IPCCC4X $3.0 @115 DSCHPMED 2.0 @117 FFIPTYPE 2.0 @119 IPXP05X 9.2 @128 IPTC05X 10.2 @138 IPFSF05X 8.2 @146 IPFMR05X 9.2 @155 IPFMD05X 9.2 @164 IPFPV05X 9.2 @173 IPFVA05X 8.2 @181 IPFTR05X 8.2 @189 IPFOF05X 8.2 @197 IPFSL05X 8.2 @205 IPFWC05X 8.2 @213 IPFOR05X 9.2 @222 IPFOU05X 8.2 @230 IPFOT05X 8.2 @238 IPFXP05X 9.2 @247 IPFTC05X 10.2 @257 IPDSF05X 7.2 @264 IPDMR05X 8.2 @272 IPDMD05X 8.2 @280 IPDPV05X 8.2 @288 IPDVA05X 7.2 @295 IPDTR05X 7.2 @302 IPDOF05X 6.2 @308 IPDSL05X 7.2 @315 IPDWC05X 8.2 @323 IPDOR05X 7.2 @330 IPDOU05X 7.2 @337 IPDOT05X 7.2 @344 IPDXP05X 8.2 @352 IPDTC05X 9.2 @361 IMPFLAG 1.0 @362 PERWT05F 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. 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. 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. IPXP05X IPXP05XF. IPTC05X IPTC05XF. IPFSF05X IPFSF05F. IPFMR05X IPFMR05F. IPFMD05X IPFMD05F. IPFPV05X IPFPV05F. IPFVA05X IPFVA05F. IPFTR05X IPFTR05F. IPFOF05X IPFOF05F. IPFSL05X IPFSL05F. IPFWC05X IPFWC05F. IPFOR05X IPFOR05F. IPFOU05X IPFOU05F. IPFOT05X IPFOT05F. IPFXP05X IPFXP05F. IPFTC05X IPFTC05F. IPDSF05X IPDSF05F. IPDMR05X IPDMR05F. IPDMD05X IPDMD05F. IPDPV05X IPDPV05F. IPDVA05X IPDVA05F. IPDTR05X IPDTR05F. IPDOF05X IPDOF05F. IPDSL05X IPDSL05F. IPDWC05X IPDWC05F. IPDOR05X IPDOR05F. IPDOU05X IPDOU05F. IPDOT05X IPDOT05F. IPDXP05X IPDXP05F. IPDTC05X IPDTC05F. IMPFLAG IMPFLAGF. PERWT05F PERWT05F. 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' 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' IPXP05X ='TOT EXP FOR EVENT (IPFXP05X+IPDXP05X)' IPTC05X ='TOTAL CHG FOR EVENT (IPFTC05X+IPDTC05X)' IPFSF05X='FACILITY AMT PD, FAMILY (IMPUTED)' IPFMR05X='FACILITY AMT PD, MEDICARE (IMPUTED)' IPFMD05X='FACILITY AMT PD, MEDICAID (IMPUTED)' IPFPV05X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' IPFVA05X='FACILITY AMT PD, VETERANS (IMPUTED)' IPFTR05X='FACILITY AMT PD,TRICARE/CHAMPVA(IMPUTED)' IPFOF05X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' IPFSL05X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' IPFWC05X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' IPFOR05X='FACILITY AMT PD, OTH PRIV (IMPUTED)' IPFOU05X='FACILITY AMT PD, OTH PUB (IMPUTED)' IPFOT05X='FACILITY AMT PD, OTH INSUR (IMPUTED)' IPFXP05X='FACILITY SUM PAYMENTS IPFSF05X-IPFOT05X' IPFTC05X='TOTAL FACILITY CHARGE (IMPUTED)' IPDSF05X='DOCTOR AMOUNT PD, FAMILY (IMPUTED)' IPDMR05X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' IPDMD05X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' IPDPV05X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' IPDVA05X='DOCTOR AMOUNT PD, VETERANS (IMPUTED)' IPDTR05X='DOCTOR AMT PD, TRICARE/CHAMPVA (IMPUTED)' IPDOF05X='DOCTOR AMT PD, OTH FEDERAL (IMPUTED)' IPDSL05X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' IPDWC05X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' IPDOR05X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' IPDOU05X='DOCTOR AMT PD, OTH PUB (IMPUTED)' IPDOT05X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' IPDXP05X='DOCTOR SUM PAYMENTS IPDSF05X-IPDOT05X' IPDTC05X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT05F='EXPENDITURE FILE PERSON WEIGHT, 2005' VARSTR ='VARIANCE ESTIMATION STRATUM, 2005' VARPSU ='VARIANCE ESTIMATION PSU, 2005' ; * 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 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' 2004 = '2004' 2005 = '2005' ; VALUE $IPCCC1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '663' = '650-663' ; VALUE $IPCCC2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '663' = '650-663' ; VALUE $IPCCC3X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '663' = '650-663' ; VALUE $IPCCC4X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '663' = '650-663' ; VALUE IPDMD05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.27 - 95.38 = '$0.27 - $95.38' 95.39 - 280.44 = '$95.39 - $280.44' 280.45 - 901 = '$280.45 - $901.00' 901.01 - 13812.91 = '$901.01 - $13,812.91' ; VALUE IPDMR05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.48 - 273.98 = '$0.48 - $273.98' 273.99 - 611.24 = '$273.99 - $611.24' 611.25 - 1287.31 = '$611.25 - $1,287.31' 1287.32 - 42354.47 = '$1,287.32 - $42,354.47' ; VALUE IPDOF05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 50.3 - 127.4 = '$50.30 - $127.40' ; VALUE IPDOR05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.77 - 76.82 = '$1.77 - $76.82' 76.83 - 209.1 = '$76.83 - $209.10' 209.11 - 534.14 = '$209.11 - $534.14' 534.15 - 7107.16 = '$534.15 - $7,107.16' ; VALUE IPDOT05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 90 - 2091 = '$90.00 - $2,091.00' ; VALUE IPDOU05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 7.87 - 142.47 = '$7.87 - $142.47' 142.48 - 361.66 = '$142.48 - $361.66' 361.67 - 1128.16 = '$361.67 - $1,128.16' 1128.17 - 7585.17 = '$1,128.17 - $7,585.17' ; VALUE IPDPV05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.84 - 194.87 = '$1.84 - $194.87' 194.88 - 627.21 = '$194.88 - $627.21' 627.22 - 2047.08 = '$627.22 - $2,047.08' 2047.09 - 86894.46 = '$2,047.09 - $86,894.46' ; VALUE IPDSF05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.38 - 30 = '$0.38 - $30.00' 30.01 - 107.9 = '$30.01 - $107.90' 107.91 - 319.3 = '$107.91 - $319.30' 319.31 - 7736.57 = '$319.31 - $7,736.57' ; VALUE IPDSL05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.84 - 2993.7 = '$1.84 - $2,993.70' ; VALUE IPDTC05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 10.33 - 859.63 = '$10.33 - $859.63' 859.64 - 2217.74 = '$859.64 - $2,217.74' 2217.75 - 4826.06 = '$2,217.75 - $4,826.06' 4826.07 - 198416 = '$4,826.07 - $198,416.00' ; VALUE IPDTR05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.2 - 48.35 = '$1.20 - $48.35' 48.36 - 141.43 = '$48.36 - $141.43' 141.44 - 406.57 = '$141.44 - $406.57' 406.58 - 1941.15 = '$406.58 - $1,941.15' ; VALUE IPDVA05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.63 - 33 = '$4.63 - $33.00' 33.01 - 120.2 = '$33.01 - $120.20' 120.21 - 293.9 = '$120.21 - $293.90' 293.91 - 5881.04 = '$293.91 - $5,881.04' ; VALUE IPDWC05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.2 - 335 = '$1.20 - $335.00' 335.01 - 1628.6 = '$335.01 - $1,628.60' 1628.61 - 4258.42 = '$1,628.61 - $4,258.42' 4258.43 - 11505.65 = '$4,258.43 - $11,505.65' ; VALUE IPDXP05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.32 - 353.82 = '$4.32 - $353.82' 353.83 - 879.53 = '$353.83 - $879.53' 879.54 - 1961.34 = '$879.54 - $1,961.34' 1961.35 - 86894.46 = '$1,961.35 - $86,894.46' ; 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' 2005 = '2005' ; VALUE IPFMD05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.6 - 930.91 = '$0.60 - $930.91' 930.92 - 2663.81 = '$930.92 - $2,663.81' 2663.82 - 5220 = '$2,663.82 - $5,220.00' 5220.01 - 164380 = '$5,220.01 - $164,380.00' ; VALUE IPFMR05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 12.64 - 3243.43 = '$12.64 - $3,243.43' 3243.44 - 5415.85 = '$3,243.44 - $5,415.85' 5415.86 - 10787.57 = '$5,415.86 - $10,787.57' 10787.58 - 360361.35 = '$10,787.58 - $360,361.35' ; VALUE IPFOF05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 280.04 - 43176 = '$280.04 - $43,176.00' ; VALUE IPFOR05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 7.2 - 119655.59 = '$7.20 - $119,655.59' ; VALUE IPFOT05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 159.74 - 1392.94 = '$159.74 - $1,392.94' 1392.95 - 4384.43 = '$1,392.95 - $4,384.43' 4384.44 - 14431.14 = '$4,384.44 - $14,431.14' 14431.15 - 34499 = '$14,431.15 - $34,499.00' ; VALUE IPFOU05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 13.25 - 1240.79 = '$13.25 - $1,240.79' 1240.8 - 2812.93 = '$1,240.80 - $2,812.93' 2812.94 - 6705.81 = '$2,812.94 - $6,705.81' 6705.82 - 81526 = '$6,705.82 - $81,526.00' ; VALUE IPFPV05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 9.12 - 929.62 = '$9.12 - $929.62' 929.63 - 3284.22 = '$929.63 - $3,284.22' 3284.23 - 7748.82 = '$3,284.23 - $7,748.82' 7748.83 - 168543.67 = '$7,748.83 - $168,543.67' ; VALUE IPFSF05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 75 = '$1.00 - $75.00' 75.01 - 270 = '$75.01 - $270.00' 270.01 - 779.53 = '$270.01 - $779.53' 779.54 - 48000 = '$779.54 - $48,000.00' ; VALUE IPFSL05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 50 - 1432.36 = '$50.00 - $1,432.36' 1432.37 - 3125 = '$1,432.37 - $3,125.00' 3125.01 - 5899.4 = '$3,125.01 - $5,899.40' 5899.41 - 33319.13 = '$5,899.41 - $33,319.13' ; VALUE IPFTC05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 21.75 - 6271.21 = '$21.75 - $6,271.21' 6271.22 - 11953.92 = '$6,271.22 - $11,953.92' 11953.93 - 26418.14 = '$11,953.93 - $26,418.14' 26418.15 - 1452231.05 = '$26,418.15 - $1,452,231.05' ; VALUE IPFTR05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.53 - 843.03 = '$8.53 - $843.03' 843.04 - 912 = '$843.04 - $912.00' 912.01 - 2598.23 = '$912.01 - $2,598.23' 2598.24 - 91343.67 = '$2,598.24 - $91,343.67' ; VALUE IPFVA05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 280.04 - 2048.08 = '$280.04 - $2,048.08' 2048.09 - 5175.72 = '$2,048.09 - $5,175.72' 5175.73 - 10358.5 = '$5,175.73 - $10,358.50' 10358.51 - 70785 = '$10,358.51 - $70,785.00' ; VALUE IPFWC05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 917.1 - 18756.4 = '$917.10 - $18,756.40' ; VALUE IPFXP05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.08 - 2669.12 = '$3.08 - $2,669.12' 2669.13 - 4981.17 = '$2,669.13 - $4,981.17' 4981.18 - 9737.16 = '$4,981.18 - $9,737.16' 9737.17 - 360361.35 = '$9,737.17 - $360,361.35' ; 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 IPTC05XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 21.75 - 7875.11 = '$21.75 - $7,875.11' 7875.12 - 14950.5 = '$7,875.12 - $14,950.50' 14950.51 - 30859 = '$14,950.51 - $30,859.00' 30859.01 - 1546859.16 = '$30,859.01 - $1,546,859.16' ; VALUE IPXP05XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.08 - 3258.7 = '$3.08 - $3,258.70' 3258.71 - 5869.45 = '$3,258.71 - $5,869.45' 5869.46 - 11171.95 = '$5,869.46 - $11,171.95' 11171.96 - 403439.83 = '$11,171.96 - $403,439.83' ; 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 - 90 = '1 - 90 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 - 234 = '1 - 234 NUMBER OF NIGHTS' ; VALUE PANELF 9 = 'PANEL 9' 10 = 'PANEL 10' ; VALUE PERWT05F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 407.056011 - 38336.135494 = '407.056011 - 38336.135494 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' ;