SAS User File for H144E 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 (H144E.SSP) or the ASCII data file (H144E.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\H144E.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.H144E; TITLE 'List of Variables in MEPS H144E SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H144E (OBS=20); TITLE 'First 20 Observations in MEPS H144E SAS Dataset'; RUN; The LIBNAME statement tells SAS the location (directory name) to store the permanent SAS dataset which is output by PROC XCOPY. The FILENAME statement tells SAS the location (complete directory and file name) of the input SAS transport data file. NOTES: 1) If you have an error reading a SAS data file you created, the problem may be a result of where you are storing and/or how you are retrieving the data. First check the data library for multiple releases of SAS files (e.g., V8 or higher with file extensions of '.SAS7BDAT' and V6 with file extensions of '.SD2') stored in the same location. a) You can avoid errors when reading these files by including the SAS release within the LIBNAME statement - e.g., LIBNAME PUFLIB V8 'C:\MEPS\SASDATA'; or b) Store SAS data files with different file extensions such as .SD2 and .SAS7BDAT, in separate folders (do not co-mingle V8 and V6 files in the same folder); or c) When importing transport files, output the SAS dataset to a different library than the one which contains the downloaded SAS transport file - e.g., LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\Hxxx.SSP'; PROC XCOPY IN=IN1 OUT=PUBLIB IMPORT; RUN; 2) The names used in the LIBNAME and FILENAME statements shown above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary aliases. 3) The directory and file names used in the LIBNAME and FILENAME statements shown above are Windows syntax and may need to be modified for other operating systems such as UNIX, MAC/OS, VMS, or OS/2. 4) H144E 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 H144E.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file H144E.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 H144E.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 H144E.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\H144E.DAT'; DATA PUFLIB.H144E; INFILE IN1 LRECL=356; 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 (H144E). In the example, after the successful completion of the DATA step, a PC file named H144E.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 (356 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 H144E.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., 356 for H144E.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (358 for H144E.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 (356 for H144E.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 (H144E.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.H144E; 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 H144E.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=356; 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 ERDATEYR 4.0 @61 ERDATEMM 2.0 @63 ERDATEDD 2.0 @65 SEEDOC 2.0 @67 VSTCTGRY 2.0 @69 VSTRELCN 2.0 @71 LABTEST 2.0 @73 SONOGRAM 2.0 @75 XRAYS 2.0 @77 MAMMOG 2.0 @79 MRI 2.0 @81 EKG 2.0 @83 EEG 2.0 @85 RCVVAC 2.0 @87 ANESTH 2.0 @89 THRTSWAB 2.0 @91 OTHSVCE 2.0 @93 SURGPROC 2.0 @95 MEDPRESC 2.0 @97 ERICD1X $3.0 @100 ERICD2X $3.0 @103 ERICD3X $3.0 @106 ERPRO1X $2.0 @108 ERPRO2X $2.0 @110 ERCCC1X $3.0 @113 ERCCC2X $3.0 @116 ERCCC3X $3.0 @119 FFERTYPE 2.0 @121 ERXP11X 8.2 @129 ERTC11X 9.2 @138 ERFSF11X 8.2 @146 ERFMR11X 8.2 @154 ERFMD11X 8.2 @162 ERFPV11X 8.2 @170 ERFVA11X 7.2 @177 ERFTR11X 7.2 @184 ERFOF11X 7.2 @191 ERFSL11X 7.2 @198 ERFWC11X 8.2 @206 ERFOR11X 8.2 @214 ERFOU11X 8.2 @222 ERFOT11X 8.2 @230 ERFXP11X 8.2 @238 ERFTC11X 9.2 @247 ERDSF11X 7.2 @254 ERDMR11X 7.2 @261 ERDMD11X 7.2 @268 ERDPV11X 7.2 @275 ERDVA11X 6.2 @281 ERDTR11X 6.2 @287 ERDOF11X 4.2 @291 ERDSL11X 7.2 @298 ERDWC11X 6.2 @304 ERDOR11X 7.2 @311 ERDOU11X 6.2 @317 ERDOT11X 7.2 @324 ERDXP11X 7.2 @331 ERDTC11X 8.2 @339 IMPFLAG 1.0 @340 PERWT11F 12.6 @352 VARSTR 4.0 @356 VARPSU 1.0 ; * FORMAT STATEMENTS; FORMAT DUID DUID. PID PID. DUPERSID $DUPERS. EVNTIDX $EVNTIDX. EVENTRN EVENTRNF. ERHEVIDX $ERHEIDF. FFEEIDX $FFEEIDX. PANEL PANELF. 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. THRTSWAB THRSWABF. OTHSVCE OTHSVCEF. SURGPROC SURGPROF. MEDPRESC MEDPRESF. ERICD1X $ERICD1X. ERICD2X $ERICD2X. ERICD3X $ERICD3X. ERPRO1X $ERPRO1X. ERPRO2X $ERPRO2X. ERCCC1X $ERCCC1X. ERCCC2X $ERCCC2X. ERCCC3X $ERCCC3X. FFERTYPE FFERTYPF. ERXP11X ERXP11XF. ERTC11X ERTC11XF. ERFSF11X ERFSF11F. ERFMR11X ERFMR11F. ERFMD11X ERFMD11F. ERFPV11X ERFPV11F. ERFVA11X ERFVA11F. ERFTR11X ERFTR11F. ERFOF11X ERFOF11F. ERFSL11X ERFSL11F. ERFWC11X ERFWC11F. ERFOR11X ERFOR11F. ERFOU11X ERFOU11F. ERFOT11X ERFOT11F. ERFXP11X ERFXP11F. ERFTC11X ERFTC11F. ERDSF11X ERDSF11F. ERDMR11X ERDMR11F. ERDMD11X ERDMD11F. ERDPV11X ERDPV11F. ERDVA11X ERDVA11F. ERDTR11X ERDTR11F. ERDOF11X ERDOF11F. ERDSL11X ERDSL11F. ERDWC11X ERDWC11F. ERDOR11X ERDOR11F. ERDOU11X ERDOU11F. ERDOT11X ERDOT11F. ERDXP11X ERDXP11F. ERDTC11X ERDTC11F. IMPFLAG IMPFLAGF. PERWT11F PERWT11F. 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' PANEL ='PANEL NUMBER' 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' THRTSWAB='THIS VISIT DID P HAVE A THROAT SWAB' 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' 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' ERXP11X ='TOT EXP FOR EVENT (ERFXP11X + ERDXP11X)' ERTC11X ='TOTAL CHG FOR EVENT (ERFTC11X+ERDTC11X)' ERFSF11X='FACILITY AMT PD, FAMILY (IMPUTED)' ERFMR11X='FACILITY AMT PD, MEDICARE (IMPUTED)' ERFMD11X='FACILITY AMT PD, MEDICAID (IMPUTED)' ERFPV11X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' ERFVA11X='FAC AMT PD,VETERANS/CHAMPVA(IMPUTED)' ERFTR11X='FACILITY AMT PD,TRICARE(IMPUTED)' ERFOF11X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' ERFSL11X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' ERFWC11X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' ERFOR11X='FACILITY AMT PD, OTH PRIV (IMPUTED)' ERFOU11X='FACILITY AMT PD, OTH PUB (IMPUTED)' ERFOT11X='FACILITY AMT PD, OTH INSUR (IMPUTED)' ERFXP11X='FACILITY SUM PAYMENTS ERFSF11X-ERFOT11X' ERFTC11X='TOTAL FACILITY CHARGE (IMPUTED)' ERDSF11X='DOCTOR AMOUNT PAID, FAMILY (IMPUTED)' ERDMR11X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' ERDMD11X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' ERDPV11X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' ERDVA11X='DR AMT PD,VETERANS/CHAMPVA(IMPUTED)' ERDTR11X='DOCTOR AMT PD,TRICARE(IMPUTED)' ERDOF11X='DOCTOR AMT PAID, OTH FEDERAL (IMPUTED)' ERDSL11X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' ERDWC11X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' ERDOR11X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' ERDOU11X='DOCTOR AMT PD, OTH PUB (IMPUTED)' ERDOT11X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' ERDXP11X='DOCTOR SUM PAYMENTS ERDSF11X - ERDOT11X' ERDTC11X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT11F='EXPENDITURE FILE PERSON WEIGHT, 2011' VARSTR ='VARIANCE ESTIMATION STRATUM, 2011' VARPSU ='VARIANCE ESTIMATION PSU, 2011' ; * 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' - '670' = '650-670' ; VALUE $ERCCC2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '670' = '650-670' ; VALUE $ERCCC3X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '670' = '650-670' ; VALUE ERDMD11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.33 - 28.9 = '$0.33 - $28.90' 28.91 - 58.62 = '$28.91 - $58.62' 58.63 - 117.55 = '$58.63 - $117.55' 117.56 - 7823.82 = '$117.56 - $7,823.82' ; VALUE ERDMR11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2 - 47.87 = '$2.00 - $47.87' 47.88 - 113.2 = '$47.88 - $113.20' 113.21 - 195.67 = '$113.21 - $195.67' 195.68 - 2689.87 = '$195.68 - $2,689.87' ; VALUE ERDOF11F -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 99999999.99 = '.01 - 99999999.99' ; VALUE ERDOR11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.53 - 24.32 = '$1.53 - $24.32' 24.33 - 64.02 = '$24.33 - $64.02' 64.03 - 171.43 = '$64.03 - $171.43' 171.44 - 1240.48 = '$171.44 - $1,240.48' ; VALUE ERDOT11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 10.95 - 40 = '$10.95 - $40.00' 40.01 - 185 = '$40.01 - $185.00' 185.01 - 378.95 = '$185.01 - $378.95' 378.96 - 1271 = '$378.96 - $1,271.00' ; VALUE ERDOU11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 7.27 - 23.88 = '$7.27 - $23.88' 23.89 - 64.6 = '$23.89 - $64.60' 64.61 - 131.1 = '$64.61 - $131.10' 131.11 - 401.22 = '$131.11 - $401.22' ; VALUE ERDPV11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 46.59 = '$0.01 - $46.59' 46.6 - 135.67 = '$46.60 - $135.67' 135.68 - 279.59 = '$135.68 - $279.59' 279.6 - 3786.57 = '$279.60 - $3,786.57' ; VALUE ERDSF11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.5 - 23.37 = '$0.50 - $23.37' 23.38 - 65 = '$23.38 - $65.00' 65.01 - 172.6 = '$65.01 - $172.60' 172.61 - 1607 = '$172.61 - $1,607.00' ; VALUE ERDSL11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.99 - 35.11 = '$1.99 - $35.11' 35.12 - 60.26 = '$35.12 - $60.26' 60.27 - 115.22 = '$60.27 - $115.22' 115.23 - 1187.21 = '$115.23 - $1,187.21' ; VALUE ERDTC11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.1 - 182.05 = '$4.10 - $182.05' 182.06 - 385 = '$182.06 - $385.00' 385.01 - 705 = '$385.01 - $705.00' 705.01 - 22185.55 = '$705.01 - $22,185.55' ; 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' 2011 = '2011' ; VALUE ERDTR11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.74 - 15.53 = '$1.74 - $15.53' 15.54 - 62.62 = '$15.54 - $62.62' 62.63 - 141.71 = '$62.63 - $141.71' 141.72 - 702.8 = '$141.72 - $702.80' ; VALUE ERDVA11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 9.5 - 37.14 = '$9.50 - $37.14' 37.15 - 119.28 = '$37.15 - $119.28' 119.29 - 264.92 = '$119.29 - $264.92' 264.93 - 544 = '$264.93 - $544.00' ; VALUE ERDWC11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.82 - 48.22 = '$8.82 - $48.22' 48.23 - 107.74 = '$48.23 - $107.74' 107.75 - 194.84 = '$107.75 - $194.84' 194.85 - 677.22 = '$194.85 - $677.22' ; VALUE ERDXP11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.54 - 47.04 = '$1.54 - $47.04' 47.05 - 114 = '$47.05 - $114.00' 114.01 - 238.46 = '$114.01 - $238.46' 238.47 - 7830.72 = '$238.47 - $7,830.72' ; VALUE ERFMD11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.18 - 84.02 = '$0.18 - $84.02' 84.03 - 185.44 = '$84.03 - $185.44' 185.45 - 380.26 = '$185.45 - $380.26' 380.27 - 18136.83 = '$380.27 - $18,136.83' ; VALUE ERFMR11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.63 - 140 = '$4.63 - $140.00' 140.01 - 311.7 = '$140.01 - $311.70' 311.71 - 549.65 = '$311.71 - $549.65' 549.66 - 25216.23 = '$549.66 - $25,216.23' ; VALUE ERFOF11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 30.68 - 63.02 = '$30.68 - $63.02' 63.03 - 191.66 = '$63.03 - $191.66' 191.67 - 261.88 = '$191.67 - $261.88' 261.89 - 1951.5 = '$261.89 - $1,951.50' ; VALUE ERFOR11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.65 - 70.11 = '$3.65 - $70.11' 70.12 - 215 = '$70.12 - $215.00' 215.01 - 677.55 = '$215.01 - $677.55' 677.56 - 17660.78 = '$677.56 - $17,660.78' ; VALUE ERFOT11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 9.33 - 317.28 = '$9.33 - $317.28' 317.29 - 900 = '$317.29 - $900.00' 900.01 - 1742.46 = '$900.01 - $1,742.46' 1742.47 - 16934.8 = '$1,742.47 - $16,934.80' ; VALUE ERFOU11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.62 - 86.89 = '$3.62 - $86.89' 86.9 - 201 = '$86.90 - $201.00' 201.01 - 459.59 = '$201.01 - $459.59' 459.6 - 10671.04 = '$459.60 - $10,671.04' ; VALUE ERFPV11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 199.99 = '$0.01 - $199.99' 200 - 535.37 = '$200.00 - $535.37' 535.38 - 1131.5 = '$535.38 - $1,131.50' 1131.51 - 31734.61 = '$1,131.51 - $31,734.61' ; VALUE ERFSF11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.63 - 13795 = '$0.63 - $13,795.00' ; VALUE ERFSL11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 18.62 - 156.8 = '$18.62 - $156.80' 156.81 - 413.54 = '$156.81 - $413.54' 413.55 - 907.64 = '$413.55 - $907.64' 907.65 - 7130.02 = '$907.65 - $7,130.02' ; VALUE ERFTC11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 25 - 615.5 = '$25.00 - $615.50' 615.51 - 1315.44 = '$615.51 - $1,315.44' 1315.45 - 2743.48 = '$1,315.45 - $2,743.48' 2743.49 - 161874.56 = '$2,743.49 - $161,874.56' ; VALUE ERFTR11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.53 - 115.24 = '$4.53 - $115.24' 115.25 - 264.04 = '$115.25 - $264.04' 264.05 - 650.12 = '$264.05 - $650.12' 650.13 - 3501.32 = '$650.13 - $3,501.32' ; VALUE ERFVA11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 22.3 - 187.44 = '$22.30 - $187.44' 187.45 - 514.5 = '$187.45 - $514.50' 514.51 - 1086.61 = '$514.51 - $1,086.61' 1086.62 - 6518.3 = '$1,086.62 - $6,518.30' ; VALUE ERFWC11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 19.56 - 312.92 = '$19.56 - $312.92' 312.93 - 617.05 = '$312.93 - $617.05' 617.06 - 1306.17 = '$617.06 - $1,306.17' 1306.18 - 13782.75 = '$1,306.18 - $13,782.75' ; VALUE ERFXP11F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 164 = '$0.01 - $164.00' 164.01 - 380.25 = '$164.01 - $380.25' 380.26 - 872.49 = '$380.26 - $872.49' 872.5 - 31734.61 = '$872.50 - $31,734.61' ; 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' '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 $ERPRO2X '-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 ERTC11XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 30 - 780.41 = '$30.00 - $780.41' 780.42 - 1588.63 = '$780.42 - $1,588.63' 1588.64 - 3199.16 = '$1,588.64 - $3,199.16' 3199.17 - 162314.56 = '$3,199.17 - $162,314.56' ; VALUE ERXP11XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 184.91 = '$0.01 - $184.91' 184.92 - 436.79 = '$184.92 - $436.79' 436.8 - 954.87 = '$436.80 - $954.87' 954.88 - 34302.53 = '$954.88 - $34,302.53' ; 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 PANELF 15 = 'PANEL 15' 16 = 'PANEL 16' ; VALUE PERWT11F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 428.089467 - 86424.499851 = '428.089467 - 86424.499851 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 THRSWABF -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 VARPSUF (DEFAULT=40) 1 - 3 = '1 - 3' ; VALUE VARSTRF (DEFAULT=40) 1001 - 1165 = '1,001 - 1,165' ; 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 PREGNANCY-RELATED (INC PRENATAL/ DELV)' 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' ;