SAS User File for H59E 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 (H59E.SSP) or the ASCII data file (H59E.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\H59E.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.H59E; TITLE 'List of Variables in MEPS H59E SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H59E (OBS=20); TITLE 'First 20 Observations in MEPS H59E 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) H59E 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 H59E.SAS7BDAT will be created under the C:\MEPS directory when PROC XCOPY runs successfully. 4) The SAS transport file H59E.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 H59E.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\H59E.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 H59E.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\H59E.DAT'; DATA PUFLIB.H59E; 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 (H59E). In the example, after the successful completion of the DATA step, a PC file named H59E.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 H59E.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 H59E.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (345 for H59E.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 H59E.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 (H59E.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\H59E.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.H59E; 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 H59E.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 ERCCC1X $3.0 @108 ERCCC2X $3.0 @111 ERCCC3X $3.0 @114 FFERTYPE 2.0 @116 ERXP01X 8.2 @124 ERTC01X 8.2 @132 ERFSF01X 7.2 @139 ERFMR01X 7.2 @146 ERFMD01X 7.2 @153 ERFPV01X 8.2 @161 ERFVA01X 7.2 @168 ERFTR01X 7.2 @175 ERFOF01X 7.2 @182 ERFSL01X 7.2 @189 ERFWC01X 7.2 @196 ERFOR01X 7.2 @203 ERFOU01X 7.2 @210 ERFOT01X 7.2 @217 ERFXP01X 8.2 @225 ERFTC01X 8.2 @233 ERDSF01X 7.2 @240 ERDMR01X 7.2 @247 ERDMD01X 7.2 @254 ERDPV01X 7.2 @261 ERDVA01X 6.2 @267 ERDTR01X 6.2 @273 ERDOF01X 5.2 @278 ERDSL01X 6.2 @284 ERDWC01X 7.2 @291 ERDOR01X 7.2 @298 ERDOU01X 7.2 @305 ERDOT01X 6.2 @311 ERDXP01X 7.2 @318 ERDTC01X 8.2 @326 IMPFLAG 1.0 @327 PERWT01F 12.6 @339 VARSTR01 3.0 @342 VARPSU01 2.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. ERCCC1X $ERCCC1X. ERCCC2X $ERCCC2X. ERCCC3X $ERCCC3X. FFERTYPE FFERTYPF. ERXP01X ERXP01XF. ERTC01X ERTC01XF. ERFSF01X ERFSF01F. ERFMR01X ERFMR01F. ERFMD01X ERFMD01F. ERFPV01X ERFPV01F. ERFVA01X ERFVA01F. ERFTR01X ERFTR01F. ERFOF01X ERFOF01F. ERFSL01X ERFSL01F. ERFWC01X ERFWC01F. ERFOR01X ERFOR01F. ERFOU01X ERFOU01F. ERFOT01X ERFOT01F. ERFXP01X ERFXP01F. ERFTC01X ERFTC01F. ERDSF01X ERDSF01F. ERDMR01X ERDMR01F. ERDMD01X ERDMD01F. ERDPV01X ERDPV01F. ERDVA01X ERDVA01F. ERDTR01X ERDTR01F. ERDOF01X ERDOF01F. ERDSL01X ERDSL01F. ERDWC01X ERDWC01F. ERDOR01X ERDOR01F. ERDOU01X ERDOU01F. ERDOT01X ERDOT01F. ERDXP01X ERDXP01F. ERDTC01X ERDTC01F. IMPFLAG IMPFLAGF. PERWT01F PERWT01F. VARSTR01 VARSTR0F. VARPSU01 VARPSU0F. ; * 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' ERCCC1X ='MODIFIED CLINICAL CLASSIFICATION CODE' ERCCC2X ='MODIFIED CLINICAL CLASSIFICATION CODE' ERCCC3X ='MODIFIED CLINICAL CLASSIFICATION CODE' FFERTYPE='FLAT FEE BUNDLE' ERXP01X ='TOT EXP FOR EVENT (ERFXP01X + ERDXP01X)' ERTC01X ='TOTAL CHG FOR EVENT (ERFTC01X+ERDTC01X)' ERFSF01X='FACILITY AMT PD, FAMILY (IMPUTED)' ERFMR01X='FACILITY AMT PD, MEDICARE (IMPUTED)' ERFMD01X='FACILITY AMT PD, MEDICAID (IMPUTED)' ERFPV01X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' ERFVA01X='FACILITY AMT PD, VETERANS (IMPUTED)' ERFTR01X='FACILITY AMT PD, TRICARE (IMPUTED)' ERFOF01X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' ERFSL01X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' ERFWC01X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' ERFOR01X='FACILITY AMT PD, OTH PRIV (IMPUTED)' ERFOU01X='FACILITY AMT PD, OTH PUB (IMPUTED)' ERFOT01X='FACILITY AMT PD, OTH INSUR (IMPUTED)' ERFXP01X='FACILITY SUM PAYMENTS ERFSF01X-ERFOT01X' ERFTC01X='TOTAL FACILITY CHARGE (IMPUTED)' ERDSF01X='DOCTOR AMOUNT PAID, FAMILY (IMPUTED)' ERDMR01X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' ERDMD01X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' ERDPV01X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' ERDVA01X='DOCTOR AMOUNT PAID, VETERANS (IMPUTED)' ERDTR01X='DOCTOR AMOUNT PD, TRICARE (IMPUTED)' ERDOF01X='DOCTOR AMT PAID, OTH FEDERAL (IMPUTED)' ERDSL01X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' ERDWC01X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' ERDOR01X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' ERDOU01X='DOCTOR AMT PD, OTH PUB (IMPUTED)' ERDOT01X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' ERDXP01X='DOCTOR SUM PAYMENTS ERDSF01X - ERDOT01X' ERDTC01X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT01F='FINAL PERSON LEVEL WEIGHT, 2001' VARSTR01='VARIANCE ESTIMATION STRATUM, 2001' VARPSU01='VARIANCE ESTIMATION PSU, 2001' ; * 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 ERDMD01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.33 - 20.5 = '$0.33 - $20.50' 20.51 - 45.78 = '$20.51 - $45.78' 45.79 - 84.96 = '$45.79 - $84.96' 84.97 - 1044 = '$84.97 - $1,044.00' ; VALUE ERDMR01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.8 - 28 = '$1.80 - $28.00' 28.01 - 79.14 = '$28.01 - $79.14' 79.15 - 143.5 = '$79.15 - $143.50' 143.51 - 1676.51 = '$143.51 - $1,676.51' ; VALUE ERDOF01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 43.47 = '$43.47' ; VALUE ERDOR01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.19 - 21.94 = '$1.19 - $21.94' 21.95 - 73.97 = '$21.95 - $73.97' 73.98 - 151.35 = '$73.98 - $151.35' 151.36 - 2010.86 = '$151.36 - $2,010.86' ; VALUE ERDOT01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 26.33 - 341 = '$26.33 - $341.00' ; VALUE ERDOU01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.88 - 18.12 = '$1.88 - $18.12' 18.13 - 37.2 = '$18.13 - $37.20' 37.21 - 96.77 = '$37.21 - $96.77' 96.78 - 1638.41 = '$96.78 - $1,638.41' ; VALUE ERDPV01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.16 - 39 = '$0.16 - $39.00' 39.01 - 100.22 = '$39.01 - $100.22' 100.23 - 207.13 = '$100.23 - $207.13' 207.14 - 4644.2 = '$207.14 - $4,644.20' ; VALUE ERDSF01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.45 - 20.03 = '$0.45 - $20.03' 20.04 - 50.29 = '$20.04 - $50.29' 50.3 - 138 = '$50.30 - $138.00' 138.01 - 1742.7 = '$138.01 - $1,742.70' ; VALUE ERDSL01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 9.59 - 235 = '$9.59 - $235.00' ; VALUE ERDTC01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6.5 - 121 = '$6.50 - $121.00' 121.01 - 207 = '$121.01 - $207.00' 207.01 - 358 = '$207.01 - $358.00' 358.01 - 11142 = '$358.01 - $11,142.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' 2001 = '2001' ; VALUE ERDTR01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.88 - 293.99 = '$3.88 - $293.99' ; VALUE ERDVA01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.54 - 287.5 = '$2.54 - $287.50' ; VALUE ERDWC01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 11 - 38.23 = '$11.00 - $38.23' 38.24 - 111.72 = '$38.24 - $111.72' 111.73 - 165 = '$111.73 - $165.00' 165.01 - 1322.35 = '$165.01 - $1,322.35' ; VALUE ERDXP01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.16 - 47.78 = '$0.16 - $47.78' 47.79 - 104.92 = '$47.79 - $104.92' 104.93 - 200 = '$104.93 - $200.00' 200.01 - 4644.2 = '$200.01 - $4,644.20' ; VALUE ERFMD01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.89 - 51.87 = '$1.89 - $51.87' 51.88 - 109.43 = '$51.88 - $109.43' 109.44 - 221.96 = '$109.44 - $221.96' 221.97 - 9744.97 = '$221.97 - $9,744.97' ; VALUE ERFMR01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.9 - 71.78 = '$1.90 - $71.78' 71.79 - 136.19 = '$71.79 - $136.19' 136.2 - 316.43 = '$136.20 - $316.43' 316.44 - 8082.66 = '$316.44 - $8,082.66' ; VALUE ERFOF01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.9 - 42.81 = '$1.90 - $42.81' 42.82 - 162.72 = '$42.82 - $162.72' 162.73 - 400 = '$162.73 - $400.00' 400.01 - 2115.98 = '$400.01 - $2,115.98' ; VALUE ERFOR01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.9 - 62.76 = '$1.90 - $62.76' 62.77 - 138.61 = '$62.77 - $138.61' 138.62 - 287.91 = '$138.62 - $287.91' 287.92 - 7297.01 = '$287.92 - $7,297.01' ; VALUE ERFOT01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.99 - 85 = '$1.99 - $85.00' 85.01 - 205 = '$85.01 - $205.00' 205.01 - 335.64 = '$205.01 - $335.64' 335.65 - 9200 = '$335.65 - $9,200.00' ; VALUE ERFOU01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3 - 40.28 = '$3.00 - $40.28' 40.29 - 86.26 = '$40.29 - $86.26' 86.27 - 210.65 = '$86.27 - $210.65' 210.66 - 1489.95 = '$210.66 - $1,489.95' ; VALUE ERFPV01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.33 - 84 = '$0.33 - $84.00' 84.01 - 188 = '$84.01 - $188.00' 188.01 - 406.6 = '$188.01 - $406.60' 406.61 - 35967.2 = '$406.61 - $35,967.20' ; VALUE ERFSF01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.44 - 6444 = '$0.44 - $6,444.00' ; VALUE ERFSL01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 7.45 - 25 = '$7.45 - $25.00' 25.01 - 153.94 = '$25.01 - $153.94' 153.95 - 622.61 = '$153.95 - $622.61' 622.62 - 1666 = '$622.62 - $1,666.00' ; VALUE ERFTC01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.5 - 176 = '$3.50 - $176.00' 176.01 - 376.88 = '$176.01 - $376.88' 376.89 - 798 = '$376.89 - $798.00' 798.01 - 48724 = '$798.01 - $48,724.00' ; VALUE ERFTR01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8 - 83.79 = '$8.00 - $83.79' 83.8 - 202.13 = '$83.80 - $202.13' 202.14 - 442.83 = '$202.14 - $442.83' 442.84 - 1328.49 = '$442.84 - $1,328.49' ; VALUE ERFVA01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.42 - 59.64 = '$0.42 - $59.64' 59.65 - 217 = '$59.65 - $217.00' 217.01 - 357 = '$217.01 - $357.00' 357.01 - 6441.93 = '$357.01 - $6,441.93' ; VALUE ERFWC01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 41.68 - 129.85 = '$41.68 - $129.85' 129.86 - 300.04 = '$129.86 - $300.04' 300.05 - 592.88 = '$300.05 - $592.88' 592.89 - 3215.06 = '$592.89 - $3,215.06' ; VALUE ERFXP01F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.99 - 98.75 = '$1.99 - $98.75' 98.76 - 203.49 = '$98.76 - $203.49' 203.5 - 414.19 = '$203.50 - $414.19' 414.2 - 36967.2 = '$414.20 - $36,967.20' ; 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' 'V00' - 'V99' = 'V00 - V99' ; 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' 'V00' - 'V99' = 'V00 - V99' ; 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' 'V00' - 'V99' = 'V00 - V99' ; 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 ERTC01XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.5 - 249 = '$3.50 - $249.00' 249.01 - 496.07 = '$249.01 - $496.07' 496.08 - 980.47 = '$496.08 - $980.47' 980.48 - 58678 = '$980.48 - $58,678.00' ; VALUE ERXP01XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.7 - 120.99 = '$2.70 - $120.99' 121 - 255 = '$121.00 - $255.00' 255.01 - 514.54 = '$255.01 - $514.54' 514.55 - 37283.2 = '$514.55 - $37,283.20' ; 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 PERWT01F 0 = '0.000000 WEIGHT' 543.989781 - 47949.114336 = '543.989781 - 47949.114336 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 VARPSU0F (DEFAULT=40) 1 - 59 = '1 - 59' ; VALUE VARSTR0F (DEFAULT=40) 1 - 145 = '1 - 145' ; 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' ;