SAS User File for H102D 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 (H102D.SSP) or the ASCII data file (H102D.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\H102D.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.H102D; TITLE 'List of Variables in MEPS H102D SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H102D (OBS=20); TITLE 'First 20 Observations in MEPS H102D 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\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) H102D 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 H102D.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file H102D.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 H102D.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 H102D.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\H102D.DAT'; DATA PUFLIB.H102D; INFILE IN1 LRECL=379; 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 (H102D). In the example, after the successful completion of the DATA step, a PC file named H102D.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 (379 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 H102D.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., 379 for H102D.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (381 for H102D.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 (379 for H102D.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 (H102D.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.H102D; 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 H102D.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=379; 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 FFBEF06 2.0 @121 IPXP06X 9.2 @130 IPTC06X 10.2 @140 IPFSF06X 8.2 @148 IPFMR06X 9.2 @157 IPFMD06X 9.2 @166 IPFPV06X 9.2 @175 IPFVA06X 9.2 @184 IPFTR06X 8.2 @192 IPFOF06X 8.2 @200 IPFSL06X 8.2 @208 IPFWC06X 8.2 @216 IPFOR06X 8.2 @224 IPFOU06X 8.2 @232 IPFOT06X 8.2 @240 IPFXP06X 9.2 @249 IPFTC06X 10.2 @259 IPDSF06X 7.2 @266 IPDMR06X 8.2 @274 IPDMD06X 8.2 @282 IPDPV06X 8.2 @290 IPDVA06X 7.2 @297 IPDTR06X 7.2 @304 IPDOF06X 6.2 @310 IPDSL06X 7.2 @317 IPDWC06X 8.2 @325 IPDOR06X 8.2 @333 IPDOU06X 7.2 @340 IPDOT06X 7.2 @347 IPDXP06X 8.2 @355 IPDTC06X 8.2 @363 IMPFLAG 1.0 @364 PERWT06F 12.6 @376 VARSTR 3.0 @379 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. FFBEF06 FFBEF06F. IPXP06X IPXP06XF. IPTC06X IPTC06XF. IPFSF06X IPFSF06F. IPFMR06X IPFMR06F. IPFMD06X IPFMD06F. IPFPV06X IPFPV06F. IPFVA06X IPFVA06F. IPFTR06X IPFTR06F. IPFOF06X IPFOF06F. IPFSL06X IPFSL06F. IPFWC06X IPFWC06F. IPFOR06X IPFOR06F. IPFOU06X IPFOU06F. IPFOT06X IPFOT06F. IPFXP06X IPFXP06F. IPFTC06X IPFTC06F. IPDSF06X IPDSF06F. IPDMR06X IPDMR06F. IPDMD06X IPDMD06F. IPDPV06X IPDPV06F. IPDVA06X IPDVA06F. IPDTR06X IPDTR06F. IPDOF06X IPDOF06F. IPDSL06X IPDSL06F. IPDWC06X IPDWC06F. IPDOR06X IPDOR06F. IPDOU06X IPDOU06F. IPDOT06X IPDOT06F. IPDXP06X IPDXP06F. IPDTC06X IPDTC06F. IMPFLAG IMPFLAGF. PERWT06F PERWT06F. 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' FFBEF06 ='TOTAL # OF VISITS IN FF BEFORE 2006' IPXP06X ='TOT EXP FOR EVENT (IPFXP06X+IPDXP06X)' IPTC06X ='TOTAL CHG FOR EVENT (IPFTC06X+IPDTC06X)' IPFSF06X='FACILITY AMT PD, FAMILY (IMPUTED)' IPFMR06X='FACILITY AMT PD, MEDICARE (IMPUTED)' IPFMD06X='FACILITY AMT PD, MEDICAID (IMPUTED)' IPFPV06X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' IPFVA06X='FACILITY AMT PD, VETERANS (IMPUTED)' IPFTR06X='FACILITY AMT PD,TRICARE/CHAMPVA(IMPUTED)' IPFOF06X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' IPFSL06X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' IPFWC06X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' IPFOR06X='FACILITY AMT PD, OTH PRIV (IMPUTED)' IPFOU06X='FACILITY AMT PD, OTH PUB (IMPUTED)' IPFOT06X='FACILITY AMT PD, OTH INSUR (IMPUTED)' IPFXP06X='FACILITY SUM PAYMENTS IPFSF06X-IPFOT06X' IPFTC06X='TOTAL FACILITY CHARGE (IMPUTED)' IPDSF06X='DOCTOR AMOUNT PD, FAMILY (IMPUTED)' IPDMR06X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' IPDMD06X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' IPDPV06X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' IPDVA06X='DOCTOR AMOUNT PD, VETERANS (IMPUTED)' IPDTR06X='DOCTOR AMT PD, TRICARE/CHAMPVA (IMPUTED)' IPDOF06X='DOCTOR AMT PD, OTH FEDERAL (IMPUTED)' IPDSL06X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' IPDWC06X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' IPDOR06X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' IPDOU06X='DOCTOR AMT PD, OTH PUB (IMPUTED)' IPDOT06X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' IPDXP06X='DOCTOR SUM PAYMENTS IPDSF06X-IPDOT06X' IPDTC06X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT06F='EXPENDITURE FILE PERSON WEIGHT, 2006' VARSTR ='VARIANCE ESTIMATION STRATUM, 2006' VARPSU ='VARIANCE ESTIMATION PSU, 2006' ; * 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 FFBEF06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' 5 = '1 - 5' ; 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' 2005 = '2005' 2006 = '2006' ; 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 IPDMD06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.19 - 97.5 = '$0.19 - $97.50' 97.51 - 302.48 = '$97.51 - $302.48' 302.49 - 1044.19 = '$302.49 - $1,044.19' 1044.2 - 19480.22 = '$1,044.20 - $19,480.22' ; VALUE IPDMR06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.34 - 253.31 = '$4.34 - $253.31' 253.32 - 650 = '$253.32 - $650.00' 650.01 - 1328.69 = '$650.01 - $1,328.69' 1328.7 - 43057.81 = '$1,328.70 - $43,057.81' ; VALUE IPDOF06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 131.49 - 349.59 = '$131.49 - $349.59' ; VALUE IPDOR06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.93 - 71.54 = '$1.93 - $71.54' 71.55 - 173.53 = '$71.55 - $173.53' 173.54 - 388.69 = '$173.54 - $388.69' 388.7 - 15572 = '$388.70 - $15,572.00' ; VALUE IPDOT06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.36 - 4494.55 = '$5.36 - $4,494.55' ; VALUE IPDOU06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.35 - 200.97 = '$0.35 - $200.97' 200.98 - 682.63 = '$200.98 - $682.63' 682.64 - 1163.27 = '$682.64 - $1,163.27' 1163.28 - 5103.93 = '$1,163.28 - $5,103.93' ; VALUE IPDPV06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.81 - 187.79 = '$1.81 - $187.79' 187.8 - 722 = '$187.80 - $722.00' 722.01 - 2167.87 = '$722.01 - $2,167.87' 2167.88 - 43644.41 = '$2,167.88 - $43,644.41' ; VALUE IPDSF06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.52 - 39.5 = '$0.52 - $39.50' 39.51 - 119.33 = '$39.51 - $119.33' 119.34 - 351.99 = '$119.34 - $351.99' 352 - 9832.9 = '$352.00 - $9,832.90' ; VALUE IPDSL06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6.13 - 40.38 = '$6.13 - $40.38' 40.39 - 167.9 = '$40.39 - $167.90' 167.91 - 709.52 = '$167.91 - $709.52' 709.53 - 3124.23 = '$709.53 - $3,124.23' ; VALUE IPDTC06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 9.02 - 861 = '$9.02 - $861.00' 861.01 - 2395.53 = '$861.01 - $2,395.53' 2395.54 - 4987 = '$2,395.54 - $4,987.00' 4987.01 - 95121.69 = '$4,987.01 - $95,121.69' ; VALUE IPDTR06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.98 - 37.82 = '$2.98 - $37.82' 37.83 - 135.78 = '$37.83 - $135.78' 135.79 - 313.27 = '$135.79 - $313.27' 313.28 - 3070.49 = '$313.28 - $3,070.49' ; VALUE IPDVA06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.8 - 35.69 = '$3.80 - $35.69' 35.7 - 138 = '$35.70 - $138.00' 138.01 - 391 = '$138.01 - $391.00' 391.01 - 3290.6 = '$391.01 - $3,290.60' ; VALUE IPDWC06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 22.7 - 809.27 = '$22.70 - $809.27' 809.28 - 1549.98 = '$809.28 - $1,549.98' 1549.99 - 2909.54 = '$1,549.99 - $2,909.54' 2909.55 - 10597.07 = '$2,909.55 - $10,597.07' ; VALUE IPDXP06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.34 - 351.6 = '$4.34 - $351.60' 351.61 - 958.58 = '$351.61 - $958.58' 958.59 - 2031.08 = '$958.59 - $2,031.08' 2031.09 - 44670 = '$2,031.09 - $44,670.00' ; 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' 2006 = '2006' ; VALUE IPFMD06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.3 - 1111.07 = '$1.30 - $1,111.07' 1111.08 - 2720.48 = '$1,111.08 - $2,720.48' 2720.49 - 5007.68 = '$2,720.49 - $5,007.68' 5007.69 - 353113.78 = '$5,007.69 - $353,113.78' ; VALUE IPFMR06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3 - 3237.95 = '$3.00 - $3,237.95' 3237.96 - 5483.28 = '$3,237.96 - $5,483.28' 5483.29 - 10003.38 = '$5,483.29 - $10,003.38' 10003.39 - 248687.49 = '$10,003.39 - $248,687.49' ; VALUE IPFOF06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 883.23 - 3079.72 = '$883.23 - $3,079.72' 3079.73 - 7610.91 = '$3,079.73 - $7,610.91' 7610.92 - 11724.32 = '$7,610.92 - $11,724.32' 11724.33 - 18079.87 = '$11,724.33 - $18,079.87' ; VALUE IPFOR06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.19 - 27376.28 = '$8.19 - $27,376.28' ; VALUE IPFOT06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.31 - 771.25 = '$0.31 - $771.25' 771.26 - 1574.21 = '$771.26 - $1,574.21' 1574.22 - 2689.79 = '$1,574.22 - $2,689.79' 2689.8 - 18791.09 = '$2,689.80 - $18,791.09' ; VALUE IPFOU06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 31.53 - 1295.31 = '$31.53 - $1,295.31' 1295.32 - 2853.21 = '$1,295.32 - $2,853.21' 2853.22 - 6613.46 = '$2,853.22 - $6,613.46' 6613.47 - 83194.1 = '$6,613.47 - $83,194.10' ; VALUE IPFPV06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.64 - 1049.05 = '$2.64 - $1,049.05' 1049.06 - 3849.35 = '$1,049.06 - $3,849.35' 3849.36 - 8368.63 = '$3,849.36 - $8,368.63' 8368.64 - 364316.56 = '$8,368.64 - $364,316.56' ; VALUE IPFSF06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.03 - 71719.46 = '$0.03 - $71,719.46' ; VALUE IPFSL06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.41 - 1586.38 = '$4.41 - $1,586.38' 1586.39 - 3102.65 = '$1,586.39 - $3,102.65' 3102.66 - 6411.63 = '$3,102.66 - $6,411.63' 6411.64 - 14471.13 = '$6,411.64 - $14,471.13' ; VALUE IPFTC06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 15 - 6515.91 = '$15.00 - $6,515.91' 6515.92 - 12214.86 = '$6,515.92 - $12,214.86' 12214.87 - 26391.5 = '$12,214.87 - $26,391.50' 26391.51 - 1016868.11 = '$26,391.51 - $1,016,868.11' ; VALUE IPFTR06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 14.18 - 39523.27 = '$14.18 - $39,523.27' ; VALUE IPFVA06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 35.91 - 1743.46 = '$35.91 - $1,743.46' 1743.47 - 7772.8 = '$1,743.47 - $7,772.80' 7772.81 - 17187.96 = '$7,772.81 - $17,187.96' 17187.97 - 517122.91 = '$17,187.97 - $517,122.91' ; VALUE IPFWC06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 256.5 - 3425 = '$256.50 - $3,425.00' 3425.01 - 7778.76 = '$3,425.01 - $7,778.76' 7778.77 - 19447.55 = '$7,778.77 - $19,447.55' 19447.56 - 31161.31 = '$19,447.56 - $31,161.31' ; VALUE IPFXP06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.49 - 2866.02 = '$8.49 - $2,866.02' 2866.03 - 5202.03 = '$2,866.03 - $5,202.03' 5202.04 - 9805.89 = '$5,202.04 - $9,805.89' 9805.9 - 517122.91 = '$9,805.90 - $517,122.91' ; 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 IPTC06XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 15 - 8192.65 = '$15.00 - $8,192.65' 8192.66 - 15027.21 = '$8,192.66 - $15,027.21' 15027.22 - 30642.68 = '$15,027.22 - $30,642.68' 30642.69 - 1056106.62 = '$30,642.69 - $1,056,106.62' ; VALUE IPXP06XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.49 - 3456.59 = '$8.49 - $3,456.59' 3456.6 - 6136.06 = '$3,456.60 - $6,136.06' 6136.07 - 11223.78 = '$6,136.07 - $11,223.78' 11223.79 - 517122.91 = '$11,223.79 - $517,122.91' ; 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 - 163 = '1 - 163 NUMBER OF NIGHTS' ; VALUE PANELF 10 = 'PANEL 10' 11 = 'PANEL 11' ; VALUE PERWT06F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 556.62072 - 53573.829026 = '556.620720 - 53573.829026 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' ;