SAS User File for H77E 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 (H77E.SSP) or the ASCII data file (H77E.DAT) supplied in this PUF release. Section A provides a sample SAS program for the first alternative, which is to convert the SAS transport data file to a regular SAS dataset, using the SAS PROCedure: XCOPY. Section B provides a sample SAS program for the second alternative, which is to read data from the ASCII data file, using a SAS DATA step with INFILE, INPUT, and LABEL statements. Section C explains format-related SAS statements that a user may optionally use when working with the SAS dataset. Examples of SAS programs (DATA step or PROC) are provided in all three sections, primarily for the benefit of inexperienced users. Section D contains complete SAS statements that must be used in the programs described in Sections B and C. INCLUDED BELOW ARE NOTES APPLICABLE TO USERS OF SAS VERSION 8. ****************************************************************************** The sample SAS programs provided in Sections A and B show how to create a permanent SAS dataset from the data files provided in this PUF release. A. A Sample SAS Program for Converting the SAS Transport File to a Permanent SAS Dataset The SAS PROCedure XCOPY will read a SAS transport data file and convert the data to regular SAS format, storing the output in a permanent SAS dataset. This permanent SAS dataset can then be used for all future processing and analyses. Below is a sample PC-SAS program that can be used to convert the SAS transport file to a permanent PC SAS dataset (in a Windows environment, with SAS V6.12). LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\MEPS\H77E.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.H77E; TITLE 'List of Variables in MEPS H77E SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H77E (OBS=20); TITLE 'First 20 Observations in MEPS H77E SAS Dataset'; RUN; The LIBNAME statement tells SAS the location (directory name) to store the permanent SAS dataset which is output by PROC XCOPY. The FILENAME statement tells SAS the location (complete directory and file name) of the input SAS transport data file. NOTES: 1) The names used in the LIBNAME and FILENAME statements shown above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary aliases. 2) The directory and file names used in the LIBNAME and FILENAME statements shown above are Windows syntax and may need to be modified for other operating systems such as UNIX, MAC/OS, VMS, or OS/2. 3) H77E 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 H77E.SAS7BDAT will be created under the C:\MEPS directory when PROC XCOPY runs successfully. 4) The SAS transport file H77E.SSP was created from a PC-SAS Version 6.12 data file, using PROC COPY. This file has been tested for use with PC-SAS version 6.10 or higher, or with mainframe SAS version 6.08 or higher. This file may work with earlier versions of SAS, although it has not been tested with those versions. Users who are unable to use this SAS Transport file should instead convert the ASCII data file H77E.DAT to a SAS data set as described in Section B. ADDITIONAL NOTE TO USERS OF SAS VERSION 8: One of the following procedures should be used to avoid a SAS error when using the downloaded SAS Transport file: 1) Add V8 to LIBNAME statement - e.g., LIBNAME PUFLIB V8 'C:\MEPS'; OR 2) Output the SAS data set to a different library than the one which contains the downloaded SAS Transport file - e.g., LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\DOWNLOAD\H77E.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT RUN; B. A Sample SAS Program for Converting the ASCII Data File to a Permanent SAS Dataset The complete SAS statements (INPUT and LABEL) included in Section D are intended to save time for those users wishing to create a permanent SAS dataset from the H77E.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\H77E.DAT'; DATA PUFLIB.H77E; INFILE IN1 LRECL=343; INPUT .....; * to user: insert the complete INPUT statement that is provided in Section D; LABEL .....; * to user: insert the complete LABEL statement that is provided in Section D; RUN; Here is an explanation of the SAS statements used in the program above. LIBNAME statement: This tells SAS the location (directory name) of the permanent SAS dataset. FILENAME statement: This tells SAS the location of the input ASCII data file. DATA statement: This signifies the beginning of a SAS DATA step and specifies describes the output SAS dataset, referencing the LIBNAME entry (PUFLIB) and assigning an internal SAS dataset name (H77E). In the example, after the successful completion of the DATA step, a PC file named H77E.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 (343 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 H77E.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., 343 for H77E.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (345 for H77E.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 (343 for H77E.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 (H77E.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. ADDITIONAL NOTE TO USERS OF SAS VERSION 8: One of the following procedures should be used to avoid a SAS error when using the downloaded ASCII data file: 1) Add V8 to LIBNAME statement - e.g., LIBNAME PUFLIB V8 'C:\MEPS'; OR 2) Output the SAS data set to a different library than the one which contains the downloaded SAS Transport file - e.g., LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\DOWNLOAD\H77E.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT RUN; 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.H77E; TABLES .... / LIST MISSING; FORMAT varnam1 fmtnam1. Varnam2 fmtnam2. .... ; * to user: substitute varnami and fmtnami with actual variable names and format names; * Insert the FORMAT statement provided in Section D, if you are using all the variables; * in the TABLES statement; TITLE 'Frequency Distributions ....'; RUN; Here is an explanation of the SAS statements used above. LIBNAME statement: This tells SAS the location (directory name) of the SAS format library. Please note that SAS datasets (file name extension is 'SAS7BDAT') and format libraries (file name extension is 'SAS7BCAT') 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 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 H77E.DAT file into a SAS data set, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=343; INPUT @1 DUID 5.0 @6 PID 3.0 @9 DUPERSID $8.0 @17 EVNTIDX $12.0 @29 EVENTRN 1.0 @30 ERHEVIDX $12.0 @42 FFEEIDX $12.0 @54 MPCDATA 1.0 @55 ERDATEYR 4.0 @59 ERDATEMM 2.0 @61 ERDATEDD 2.0 @63 SEEDOC 2.0 @65 VSTCTGRY 2.0 @67 VSTRELCN 2.0 @69 LABTEST 2.0 @71 SONOGRAM 2.0 @73 XRAYS 2.0 @75 MAMMOG 2.0 @77 MRI 2.0 @79 EKG 2.0 @81 EEG 2.0 @83 RCVVAC 2.0 @85 ANESTH 2.0 @87 OTHSVCE 2.0 @89 SURGPROC 2.0 @91 MEDPRESC 2.0 @93 VAPLACE 1.0 @94 ERICD1X $3.0 @97 ERICD2X $3.0 @100 ERICD3X $3.0 @103 ERPRO1X $2.0 @105 ERPRO2X $2.0 @107 ERCCC1X $3.0 @110 ERCCC2X $3.0 @113 ERCCC3X $3.0 @116 FFERTYPE 2.0 @118 ERXP03X 8.2 @126 ERTC03X 8.2 @134 ERFSF03X 8.2 @142 ERFMR03X 7.2 @149 ERFMD03X 7.2 @156 ERFPV03X 8.2 @164 ERFVA03X 8.2 @172 ERFTR03X 7.2 @179 ERFOF03X 7.2 @186 ERFSL03X 7.2 @193 ERFWC03X 7.2 @200 ERFOR03X 8.2 @208 ERFOU03X 7.2 @215 ERFOT03X 7.2 @222 ERFXP03X 8.2 @230 ERFTC03X 8.2 @238 ERDSF03X 7.2 @245 ERDMR03X 6.2 @251 ERDMD03X 7.2 @258 ERDPV03X 7.2 @265 ERDVA03X 6.2 @271 ERDTR03X 6.2 @277 ERDOF03X 4.2 @281 ERDSL03X 7.2 @288 ERDWC03X 6.2 @294 ERDOR03X 7.2 @301 ERDOU03X 6.2 @307 ERDOT03X 6.2 @313 ERDXP03X 7.2 @320 ERDTC03X 7.2 @327 IMPFLAG 1.0 @328 PERWT03F 12.6 @340 VARSTR 3.0 @343 VARPSU 1.0 ; * FORMAT STATEMENTS; FORMAT DUID DUID. PID PID. DUPERSID $DUPERS. EVNTIDX $EVNTIDX. EVENTRN EVENTRNF. ERHEVIDX $ERHEIDF. FFEEIDX $FFEEIDX. MPCDATA MPCDATAF. ERDATEYR ERDTEYRF. ERDATEMM ERDTEMMF. ERDATEDD ERDTEDDF. SEEDOC SEEDOCF. VSTCTGRY VSTCTGRF. VSTRELCN VSTRELCF. LABTEST LABTESTF. SONOGRAM SONOGRMF. XRAYS XRAYSF. MAMMOG MAMMOGF. MRI MRIF. EKG EKGF. EEG EEGF. RCVVAC RCVVACF. ANESTH ANESTHF. OTHSVCE OTHSVCEF. SURGPROC SURGPROF. MEDPRESC MEDPRESF. VAPLACE VAPLACEF. ERICD1X $ERICD1X. ERICD2X $ERICD2X. ERICD3X $ERICD3X. ERPRO1X $ERPRO1X. ERPRO2X $ERPRO2X. ERCCC1X $ERCCC1X. ERCCC2X $ERCCC2X. ERCCC3X $ERCCC3X. FFERTYPE FFERTYPF. ERXP03X ERXP03XF. ERTC03X ERTC03XF. ERFSF03X ERFSF03F. ERFMR03X ERFMR03F. ERFMD03X ERFMD03F. ERFPV03X ERFPV03F. ERFVA03X ERFVA03F. ERFTR03X ERFTR03F. ERFOF03X ERFOF03F. ERFSL03X ERFSL03F. ERFWC03X ERFWC03F. ERFOR03X ERFOR03F. ERFOU03X ERFOU03F. ERFOT03X ERFOT03F. ERFXP03X ERFXP03F. ERFTC03X ERFTC03F. ERDSF03X ERDSF03F. ERDMR03X ERDMR03F. ERDMD03X ERDMD03F. ERDPV03X ERDPV03F. ERDVA03X ERDVA03F. ERDTR03X ERDTR03F. ERDOF03X ERDOF03F. ERDSL03X ERDSL03F. ERDWC03X ERDWC03F. ERDOR03X ERDOR03F. ERDOU03X ERDOU03F. ERDOT03X ERDOT03F. ERDXP03X ERDXP03F. ERDTC03X ERDTC03F. IMPFLAG IMPFLAGF. PERWT03F PERWT03F. 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 HOSPITAL STAY' FFEEIDX ='FLAT FEE ID' MPCDATA ='MPC DATA FLAG' ERDATEYR='EVENT DATE - YEAR' ERDATEMM='EVENT DATE - MONTH' ERDATEDD='EVENT DATE - DAY' SEEDOC ='DID P TALK TO MD THIS VISIT' VSTCTGRY='BEST CATEGORY FOR CARE P RECV ON VST DT' VSTRELCN='THIS VST RELATED TO SPEC CONDITION' LABTEST ='THIS VISIT DID P HAVE LAB TESTS' SONOGRAM='THIS VISIT DID P HAVE SONOGRAM OR ULTRSD' XRAYS ='THIS VISIT DID P HAVE X-RAYS' MAMMOG ='THIS VISIT DID P HAVE A MAMMOGRAM' MRI ='THIS VISIT DID P HAVE AN MRI/CATSCAN' EKG ='THIS VISIT DID P HAVE AN EKG OR ECG' EEG ='THIS VISIT DID P HAVE AN EEG' RCVVAC ='THIS VISIT DID P RECEIVE A VACCINATION' ANESTH ='THIS VISIT DID P RECEIVE ANESTHESIA' OTHSVCE ='THIS VISIT DID P HAVE OTH DIAG TEST/EXAM' SURGPROC='WAS SURG PROC PERFORMED ON P THIS VISIT' MEDPRESC='ANY MEDICINE PRESCRIBED FOR P THIS VISIT' VAPLACE ='VA FACILITY FLAG' ERICD1X ='3-DIGIT ICD-9-CM CONDITION CODE' ERICD2X ='3-DIGIT ICD-9-CM CONDITION CODE' ERICD3X ='3-DIGIT ICD-9-CM CONDITION CODE' ERPRO1X ='2-DIGIT ICD-9-CM PROCEDURE CODE' ERPRO2X ='2-DIGIT ICD-9-CM PROCEDURE CODE' ERCCC1X ='MODIFIED CLINICAL CLASSIFICATION CODE' ERCCC2X ='MODIFIED CLINICAL CLASSIFICATION CODE' ERCCC3X ='MODIFIED CLINICAL CLASSIFICATION CODE' FFERTYPE='FLAT FEE BUNDLE' ERXP03X ='TOT EXP FOR EVENT (ERFXP03X + ERDXP03X)' ERTC03X ='TOTAL CHG FOR EVENT (ERFTC03X+ERDTC03X)' ERFSF03X='FACILITY AMT PD, FAMILY (IMPUTED)' ERFMR03X='FACILITY AMT PD, MEDICARE (IMPUTED)' ERFMD03X='FACILITY AMT PD, MEDICAID (IMPUTED)' ERFPV03X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' ERFVA03X='FACILITY AMT PD, VETERANS (IMPUTED)' ERFTR03X='FACILITY AMT PD, TRICARE (IMPUTED)' ERFOF03X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' ERFSL03X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' ERFWC03X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' ERFOR03X='FACILITY AMT PD, OTH PRIV (IMPUTED)' ERFOU03X='FACILITY AMT PD, OTH PUB (IMPUTED)' ERFOT03X='FACILITY AMT PD, OTH INSUR (IMPUTED)' ERFXP03X='FACILITY SUM PAYMENTS ERFSF03X-ERFOT03X' ERFTC03X='TOTAL FACILITY CHARGE (IMPUTED)' ERDSF03X='DOCTOR AMOUNT PAID, FAMILY (IMPUTED)' ERDMR03X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' ERDMD03X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' ERDPV03X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' ERDVA03X='DOCTOR AMOUNT PAID, VETERANS (IMPUTED)' ERDTR03X='DOCTOR AMOUNT PD, TRICARE (IMPUTED)' ERDOF03X='DOCTOR AMT PAID, OTH FEDERAL (IMPUTED)' ERDSL03X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' ERDWC03X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' ERDOR03X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' ERDOU03X='DOCTOR AMT PD, OTH PUB (IMPUTED)' ERDOT03X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' ERDXP03X='DOCTOR SUM PAYMENTS ERDSF03X - ERDOT03X' ERDTC03X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT03F='EXPENDITURE FILE PERSON WEIGHT, 2003' VARSTR ='VARIANCE ESTIMATION STRATUM, 2003' VARPSU ='VARIANCE ESTIMATION PSU, 2003' ; * VALUE STATEMENTS; VALUE ANESTHF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE DUID OTHER = 'VALID ID' ; VALUE $DUPERS OTHER = 'VALID ID' ; VALUE EEGF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE EKGF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE $ERCCC1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '260' = '001 - 260' ; VALUE $ERCCC2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '260' = '001 - 260' ; VALUE $ERCCC3X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '260' = '001 - 260' ; VALUE ERDMD03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.52 - 21.3 = '$0.52 - $21.30' 21.31 - 46.42 = '$21.31 - $46.42' 46.43 - 82.76 = '$46.43 - $82.76' 82.77 - 1744.99 = '$82.77 - $1,744.99' ; VALUE ERDMR03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.39 - 43.55 = '$3.39 - $43.55' 43.56 - 77.78 = '$43.56 - $77.78' 77.79 - 133.84 = '$77.79 - $133.84' 133.85 - 628.94 = '$133.85 - $628.94' ; VALUE ERDOF03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.25 = '$2.25' ; VALUE ERDOR03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.19 - 19.06 = '$1.19 - $19.06' 19.07 - 70 = '$19.07 - $70.00' 70.01 - 143.79 = '$70.01 - $143.79' 143.8 - 1277.44 = '$143.80 - $1,277.44' ; VALUE ERDOT03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.17 - 789.81 = '$1.17 - $789.81' ; VALUE ERDOU03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.72 - 17.76 = '$1.72 - $17.76' 17.77 - 41.8 = '$17.77 - $41.80' 41.81 - 74.46 = '$41.81 - $74.46' 74.47 - 281.25 = '$74.47 - $281.25' ; VALUE ERDPV03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.19 - 41.58 = '$1.19 - $41.58' 41.59 - 105.96 = '$41.59 - $105.96' 105.97 - 198.42 = '$105.97 - $198.42' 198.43 - 4649.2 = '$198.43 - $4,649.20' ; VALUE ERDSF03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.55 - 18.22 = '$1.55 - $18.22' 18.23 - 37.9 = '$18.23 - $37.90' 37.91 - 113 = '$37.91 - $113.00' 113.01 - 1231.6 = '$113.01 - $1,231.60' ; VALUE ERDSL03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.15 - 1444 = '$8.15 - $1,444.00' ; VALUE ERDTC03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.99 - 150 = '$4.99 - $150.00' 150.01 - 231 = '$150.01 - $231.00' 231.01 - 386 = '$231.01 - $386.00' 386.01 - 7160 = '$386.01 - $7,160.00' ; VALUE ERDTEDDF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 31 = '1 - 31 DAY' ; VALUE ERDTEMMF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 12 = '1 - 12 MONTH' ; VALUE ERDTEYRF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 2003 = '2003' ; VALUE ERDTR03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.85 - 14.16 = '$1.85 - $14.16' 14.17 - 26.32 = '$14.17 - $26.32' 26.33 - 57.4 = '$26.33 - $57.40' 57.41 - 294.99 = '$57.41 - $294.99' ; VALUE ERDVA03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.13 - 520 = '$0.13 - $520.00' ; VALUE ERDWC03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 15 - 70.05 = '$15.00 - $70.05' 70.06 - 120 = '$70.06 - $120.00' 120.01 - 205 = '$120.01 - $205.00' 205.01 - 962.6 = '$205.01 - $962.60' ; VALUE ERDXP03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2 - 45.62 = '$2.00 - $45.62' 45.63 - 93.65 = '$45.63 - $93.65' 93.66 - 183.96 = '$93.66 - $183.96' 183.97 - 5213.25 = '$183.97 - $5,213.25' ; VALUE ERFMD03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.05 - 59.21 = '$2.05 - $59.21' 59.22 - 116.97 = '$59.22 - $116.97' 116.98 - 228 = '$116.98 - $228.00' 228.01 - 5753.21 = '$228.01 - $5,753.21' ; VALUE ERFMR03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.75 - 74.47 = '$0.75 - $74.47' 74.48 - 167.9 = '$74.48 - $167.90' 167.91 - 380.64 = '$167.91 - $380.64' 380.65 - 8800 = '$380.65 - $8,800.00' ; VALUE ERFOF03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 14.79 - 130.65 = '$14.79 - $130.65' 130.66 - 234.35 = '$130.66 - $234.35' 234.36 - 325.12 = '$234.36 - $325.12' 325.13 - 2286.72 = '$325.13 - $2,286.72' ; VALUE ERFOR03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6.45 - 72 = '$6.45 - $72.00' 72.01 - 189 = '$72.01 - $189.00' 189.01 - 383.72 = '$189.01 - $383.72' 383.73 - 13858.67 = '$383.73 - $13,858.67' ; VALUE ERFOT03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4 - 84.4 = '$4.00 - $84.40' 84.41 - 256.58 = '$84.41 - $256.58' 256.59 - 531.73 = '$256.59 - $531.73' 531.74 - 6153.84 = '$531.74 - $6,153.84' ; VALUE ERFOU03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.52 - 35.31 = '$2.52 - $35.31' 35.32 - 87.9 = '$35.32 - $87.90' 87.91 - 190.97 = '$87.91 - $190.97' 190.98 - 6821.79 = '$190.98 - $6,821.79' ; VALUE ERFPV03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.42 - 110.07 = '$0.42 - $110.07' 110.08 - 269.26 = '$110.08 - $269.26' 269.27 - 576 = '$269.27 - $576.00' 576.01 - 26700 = '$576.01 - $26,700.00' ; VALUE ERFSF03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 25 = '$1.00 - $25.00' 25.01 - 50 = '$25.01 - $50.00' 50.01 - 121.48 = '$50.01 - $121.48' 121.49 - 10499.92 = '$121.49 - $10,499.92' ; VALUE ERFSL03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 15.71 - 71.5 = '$15.71 - $71.50' 71.51 - 155.23 = '$71.51 - $155.23' 155.24 - 610.7 = '$155.24 - $610.70' 610.71 - 3000 = '$610.71 - $3,000.00' ; VALUE ERFTC03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5 - 227.23 = '$5.00 - $227.23' 227.24 - 517 = '$227.24 - $517.00' 517.01 - 1113.8 = '$517.01 - $1,113.80' 1113.81 - 50200.69 = '$1,113.81 - $50,200.69' ; VALUE ERFTR03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 14.79 - 79.67 = '$14.79 - $79.67' 79.68 - 188.16 = '$79.68 - $188.16' 188.17 - 291.78 = '$188.17 - $291.78' 291.79 - 1676.9 = '$291.79 - $1,676.90' ; VALUE ERFVA03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 14.79 - 189.9 = '$14.79 - $189.90' 189.91 - 329.88 = '$189.91 - $329.88' 329.89 - 756.51 = '$329.89 - $756.51' 756.52 - 17134.51 = '$756.52 - $17,134.51' ; VALUE ERFWC03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 10 - 164.82 = '$10.00 - $164.82' 164.83 - 262.44 = '$164.83 - $262.44' 262.45 - 448.01 = '$262.45 - $448.01' 448.02 - 7670.06 = '$448.02 - $7,670.06' ; VALUE ERFXP03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.49 - 100 = '$1.49 - $100.00' 100.01 - 229.58 = '$100.01 - $229.58' 229.59 - 505.47 = '$229.59 - $505.47' 505.48 - 26700 = '$505.48 - $26,700.00' ; VALUE $ERHEIDF '-1' = '-1 INAPPLICABLE' OTHER = 'VALID ID' ; VALUE $ERICD1X '-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 $ERICD2X '-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 $ERICD3X '-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 $ERPRO1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '01' - '05' = '01 - 05' '06' - '07' = '06 - 07' '08' - '16' = '08 - 16' '18' - '20' = '18 - 20' '21' - '29' = '21 - 29' '30' - '34' = '30 - 34' '35' - '39' = '35 - 39' '40' - '41' = '40 - 41' '42' - '54' = '42 - 54' '55' - '59' = '55 - 59' '60' - '64' = '60 - 64' '65' - '71' = '65 - 71' '72' - '75' = '72 - 75' '76' - '84' = '76 - 84' '85' - '86' = '85 - 86' '87' - '99' = '87 - 99' ; VALUE $ERPRO2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '01' - '05' = '01 - 05' '06' - '07' = '06 - 07' '08' - '16' = '08 - 16' '18' - '20' = '18 - 20' '21' - '29' = '21 - 29' '30' - '34' = '30 - 34' '35' - '39' = '35 - 39' '40' - '41' = '40 - 41' '42' - '54' = '42 - 54' '55' - '59' = '55 - 59' '60' - '64' = '60 - 64' '65' - '71' = '65 - 71' '72' - '75' = '72 - 75' '76' - '84' = '76 - 84' '85' - '86' = '85 - 86' '87' - '99' = '87 - 99' ; VALUE ERTC03XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 12 - 322.75 = '$12.00 - $322.75' 322.76 - 646 = '$322.76 - $646.00' 646.01 - 1336 = '$646.01 - $1,336.00' 1336.01 - 51765.99 = '$1,336.01 - $51,765.99' ; VALUE ERXP03XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.49 - 125 = '$1.49 - $125.00' 125.01 - 269.22 = '$125.01 - $269.22' 269.23 - 572.54 = '$269.23 - $572.54' 572.55 - 27633.42 = '$572.55 - $27,633.42' ; 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 FFERTYPF -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 LABTESTF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE MAMMOGF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE MEDPRESF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE MPCDATAF 1 = '1 HAS MPC DATA' 2 = '2 NO MPC DATA' ; VALUE MRIF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE OTHSVCEF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE PERWT03F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 581.042337 - 57180.15692 = '581.042337 - 57180.156920 WEIGHT' ; VALUE PID OTHER = 'VALID ID' ; VALUE RCVVACF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE SEEDOCF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE SONOGRMF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE SURGPROF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; 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' ; VALUE VSTCTGRF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 DIAGNOSIS OR TREATMENT' 2 = '2 EMERGENCY (E.G., ACCIDENT OR INJURY)' 3 = '3 PSYCHOTHERAPY/MENTAL HEALTH COUNSELING' 4 = '4 FOLLOW-UP OR POST-OPERATIVE VISIT' 5 = '5 IMMUNIZATIONS OR SHOTS' 6 = '6 MATERNITY CARE (PRE/POSTNATAL)' 91 = '91 OTHER' ; VALUE VSTRELCF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE XRAYSF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ;