SAS User File for H144D 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 (H144D.SSP) or the ASCII data file (H144D.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\H144D.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.H144D; TITLE 'List of Variables in MEPS H144D SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H144D (OBS=20); TITLE 'First 20 Observations in MEPS H144D 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) H144D 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 H144D.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file H144D.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 H144D.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 H144D.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\H144D.DAT'; DATA PUFLIB.H144D; INFILE IN1 LRECL=383; 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 (H144D). In the example, after the successful completion of the DATA step, a PC file named H144D.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 (383 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 H144D.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., 383 for H144D.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (385 for H144D.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 (383 for H144D.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 (H144D.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.H144D; 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 H144D.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=383; 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 IPXP11X 9.2 @131 IPTC11X 10.2 @141 IPFSF11X 8.2 @149 IPFMR11X 9.2 @158 IPFMD11X 9.2 @167 IPFPV11X 9.2 @176 IPFVA11X 8.2 @184 IPFTR11X 8.2 @192 IPFOF11X 8.2 @200 IPFSL11X 8.2 @208 IPFWC11X 9.2 @217 IPFOR11X 9.2 @226 IPFOU11X 8.2 @234 IPFOT11X 8.2 @242 IPFXP11X 9.2 @251 IPFTC11X 10.2 @261 IPDSF11X 8.2 @269 IPDMR11X 8.2 @277 IPDMD11X 8.2 @285 IPDPV11X 8.2 @293 IPDVA11X 7.2 @300 IPDTR11X 8.2 @308 IPDOF11X 4.2 @312 IPDSL11X 7.2 @319 IPDWC11X 8.2 @327 IPDOR11X 8.2 @335 IPDOU11X 7.2 @342 IPDOT11X 7.2 @349 IPDXP11X 8.2 @357 IPDTC11X 9.2 @366 IMPFLAG 1.0 @367 PERWT11F 12.6 @379 VARSTR 4.0 @383 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. IPXP11X IPXP11XF. IPTC11X IPTC11XF. IPFSF11X IPFSF11F. IPFMR11X IPFMR11F. IPFMD11X IPFMD11F. IPFPV11X IPFPV11F. IPFVA11X IPFVA11F. IPFTR11X IPFTR11F. IPFOF11X IPFOF11F. IPFSL11X IPFSL11F. IPFWC11X IPFWC11F. IPFOR11X IPFOR11F. IPFOU11X IPFOU11F. IPFOT11X IPFOT11F. IPFXP11X IPFXP11F. IPFTC11X IPFTC11F. IPDSF11X IPDSF11F. IPDMR11X IPDMR11F. IPDMD11X IPDMD11F. IPDPV11X IPDPV11F. IPDVA11X IPDVA11F. IPDTR11X IPDTR11F. IPDOF11X IPDOF11F. IPDSL11X IPDSL11F. IPDWC11X IPDWC11F. IPDOR11X IPDOR11F. IPDOU11X IPDOU11F. IPDOT11X IPDOT11F. IPDXP11X IPDXP11F. IPDTC11X IPDTC11F. IMPFLAG IMPFLAGF. PERWT11F PERWT11F. 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' IPXP11X ='TOT EXP FOR EVENT (IPFXP11X+IPDXP11X)' IPTC11X ='TOTAL CHG FOR EVENT (IPFTC11X+IPDTC11X)' IPFSF11X='FACILITY AMT PD, FAMILY (IMPUTED)' IPFMR11X='FACILITY AMT PD, MEDICARE (IMPUTED)' IPFMD11X='FACILITY AMT PD, MEDICAID (IMPUTED)' IPFPV11X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' IPFVA11X='FAC AMT PD,VETERANS/CHAMPVA(IMPUTED)' IPFTR11X='FACILITY AMT PD,TRICARE(IMPUTED)' IPFOF11X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' IPFSL11X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' IPFWC11X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' IPFOR11X='FACILITY AMT PD, OTH PRIV (IMPUTED)' IPFOU11X='FACILITY AMT PD, OTH PUB (IMPUTED)' IPFOT11X='FACILITY AMT PD, OTH INSUR (IMPUTED)' IPFXP11X='FACILITY SUM PAYMENTS IPFSF11X-IPFOT11X' IPFTC11X='TOTAL FACILITY CHARGE (IMPUTED)' IPDSF11X='DOCTOR AMOUNT PD, FAMILY (IMPUTED)' IPDMR11X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' IPDMD11X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' IPDPV11X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' IPDVA11X='DR AMT PD,VETERANS/CHAMPVA(IMPUTED)' IPDTR11X='DOCTOR AMT PD,TRICARE(IMPUTED)' IPDOF11X='DOCTOR AMT PD, OTH FEDERAL (IMPUTED)' IPDSL11X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' IPDWC11X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' IPDOR11X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' IPDOU11X='DOCTOR AMT PD, OTH PUB (IMPUTED)' IPDOT11X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' IPDXP11X='DOCTOR SUM PAYMENTS IPDSF11X-IPDOT11X' IPDTC11X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT11F='EXPENDITURE FILE PERSON WEIGHT, 2011' VARSTR ='VARIANCE ESTIMATION STRATUM, 2011' VARPSU ='VARIANCE ESTIMATION PSU, 2011' ; * 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' 2010 = '2010' 2011 = '2011' ; 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 IPDMD11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.71 - 100.24 = '$0.71 - $100.24' 100.25 - 333.79 = '$100.25 - $333.79' 333.8 - 1022.93 = '$333.80 - $1,022.93' 1022.94 - 20698.74 = '$1,022.94 - $20,698.74' ; VALUE IPDMR11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.91 - 304.93 = '$4.91 - $304.93' 304.94 - 712.65 = '$304.94 - $712.65' 712.66 - 1552.01 = '$712.66 - $1,552.01' 1552.02 - 35678.19 = '$1,552.02 - $35,678.19' ; VALUE IPDOF11F -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 99999999.99 = '.01 - 99999999.99' ; VALUE IPDOR11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 11.67 - 70.21 = '$11.67 - $70.21' 70.22 - 249.45 = '$70.22 - $249.45' 249.46 - 864.05 = '$249.46 - $864.05' 864.06 - 31427 = '$864.06 - $31,427.00' ; VALUE IPDOT11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.63 - 99.23 = '$1.63 - $99.23' 99.24 - 278.4 = '$99.24 - $278.40' 278.41 - 1626.84 = '$278.41 - $1,626.84' 1626.85 - 8298.04 = '$1,626.85 - $8,298.04' ; VALUE IPDOU11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.76 - 133.87 = '$5.76 - $133.87' 133.88 - 321.18 = '$133.88 - $321.18' 321.19 - 701.27 = '$321.19 - $701.27' 701.28 - 5142.63 = '$701.28 - $5,142.63' ; VALUE IPDPV11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.88 - 198.48 = '$0.88 - $198.48' 198.49 - 876.4 = '$198.49 - $876.40' 876.41 - 2266.6 = '$876.41 - $2,266.60' 2266.61 - 59988.76 = '$2,266.61 - $59,988.76' ; VALUE IPDSF11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 43.68 = '$1.00 - $43.68' 43.69 - 120 = '$43.69 - $120.00' 120.01 - 372 = '$120.01 - $372.00' 372.01 - 22257.61 = '$372.01 - $22,257.61' ; VALUE IPDSL11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 10.52 - 88.99 = '$10.52 - $88.99' 89 - 231.15 = '$89.00 - $231.15' 231.16 - 440.56 = '$231.16 - $440.56' 440.57 - 2063.38 = '$440.57 - $2,063.38' ; VALUE IPDTC11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 9 - 879 = '$9.00 - $879.00' 879.01 - 2381.19 = '$879.01 - $2,381.19' 2381.2 - 5398 = '$2,381.20 - $5,398.00' 5398.01 - 167684 = '$5,398.01 - $167,684.00' ; VALUE IPDTR11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.43 - 12758.97 = '$3.43 - $12,758.97' ; VALUE IPDVA11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2 - 1454.96 = '$2.00 - $1,454.96' ; VALUE IPDWC11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2 - 279 = '$2.00 - $279.00' 279.01 - 1035.66 = '$279.01 - $1,035.66' 1035.67 - 2390.81 = '$1,035.67 - $2,390.81' 2390.82 - 17615.75 = '$2,390.82 - $17,615.75' ; VALUE IPDXP11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.91 - 333.7 = '$4.91 - $333.70' 333.71 - 929.05 = '$333.71 - $929.05' 929.06 - 2129.24 = '$929.06 - $2,129.24' 2129.25 - 60119.86 = '$2,129.25 - $60,119.86' ; VALUE IPENDDF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 31 = '1 - 31 DAY' ; VALUE IPENDMMF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 12 = '1 - 12 MONTH' ; VALUE IPENDYRF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 2011 = '2011' ; VALUE IPFMD11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.76 - 1165.55 = '$1.76 - $1,165.55' 1165.56 - 3096.12 = '$1,165.56 - $3,096.12' 3096.13 - 5930.14 = '$3,096.13 - $5,930.14' 5930.15 - 115675.13 = '$5,930.15 - $115,675.13' ; VALUE IPFMR11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.25 - 3598.57 = '$3.25 - $3,598.57' 3598.58 - 7312.33 = '$3,598.58 - $7,312.33' 7312.34 - 12624.77 = '$7,312.34 - $12,624.77' 12624.78 - 155820.93 = '$12,624.78 - $155,820.93' ; VALUE IPFOF11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 439.89 - 10099.83 = '$439.89 - $10,099.83' ; VALUE IPFOR11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 1063.24 = '$0.01 - $1,063.24' 1063.25 - 1153.22 = '$1,063.25 - $1,153.22' 1153.23 - 7854.13 = '$1,153.23 - $7,854.13' 7854.14 - 154301.3 = '$7,854.14 - $154,301.30' ; VALUE IPFOT11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 99.16 - 3738.02 = '$99.16 - $3,738.02' 3738.03 - 6961.84 = '$3,738.03 - $6,961.84' 6961.85 - 12998.39 = '$6,961.85 - $12,998.39' 12998.4 - 77383.55 = '$12,998.40 - $77,383.55' ; VALUE IPFOU11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 83.8 - 2296.69 = '$83.80 - $2,296.69' 2296.7 - 5273.86 = '$2,296.70 - $5,273.86' 5273.87 - 11644.33 = '$5,273.87 - $11,644.33' 11644.34 - 76315.2 = '$11,644.34 - $76,315.20' ; VALUE IPFPV11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.5 - 1621.32 = '$1.50 - $1,621.32' 1621.33 - 6260.59 = '$1,621.33 - $6,260.59' 6260.6 - 12946.76 = '$6,260.60 - $12,946.76' 12946.77 - 382677.47 = '$12,946.77 - $382,677.47' ; VALUE IPFSF11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 100 = '$1.00 - $100.00' 100.01 - 317.26 = '$100.01 - $317.26' 317.27 - 1037.79 = '$317.27 - $1,037.79' 1037.8 - 54263.93 = '$1,037.80 - $54,263.93' ; VALUE IPFSL11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 72.75 - 1608 = '$72.75 - $1,608.00' 1608.01 - 4110 = '$1,608.01 - $4,110.00' 4110.01 - 10099.83 = '$4,110.01 - $10,099.83' 10099.84 - 76209.62 = '$10,099.84 - $76,209.62' ; VALUE IPFTC11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 27 - 9918.8 = '$27.00 - $9,918.80' 9918.81 - 18735 = '$9,918.81 - $18,735.00' 18735.01 - 37051.02 = '$18,735.01 - $37,051.02' 37051.03 - 1325552.8 = '$37,051.03 - $1,325,552.80' ; VALUE IPFTR11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 34.38 - 88513.56 = '$34.38 - $88,513.56' ; VALUE IPFVA11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 189.72 - 1839.24 = '$189.72 - $1,839.24' 1839.25 - 5642.17 = '$1,839.25 - $5,642.17' 5642.18 - 10984.31 = '$5,642.18 - $10,984.31' 10984.32 - 84804.01 = '$10,984.32 - $84,804.01' ; VALUE IPFWC11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 259 - 2259.08 = '$259.00 - $2,259.08' 2259.09 - 6440.34 = '$2,259.09 - $6,440.34' 6440.35 - 19702.32 = '$6,440.35 - $19,702.32' 19702.33 - 165697.93 = '$19,702.33 - $165,697.93' ; VALUE IPFXP11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.14 - 3199.76 = '$4.14 - $3,199.76' 3199.77 - 6688.25 = '$3,199.77 - $6,688.25' 6688.26 - 12580.78 = '$6,688.26 - $12,580.78' 12580.79 - 382677.47 = '$12,580.79 - $382,677.47' ; 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 IPTC11XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 45.94 - 11705.27 = '$45.94 - $11,705.27' 11705.28 - 21706.08 = '$11,705.28 - $21,706.08' 21706.09 - 42368 = '$21,706.09 - $42,368.00' 42368.01 - 1333852.8 = '$42,368.01 - $1,333,852.80' ; VALUE IPXP11XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.14 - 3879.18 = '$4.14 - $3,879.18' 3879.19 - 7692 = '$3,879.19 - $7,692.00' 7692.01 - 14253.43 = '$7,692.01 - $14,253.43' 14253.44 - 442797.33 = '$14,253.44 - $442,797.33' ; 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 - 193 = '1 - 193 NUMBER OF NIGHTS' ; VALUE PANELF 15 = 'PANEL 15' 16 = 'PANEL 16' ; VALUE PERWT11F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 692.586335 - 74694.669895 = '692.586335 - 74694.669895 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' ;