SAS User File for H178D 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 (H178D.SSP) or the ASCII data file (H178D.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\H178D.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.H178D; TITLE 'List of Variables in MEPS H178D SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H178D (OBS=20); TITLE 'First 20 Observations in MEPS H178D 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) H178D 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 H178D.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file H178D.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 H178D.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 H178D.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\H178D.DAT'; DATA PUFLIB.H178D; INFILE IN1 LRECL=358; 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 (H178D). In the example, after the successful completion of the DATA step, a PC file named H178D.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 (358 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 H178D.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., 358 for H178D.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (360 for H178D.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 (358 for H178D.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 (H178D.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.H178D; 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 H178D.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=358; 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 IPENDYR 4.0 @67 IPENDMM 2.0 @69 NUMNIGHX 3.0 @72 NUMNIGHT 2.0 @74 EMERROOM 2.0 @76 SPECCOND 2.0 @78 RSNINHOS 2.0 @80 DLVRTYPE 2.0 @82 ANYOPER 2.0 @84 IPCCC1X $3.0 @87 IPCCC2X $3.0 @90 IPCCC3X $3.0 @93 IPCCC4X $3.0 @96 DSCHPMED 2.0 @98 FFIPTYPE 2.0 @100 IPXP15X 9.2 @109 IPTC15X 9.2 @118 IPFSF15X 8.2 @126 IPFMR15X 9.2 @135 IPFMD15X 9.2 @144 IPFPV15X 9.2 @153 IPFVA15X 9.2 @162 IPFTR15X 8.2 @170 IPFOF15X 8.2 @178 IPFSL15X 8.2 @186 IPFWC15X 8.2 @194 IPFOR15X 9.2 @203 IPFOU15X 8.2 @211 IPFOT15X 9.2 @220 IPFXP15X 9.2 @229 IPFTC15X 9.2 @238 IPDSF15X 7.2 @245 IPDMR15X 8.2 @253 IPDMD15X 7.2 @260 IPDPV15X 8.2 @268 IPDVA15X 7.2 @275 IPDTR15X 7.2 @282 IPDOF15X 7.2 @289 IPDSL15X 6.2 @295 IPDWC15X 7.2 @302 IPDOR15X 8.2 @310 IPDOU15X 7.2 @317 IPDOT15X 7.2 @324 IPDXP15X 8.2 @332 IPDTC15X 9.2 @341 IMPFLAG 1.0 @342 PERWT15F 12.6 @354 VARSTR 4.0 @358 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. IPENDYR IPENDYRF. IPENDMM IPENDMMF. NUMNIGHX NUMNIGHX. NUMNIGHT NUMNIGHF. EMERROOM EMERROOF. SPECCOND SPECCONF. RSNINHOS RSNINHOF. DLVRTYPE DLVRTYPF. ANYOPER ANYOPERF. IPCCC1X $IPCCC1X. IPCCC2X $IPCCC2X. IPCCC3X $IPCCC3X. IPCCC4X $IPCCC4X. DSCHPMED DSCHPMEF. FFIPTYPE FFIPTYPF. IPXP15X IPXP15XF. IPTC15X IPTC15XF. IPFSF15X IPFSF15F. IPFMR15X IPFMR15F. IPFMD15X IPFMD15F. IPFPV15X IPFPV15F. IPFVA15X IPFVA15F. IPFTR15X IPFTR15F. IPFOF15X IPFOF15F. IPFSL15X IPFSL15F. IPFWC15X IPFWC15F. IPFOR15X IPFOR15F. IPFOU15X IPFOU15F. IPFOT15X IPFOT15F. IPFXP15X IPFXP15F. IPFTC15X IPFTC15F. IPDSF15X IPDSF15F. IPDMR15X IPDMR15F. IPDMD15X IPDMD15F. IPDPV15X IPDPV15F. IPDVA15X IPDVA15F. IPDTR15X IPDTR15F. IPDOF15X IPDOF15F. IPDSL15X IPDSL15F. IPDWC15X IPDWC15F. IPDOR15X IPDOR15F. IPDOU15X IPDOU15F. IPDOT15X IPDOT15F. IPDXP15X IPDXP15F. IPDTC15X IPDTC15F. IMPFLAG IMPFLAGF. PERWT15F PERWT15F. 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' IPENDYR ='EVENT END DATE - YEAR' IPENDMM ='EVENT END DATE - MONTH' 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' ANYOPER ='ANY OPERATIONS OR SURGERIES PERFORMED' 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' IPXP15X ='TOT EXP FOR EVENT (IPFXP15X+IPDXP15X)' IPTC15X ='TOTAL CHG FOR EVENT (IPFTC15X+IPDTC15X)' IPFSF15X='FACILITY AMT PD, FAMILY (IMPUTED)' IPFMR15X='FACILITY AMT PD, MEDICARE (IMPUTED)' IPFMD15X='FACILITY AMT PD, MEDICAID (IMPUTED)' IPFPV15X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' IPFVA15X='FAC AMT PD,VETERANS/CHAMPVA(IMPUTED)' IPFTR15X='FACILITY AMT PD,TRICARE(IMPUTED)' IPFOF15X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' IPFSL15X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' IPFWC15X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' IPFOR15X='FACILITY AMT PD, OTH PRIV (IMPUTED)' IPFOU15X='FACILITY AMT PD, OTH PUB (IMPUTED)' IPFOT15X='FACILITY AMT PD, OTH INSUR (IMPUTED)' IPFXP15X='FACILITY SUM PAYMENTS IPFSF15X-IPFOT15X' IPFTC15X='TOTAL FACILITY CHARGE (IMPUTED)' IPDSF15X='DOCTOR AMOUNT PD, FAMILY (IMPUTED)' IPDMR15X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' IPDMD15X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' IPDPV15X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' IPDVA15X='DR AMT PD,VETERANS/CHAMPVA(IMPUTED)' IPDTR15X='DOCTOR AMT PD,TRICARE(IMPUTED)' IPDOF15X='DOCTOR AMT PD, OTH FEDERAL (IMPUTED)' IPDSL15X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' IPDWC15X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' IPDOR15X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' IPDOU15X='DOCTOR AMT PD, OTH PUB (IMPUTED)' IPDOT15X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' IPDXP15X='DOCTOR SUM PAYMENTS IPDSF15X-IPDOT15X' IPDTC15X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT15F='EXPENDITURE FILE PERSON WEIGHT, 2015' VARSTR ='VARIANCE ESTIMATION STRATUM, 2015' VARPSU ='VARIANCE ESTIMATION PSU, 2015' ; * 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 $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 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' 2014 = '2014' 2015 = '2015' ; 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 IPDMD15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.36 - 105.11 = '$0.36 - $105.11' 105.12 - 325.66 = '$105.12 - $325.66' 325.67 - 923.16 = '$325.67 - $923.16' 923.17 - 6168.9 = '$923.17 - $6,168.90' ; VALUE IPDMR15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.69 - 264.72 = '$1.69 - $264.72' 264.73 - 620.64 = '$264.73 - $620.64' 620.65 - 1326.95 = '$620.65 - $1,326.95' 1326.96 - 15279.32 = '$1,326.96 - $15,279.32' ; VALUE IPDOF15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 9.48 - 1077.83 = '$9.48 - $1,077.83' ; VALUE IPDOR15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.07 - 74.41 = '$3.07 - $74.41' 74.42 - 222.4 = '$74.42 - $222.40' 222.41 - 826.41 = '$222.41 - $826.41' 826.42 - 13042.9 = '$826.42 - $13,042.90' ; VALUE IPDOT15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.9 - 27.4 = '$0.90 - $27.40' 27.41 - 130.04 = '$27.41 - $130.04' 130.05 - 507.65 = '$130.05 - $507.65' 507.66 - 3071.35 = '$507.66 - $3,071.35' ; VALUE IPDOU15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 15.45 - 102.41 = '$15.45 - $102.41' 102.42 - 279.12 = '$102.42 - $279.12' 279.13 - 806.05 = '$279.13 - $806.05' 806.06 - 4825.47 = '$806.06 - $4,825.47' ; VALUE IPDPV15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.05 - 159.65 = '$0.05 - $159.65' 159.66 - 611.33 = '$159.66 - $611.33' 611.34 - 1968.6 = '$611.34 - $1,968.60' 1968.61 - 47249.55 = '$1,968.61 - $47,249.55' ; VALUE IPDSF15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.02 - 38.97 = '$0.02 - $38.97' 38.98 - 134.87 = '$38.98 - $134.87' 134.88 - 333.13 = '$134.88 - $333.13' 333.14 - 2337.8 = '$333.14 - $2,337.80' ; VALUE IPDSL15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 22.2 - 108.62 = '$22.20 - $108.62' 108.63 - 273.9 = '$108.63 - $273.90' 273.91 - 551.33 = '$273.91 - $551.33' 551.34 - 726.63 = '$551.34 - $726.63' ; VALUE IPDTC15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 20.18 - 1008.09 = '$20.18 - $1,008.09' 1008.1 - 2530 = '$1,008.10 - $2,530.00' 2530.01 - 5691.32 = '$2,530.01 - $5,691.32' 5691.33 - 132177.62 = '$5,691.33 - $132,177.62' ; VALUE IPDTR15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.38 - 119.19 = '$2.38 - $119.19' 119.2 - 247.31 = '$119.20 - $247.31' 247.32 - 727.55 = '$247.32 - $727.55' 727.56 - 3376.21 = '$727.56 - $3,376.21' ; VALUE IPDVA15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 11.78 - 105.33 = '$11.78 - $105.33' 105.34 - 323.79 = '$105.34 - $323.79' 323.8 - 1206.52 = '$323.80 - $1,206.52' 1206.53 - 5005.54 = '$1,206.53 - $5,005.54' ; VALUE IPDWC15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 38.78 - 667.06 = '$38.78 - $667.06' 667.07 - 1287.84 = '$667.07 - $1,287.84' 1287.85 - 3071.35 = '$1,287.85 - $3,071.35' 3071.36 - 8507.22 = '$3,071.36 - $8,507.22' ; VALUE IPDXP15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.69 - 325.1 = '$1.69 - $325.10' 325.11 - 840.5 = '$325.11 - $840.50' 840.51 - 1875.11 = '$840.51 - $1,875.11' 1875.12 - 47249.55 = '$1,875.12 - $47,249.55' ; 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' 2015 = '2015' ; VALUE IPFMD15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.05 - 1260 = '$0.05 - $1,260.00' 1260.01 - 3730.97 = '$1,260.01 - $3,730.97' 3730.98 - 6808.53 = '$3,730.98 - $6,808.53' 6808.54 - 270924.83 = '$6,808.54 - $270,924.83' ; VALUE IPFMR15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.22 - 3882.61 = '$4.22 - $3,882.61' 3882.62 - 7617.58 = '$3,882.62 - $7,617.58' 7617.59 - 13012.17 = '$7,617.59 - $13,012.17' 13012.18 - 124401.19 = '$13,012.18 - $124,401.19' ; VALUE IPFOF15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 697.31 - 42391.14 = '$697.31 - $42,391.14' ; VALUE IPFOR15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 28.84 - 1227.07 = '$28.84 - $1,227.07' 1227.08 - 1446.55 = '$1,227.08 - $1,446.55' 1446.56 - 9187.27 = '$1,446.56 - $9,187.27' 9187.28 - 133146 = '$9,187.28 - $133,146.00' ; VALUE IPFOT15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 12.43 - 1253.35 = '$12.43 - $1,253.35' 1253.36 - 3139.21 = '$1,253.36 - $3,139.21' 3139.22 - 11874.89 = '$3,139.22 - $11,874.89' 11874.9 - 134360.21 = '$11,874.90 - $134,360.21' ; VALUE IPFOU15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 403.21 - 1235.43 = '$403.21 - $1,235.43' 1235.44 - 3036.8 = '$1,235.44 - $3,036.80' 3036.81 - 6186.29 = '$3,036.81 - $6,186.29' 6186.3 - 30468.73 = '$6,186.30 - $30,468.73' ; VALUE IPFPV15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2 - 1310.81 = '$2.00 - $1,310.81' 1310.82 - 6420.88 = '$1,310.82 - $6,420.88' 6420.89 - 15570 = '$6,420.89 - $15,570.00' 15570.01 - 313142.23 = '$15,570.01 - $313,142.23' ; VALUE IPFSF15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 75 = '$1.00 - $75.00' 75.01 - 300 = '$75.01 - $300.00' 300.01 - 1000 = '$300.01 - $1,000.00' 1000.01 - 68366.35 = '$1,000.01 - $68,366.35' ; VALUE IPFSL15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 43.92 - 413.12 = '$43.92 - $413.12' 413.13 - 1909.26 = '$413.13 - $1,909.26' 1909.27 - 4111.08 = '$1,909.27 - $4,111.08' 4111.09 - 69062.63 = '$4,111.09 - $69,062.63' ; VALUE IPFTC15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 15 - 12411 = '$15.00 - $12,411.00' 12411.01 - 24527.43 = '$12,411.01 - $24,527.43' 24527.44 - 47568.97 = '$24,527.44 - $47,568.97' 47568.98 - 948000 = '$47,568.98 - $948,000.00' ; VALUE IPFTR15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 11.23 - 1099.91 = '$11.23 - $1,099.91' 1099.92 - 1479.21 = '$1,099.92 - $1,479.21' 1479.22 - 6236.27 = '$1,479.22 - $6,236.27' 6236.28 - 47984 = '$6,236.28 - $47,984.00' ; VALUE IPFVA15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 37.75 - 4413.25 = '$37.75 - $4,413.25' 4413.26 - 7259.44 = '$4,413.26 - $7,259.44' 7259.45 - 15308.5 = '$7,259.45 - $15,308.50' 15308.51 - 109724.82 = '$15,308.51 - $109,724.82' ; VALUE IPFWC15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4766.43 - 9521.86 = '$4,766.43 - $9,521.86' 9521.87 - 29828 = '$9,521.87 - $29,828.00' 29828.01 - 53100.38 = '$29,828.01 - $53,100.38' 53100.39 - 70397.01 = '$53,100.39 - $70,397.01' ; VALUE IPFXP15F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 7.77 - 3946.46 = '$7.77 - $3,946.46' 3946.47 - 7382.75 = '$3,946.47 - $7,382.75' 7382.76 - 14298.72 = '$7,382.76 - $14,298.72' 14298.73 - 313157.23 = '$14,298.73 - $313,157.23' ; VALUE IPTC15XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 15 - 14294.93 = '$15.00 - $14,294.93' 14294.94 - 27582.23 = '$14,294.94 - $27,582.23' 27582.24 - 53577.11 = '$27,582.24 - $53,577.11' 53577.12 - 949506 = '$53,577.12 - $949,506.00' ; VALUE IPXP15XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 9 - 4272.74 = '$9.00 - $4,272.74' 4272.75 - 8485.12 = '$4,272.75 - $8,485.12' 8485.13 - 15826.17 = '$8,485.13 - $15,826.17' 15826.18 - 314193.13 = '$15,826.18 - $314,193.13' ; 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 - 366 = '1 - 366 NUMBER OF NIGHTS' ; VALUE PANELF 19 = 'PANEL 19' 20 = 'PANEL 20' ; VALUE PERWT15F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 678.130566 - 64523.926327 = '678.130566 - 64523.926327 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' ;