SAS User File for H85E 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 (H85E.SSP) or the ASCII data file (H85E.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\H85E.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.H85E; TITLE 'List of Variables in MEPS H85E SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H85E (OBS=20); TITLE 'First 20 Observations in MEPS H85E 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) H85E 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 H85E.SAS7BDAT will be created under the C:\MEPS directory when PROC XCOPY runs successfully. 4) The SAS transport file H85E.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 H85E.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\H85E.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 H85E.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\H85E.DAT'; DATA PUFLIB.H85E; INFILE IN1 LRECL=349; 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 (H85E). In the example, after the successful completion of the DATA step, a PC file named H85E.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 (349 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 H85E.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., 349 for H85E.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (351 for H85E.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 (349 for H85E.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 (H85E.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\H85E.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.H85E; 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 H85E.DAT file into a SAS data set, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=349; 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 FFBEF04 2.0 @120 ERXP04X 8.2 @128 ERTC04X 8.2 @136 ERFSF04X 8.2 @144 ERFMR04X 8.2 @152 ERFMD04X 8.2 @160 ERFPV04X 8.2 @168 ERFVA04X 7.2 @175 ERFTR04X 7.2 @182 ERFOF04X 7.2 @189 ERFSL04X 7.2 @196 ERFWC04X 8.2 @204 ERFOR04X 8.2 @212 ERFOU04X 8.2 @220 ERFOT04X 8.2 @228 ERFXP04X 8.2 @236 ERFTC04X 8.2 @244 ERDSF04X 7.2 @251 ERDMR04X 7.2 @258 ERDMD04X 7.2 @265 ERDPV04X 7.2 @272 ERDVA04X 6.2 @278 ERDTR04X 6.2 @284 ERDOF04X 4.2 @288 ERDSL04X 6.2 @294 ERDWC04X 7.2 @301 ERDOR04X 6.2 @307 ERDOU04X 6.2 @313 ERDOT04X 6.2 @319 ERDXP04X 7.2 @326 ERDTC04X 7.2 @333 IMPFLAG 1.0 @334 PERWT04F 12.6 @346 VARSTR 3.0 @349 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. FFBEF04 FFBEF04F. ERXP04X ERXP04XF. ERTC04X ERTC04XF. ERFSF04X ERFSF04F. ERFMR04X ERFMR04F. ERFMD04X ERFMD04F. ERFPV04X ERFPV04F. ERFVA04X ERFVA04F. ERFTR04X ERFTR04F. ERFOF04X ERFOF04F. ERFSL04X ERFSL04F. ERFWC04X ERFWC04F. ERFOR04X ERFOR04F. ERFOU04X ERFOU04F. ERFOT04X ERFOT04F. ERFXP04X ERFXP04F. ERFTC04X ERFTC04F. ERDSF04X ERDSF04F. ERDMR04X ERDMR04F. ERDMD04X ERDMD04F. ERDPV04X ERDPV04F. ERDVA04X ERDVA04F. ERDTR04X ERDTR04F. ERDOF04X ERDOF04F. ERDSL04X ERDSL04F. ERDWC04X ERDWC04F. ERDOR04X ERDOR04F. ERDOU04X ERDOU04F. ERDOT04X ERDOT04F. ERDXP04X ERDXP04F. ERDTC04X ERDTC04F. IMPFLAG IMPFLAGF. PERWT04F PERWT04F. 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' FFBEF04 ='TOTAL # OF VISITS IN FF BEFORE 2004' ERXP04X ='TOT EXP FOR EVENT (ERFXP04X + ERDXP04X)' ERTC04X ='TOTAL CHG FOR EVENT (ERFTC04X+ERDTC04X)' ERFSF04X='FACILITY AMT PD, FAMILY (IMPUTED)' ERFMR04X='FACILITY AMT PD, MEDICARE (IMPUTED)' ERFMD04X='FACILITY AMT PD, MEDICAID (IMPUTED)' ERFPV04X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' ERFVA04X='FACILITY AMT PD, VETERANS (IMPUTED)' ERFTR04X='FACILITY AMT PD, TRICARE (IMPUTED)' ERFOF04X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' ERFSL04X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' ERFWC04X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' ERFOR04X='FACILITY AMT PD, OTH PRIV (IMPUTED)' ERFOU04X='FACILITY AMT PD, OTH PUB (IMPUTED)' ERFOT04X='FACILITY AMT PD, OTH INSUR (IMPUTED)' ERFXP04X='FACILITY SUM PAYMENTS ERFSF04X-ERFOT04X' ERFTC04X='TOTAL FACILITY CHARGE (IMPUTED)' ERDSF04X='DOCTOR AMOUNT PAID, FAMILY (IMPUTED)' ERDMR04X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' ERDMD04X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' ERDPV04X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' ERDVA04X='DOCTOR AMOUNT PAID, VETERANS (IMPUTED)' ERDTR04X='DOCTOR AMOUNT PD, TRICARE (IMPUTED)' ERDOF04X='DOCTOR AMT PAID, OTH FEDERAL (IMPUTED)' ERDSL04X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' ERDWC04X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' ERDOR04X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' ERDOU04X='DOCTOR AMT PD, OTH PUB (IMPUTED)' ERDOT04X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' ERDXP04X='DOCTOR SUM PAYMENTS ERDSF04X - ERDOT04X' ERDTC04X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT04F='EXPENDITURE FILE PERSON WEIGHT, 2004' VARSTR ='VARIANCE ESTIMATION STRATUM, 2004' VARPSU ='VARIANCE ESTIMATION PSU, 2004' ; * 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' - '064' = '001-064' '076' - '260' = '076-260' '650' - '663' = '650-663' ; VALUE $ERCCC2X '-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 $ERCCC3X '-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 ERDMD04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.1 - 24.55 = '$0.10 - $24.55' 24.56 - 49 = '$24.56 - $49.00' 49.01 - 87.28 = '$49.01 - $87.28' 87.29 - 1422.38 = '$87.29 - $1,422.38' ; VALUE ERDMR04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.06 - 46.62 = '$5.06 - $46.62' 46.63 - 84.28 = '$46.63 - $84.28' 84.29 - 128.43 = '$84.29 - $128.43' 128.44 - 1141.08 = '$128.44 - $1,141.08' ; VALUE ERDOF04F (DEFAULT=40) . = '.' -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' ; VALUE ERDOR04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.43 - 15.49 = '$1.43 - $15.49' 15.5 - 46.5 = '$15.50 - $46.50' 46.51 - 135.99 = '$46.51 - $135.99' 136 - 940.25 = '$136.00 - $940.25' ; VALUE ERDOT04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 38 - 81 = '$38.00 - $81.00' 81.01 - 129.48 = '$81.01 - $129.48' 129.49 - 226.22 = '$129.49 - $226.22' 226.23 - 841.5 = '$226.23 - $841.50' ; VALUE ERDOU04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.48 - 11.16 = '$0.48 - $11.16' 11.17 - 48.95 = '$11.17 - $48.95' 48.96 - 97.38 = '$48.96 - $97.38' 97.39 - 271.6 = '$97.39 - $271.60' ; VALUE ERDPV04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.43 - 37.02 = '$1.43 - $37.02' 37.03 - 103.61 = '$37.03 - $103.61' 103.62 - 218 = '$103.62 - $218.00' 218.01 - 3994.65 = '$218.01 - $3,994.65' ; VALUE ERDSF04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.5 - 17.6 = '$0.50 - $17.60' 17.61 - 42.98 = '$17.61 - $42.98' 42.99 - 133 = '$42.99 - $133.00' 133.01 - 1105.07 = '$133.01 - $1,105.07' ; VALUE ERDSL04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 15.11 - 29.3 = '$15.11 - $29.30' 29.31 - 45.51 = '$29.31 - $45.51' 45.52 - 160 = '$45.52 - $160.00' 160.01 - 504 = '$160.01 - $504.00' ; VALUE ERDTC04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.78 - 159 = '$8.78 - $159.00' 159.01 - 258 = '$159.01 - $258.00' 258.01 - 442.24 = '$258.01 - $442.24' 442.25 - 4985 = '$442.25 - $4,985.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' 2004 = '2004' ; VALUE ERDTR04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 7.67 - 18.43 = '$7.67 - $18.43' 18.44 - 49.56 = '$18.44 - $49.56' 49.57 - 89.95 = '$49.57 - $89.95' 89.96 - 243.22 = '$89.96 - $243.22' ; VALUE ERDVA04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.16 - 777 = '$0.16 - $777.00' ; VALUE ERDWC04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 9 - 50 = '$9.00 - $50.00' 50.01 - 89.02 = '$50.01 - $89.02' 89.03 - 155.31 = '$89.03 - $155.31' 155.32 - 2811.69 = '$155.32 - $2,811.69' ; VALUE ERDXP04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.92 - 49 = '$1.92 - $49.00' 49.01 - 97.95 = '$49.01 - $97.95' 97.96 - 189.78 = '$97.96 - $189.78' 189.79 - 3994.65 = '$189.79 - $3,994.65' ; VALUE ERFMD04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.39 - 54.22 = '$2.39 - $54.22' 54.23 - 111.68 = '$54.23 - $111.68' 111.69 - 249.51 = '$111.69 - $249.51' 249.52 - 28636.9 = '$249.52 - $28,636.90' ; VALUE ERFMR04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.64 - 78.22 = '$2.64 - $78.22' 78.23 - 199.99 = '$78.23 - $199.99' 200 - 388.55 = '$200.00 - $388.55' 388.56 - 10400 = '$388.56 - $10,400.00' ; VALUE ERFOF04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 19.3 - 86 = '$19.30 - $86.00' 86.01 - 184.25 = '$86.01 - $184.25' 184.26 - 335.09 = '$184.26 - $335.09' 335.1 - 5061.91 = '$335.10 - $5,061.91' ; VALUE ERFOR04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.8 - 59.42 = '$8.80 - $59.42' 59.43 - 166.37 = '$59.43 - $166.37' 166.38 - 487.57 = '$166.38 - $487.57' 487.58 - 13670.07 = '$487.58 - $13,670.07' ; VALUE ERFOT04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 9.5 - 124.97 = '$9.50 - $124.97' 124.98 - 287.8 = '$124.98 - $287.80' 287.81 - 1062 = '$287.81 - $1,062.00' 1062.01 - 13837 = '$1,062.01 - $13,837.00' ; VALUE ERFOU04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.08 - 74.55 = '$2.08 - $74.55' 74.56 - 145.59 = '$74.56 - $145.59' 145.59 < - 301.33 = '$145.59 - $301.33' 301.34 - 13769.55 = '$301.34 - $13,769.55' ; VALUE ERFPV04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2 - 120.14 = '$2.00 - $120.14' 120.15 - 301.07 = '$120.15 - $301.07' 301.08 - 702.53 = '$301.08 - $702.53' 702.54 - 52200 = '$702.54 - $52,200.00' ; VALUE ERFSF04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 30 = '$1.00 - $30.00' 30.01 - 57.94 = '$30.01 - $57.94' 57.95 - 145.78 = '$57.95 - $145.78' 145.79 - 22556.39 = '$145.79 - $22,556.39' ; VALUE ERFSL04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 19.75 - 71.57 = '$19.75 - $71.57' 71.58 - 152.8 = '$71.58 - $152.80' 152.81 - 385.2 = '$152.81 - $385.20' 385.21 - 1906.31 = '$385.21 - $1,906.31' ; VALUE ERFTC04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.74 - 260.45 = '$4.74 - $260.45' 260.46 - 558.06 = '$260.46 - $558.06' 558.07 - 1320.55 = '$558.07 - $1,320.55' 1320.56 - 87000 = '$1,320.56 - $87,000.00' ; VALUE ERFTR04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.78 - 124.85 = '$3.78 - $124.85' 124.86 - 229.98 = '$124.86 - $229.98' 229.99 - 601.73 = '$229.99 - $601.73' 601.74 - 6729 = '$601.74 - $6,729.00' ; VALUE ERFVA04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.78 - 77.13 = '$3.78 - $77.13' 77.14 - 221.96 = '$77.14 - $221.96' 221.97 - 436.87 = '$221.97 - $436.87' 436.88 - 5421.4 = '$436.88 - $5,421.40' ; VALUE ERFWC04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 26.83 - 162.69 = '$26.83 - $162.69' 162.7 - 292.86 = '$162.70 - $292.86' 292.87 - 546.84 = '$292.87 - $546.84' 546.85 - 14096.04 = '$546.85 - $14,096.04' ; VALUE ERFXP04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.64 - 101.56 = '$2.64 - $101.56' 101.57 - 253.4 = '$101.57 - $253.40' 253.41 - 539.77 = '$253.41 - $539.77' 539.78 - 53940 = '$539.78 - $53,940.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 ERTC04XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.74 - 353.05 = '$4.74 - $353.05' 353.06 - 710.04 = '$353.06 - $710.04' 710.05 - 1523.35 = '$710.05 - $1,523.35' 1523.36 - 87896 = '$1,523.36 - $87,896.00' ; VALUE ERXP04XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.64 - 125.28 = '$2.64 - $125.28' 125.29 - 294.67 = '$125.29 - $294.67' 294.68 - 614.94 = '$294.68 - $614.94' 614.95 - 54836 = '$614.95 - $54,836.00' ; VALUE EVENTRNF 1 = 'ROUND 1' 2 = 'ROUND 2' 3 = 'ROUND 3' 4 = 'ROUND 4' 5 = 'ROUND 5' ; VALUE $EVNTIDX OTHER = 'VALID ID' ; VALUE FFBEF04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 = '1' ; 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 PERWT04F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 589.374718 - 63727.504985 = '589.374718 - 63727.504985 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' ;