SAS User File for H94E 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 (H94E.SSP) or the ASCII data file (H94E.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 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 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'; FILENAME IN1 'C:\MEPS\H94E.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.H94E; TITLE 'List of Variables in MEPS H94E SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H94E (OBS=20); TITLE 'First 20 Observations in MEPS H94E 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 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'; 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 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\Hxx.SSP'; PROC XCOPY IN=IN1 OUT=PUBLIB IMPORT; RUN; 2) The names used in the LIBNAME and FILENAME statements shown above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary aliases. 3) The directory and file names used in the LIBNAME and FILENAME statements shown above are Windows syntax and may need to be modified for other operating systems such as UNIX, MAC/OS, VMS, or OS/2. 4) H94E 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 H94E.SAS7BDAT will be created under the C:\MEPS directory when PROC XCOPY runs successfully. 5) The SAS transport file H94E.SSP was created from a PC-SAS Version 8 data file, using PROC COPY. This file has been tested for use with SAS version 8 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 H94E.DAT to a SAS data set 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 H94E.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\H94E.DAT'; DATA PUFLIB.H94E; INFILE IN1 LRECL=YYYYY; 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 (H94E). In the example, after the successful completion of the DATA step, a PC file named H94E.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 (YYYYY 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 H94E.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., YYYYY for H94E.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (XXXXX for H94E.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 (YYYYY for H94E.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 (H94E.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'; 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.H94E; 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') and format libraries (file name extension is 'SAS7BDAT') 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.SAS7BDAT. 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 H94E.DAT file into a SAS data set, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=347; 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 OTHSVCE 2.0 @91 SURGPROC 2.0 @93 MEDPRESC 2.0 @95 VAPLACE 1.0 @96 ERICD1X $3.0 @99 ERICD2X $3.0 @102 ERICD3X $3.0 @105 ERPRO1X $2.0 @107 ERPRO2X $2.0 @109 ERCCC1X $3.0 @112 ERCCC2X $3.0 @115 ERCCC3X $3.0 @118 FFERTYPE 2.0 @120 ERXP05X 8.2 @128 ERTC05X 8.2 @136 ERFSF05X 8.2 @144 ERFMR05X 7.2 @151 ERFMD05X 7.2 @158 ERFPV05X 8.2 @166 ERFVA05X 7.2 @173 ERFTR05X 8.2 @181 ERFOF05X 7.2 @188 ERFSL05X 7.2 @195 ERFWC05X 7.2 @202 ERFOR05X 7.2 @209 ERFOU05X 7.2 @216 ERFOT05X 7.2 @223 ERFXP05X 8.2 @231 ERFTC05X 8.2 @239 ERDSF05X 7.2 @246 ERDMR05X 6.2 @252 ERDMD05X 7.2 @259 ERDPV05X 7.2 @266 ERDVA05X 6.2 @272 ERDTR05X 6.2 @278 ERDOF05X 6.2 @284 ERDSL05X 6.2 @290 ERDWC05X 6.2 @296 ERDOR05X 7.2 @303 ERDOU05X 6.2 @309 ERDOT05X 7.2 @316 ERDXP05X 7.2 @323 ERDTC05X 8.2 @331 IMPFLAG 1.0 @332 PERWT05F 12.6 @344 VARSTR 3.0 @347 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. 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. ERXP05X ERXP05XF. ERTC05X ERTC05XF. ERFSF05X ERFSF05F. ERFMR05X ERFMR05F. ERFMD05X ERFMD05F. ERFPV05X ERFPV05F. ERFVA05X ERFVA05F. ERFTR05X ERFTR05F. ERFOF05X ERFOF05F. ERFSL05X ERFSL05F. ERFWC05X ERFWC05F. ERFOR05X ERFOR05F. ERFOU05X ERFOU05F. ERFOT05X ERFOT05F. ERFXP05X ERFXP05F. ERFTC05X ERFTC05F. ERDSF05X ERDSF05F. ERDMR05X ERDMR05F. ERDMD05X ERDMD05F. ERDPV05X ERDPV05F. ERDVA05X ERDVA05F. ERDTR05X ERDTR05F. ERDOF05X ERDOF05F. ERDSL05X ERDSL05F. ERDWC05X ERDWC05F. ERDOR05X ERDOR05F. ERDOU05X ERDOU05F. ERDOT05X ERDOT05F. ERDXP05X ERDXP05F. ERDTC05X ERDTC05F. IMPFLAG IMPFLAGF. PERWT05F PERWT05F. 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' 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' ERXP05X ='TOT EXP FOR EVENT (ERFXP05X + ERDXP05X)' ERTC05X ='TOTAL CHG FOR EVENT (ERFTC05X+ERDTC05X)' ERFSF05X='FACILITY AMT PD, FAMILY (IMPUTED)' ERFMR05X='FACILITY AMT PD, MEDICARE (IMPUTED)' ERFMD05X='FACILITY AMT PD, MEDICAID (IMPUTED)' ERFPV05X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' ERFVA05X='FACILITY AMT PD, VETERANS (IMPUTED)' ERFTR05X='FACILITY AMT PD,TRICARE/CHAMPVA(IMPUTED)' ERFOF05X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' ERFSL05X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' ERFWC05X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' ERFOR05X='FACILITY AMT PD, OTH PRIV (IMPUTED)' ERFOU05X='FACILITY AMT PD, OTH PUB (IMPUTED)' ERFOT05X='FACILITY AMT PD, OTH INSUR (IMPUTED)' ERFXP05X='FACILITY SUM PAYMENTS ERFSF05X-ERFOT05X' ERFTC05X='TOTAL FACILITY CHARGE (IMPUTED)' ERDSF05X='DOCTOR AMOUNT PAID, FAMILY (IMPUTED)' ERDMR05X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' ERDMD05X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' ERDPV05X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' ERDVA05X='DOCTOR AMOUNT PAID, VETERANS (IMPUTED)' ERDTR05X='DOCTOR AMT PD, TRICARE/CHAMPVA (IMPUTED)' ERDOF05X='DOCTOR AMT PAID, OTH FEDERAL (IMPUTED)' ERDSL05X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' ERDWC05X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' ERDOR05X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' ERDOU05X='DOCTOR AMT PD, OTH PUB (IMPUTED)' ERDOT05X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' ERDXP05X='DOCTOR SUM PAYMENTS ERDSF05X - ERDOT05X' ERDTC05X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT05F='EXPENDITURE FILE PERSON WEIGHT, 2005' VARSTR ='VARIANCE ESTIMATION STRATUM, 2005' VARPSU ='VARIANCE ESTIMATION PSU, 2005' ; * 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 ERDMD05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.28 - 28.25 = '$0.28 - $28.25' 28.26 - 51.83 = '$28.26 - $51.83' 51.84 - 89.43 = '$51.84 - $89.43' 89.44 - 1767.28 = '$89.44 - $1,767.28' ; VALUE ERDMR05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.54 - 47.71 = '$5.54 - $47.71' 47.72 - 88.73 = '$47.72 - $88.73' 88.74 - 142.46 = '$88.74 - $142.46' 142.47 - 869.44 = '$142.47 - $869.44' ; VALUE ERDOF05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 100.46 = '$1.00 - $100.46' ; VALUE ERDOR05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.75 - 20.24 = '$1.75 - $20.24' 20.25 - 62.32 = '$20.25 - $62.32' 62.33 - 160 = '$62.33 - $160.00' 160.01 - 2434.99 = '$160.01 - $2,434.99' ; VALUE ERDOT05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.52 - 40.56 = '$2.52 - $40.56' 40.57 - 126.08 = '$40.57 - $126.08' 126.09 - 384 = '$126.09 - $384.00' 384.01 - 1061 = '$384.01 - $1,061.00' ; VALUE ERDOU05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.75 - 19.61 = '$0.75 - $19.61' 19.62 - 41.2 = '$19.62 - $41.20' 41.21 - 83.33 = '$41.21 - $83.33' 83.34 - 263.34 = '$83.34 - $263.34' ; VALUE ERDPV05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.28 - 40.11 = '$0.28 - $40.11' 40.12 - 114.88 = '$40.12 - $114.88' 114.89 - 222.03 = '$114.89 - $222.03' 222.04 - 4887.6 = '$222.04 - $4,887.60' ; VALUE ERDSF05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.6 - 15.2 = '$0.60 - $15.20' 15.21 - 41.45 = '$15.21 - $41.45' 41.46 - 127.48 = '$41.46 - $127.48' 127.49 - 1404.55 = '$127.49 - $1,404.55' ; VALUE ERDSL05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.84 - 360 = '$8.84 - $360.00' ; VALUE ERDTC05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8 - 172.51 = '$8.00 - $172.51' 172.52 - 270 = '$172.52 - $270.00' 270.01 - 448 = '$270.01 - $448.00' 448.01 - 14846 = '$448.01 - $14,846.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' 2005 = '2005' ; VALUE ERDTR05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.78 - 21.14 = '$1.78 - $21.14' 21.15 - 60.04 = '$21.15 - $60.04' 60.05 - 106.07 = '$60.05 - $106.07' 106.08 - 573.55 = '$106.08 - $573.55' ; VALUE ERDVA05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.38 - 3.75 = '$0.38 - $3.75' 3.76 - 33.61 = '$3.76 - $33.61' 33.62 - 45.72 = '$33.62 - $45.72' 45.73 - 463.9 = '$45.73 - $463.90' ; VALUE ERDWC05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 11.55 - 54.07 = '$11.55 - $54.07' 54.08 - 95.63 = '$54.08 - $95.63' 95.64 - 177.24 = '$95.64 - $177.24' 177.25 - 466 = '$177.25 - $466.00' ; VALUE ERDXP05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3 - 50.71 = '$3.00 - $50.71' 50.72 - 102.28 = '$50.72 - $102.28' 102.29 - 194.5 = '$102.29 - $194.50' 194.51 - 5748 = '$194.51 - $5,748.00' ; VALUE ERFMD05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.31 - 68.31 = '$0.31 - $68.31' 68.32 - 135.72 = '$68.32 - $135.72' 135.73 - 282.56 = '$135.73 - $282.56' 282.57 - 6570.6 = '$282.57 - $6,570.60' ; VALUE ERFMR05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.38 - 101.78 = '$2.38 - $101.78' 101.79 - 207.13 = '$101.79 - $207.13' 207.14 - 403.65 = '$207.14 - $403.65' 403.66 - 9325.43 = '$403.66 - $9,325.43' ; VALUE ERFOF05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 37.5 - 85.92 = '$37.50 - $85.92' 85.93 - 157.65 = '$85.93 - $157.65' 157.65 < - 243.86 = '$157.65 - $243.86' 243.87 - 7971.85 = '$243.87 - $7,971.85' ; VALUE ERFOR05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.21 - 73.95 = '$0.21 - $73.95' 73.96 - 172.38 = '$73.96 - $172.38' 172.39 - 486 = '$172.39 - $486.00' 486.01 - 5835.1 = '$486.01 - $5,835.10' ; VALUE ERFOT05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5 - 151.96 = '$5.00 - $151.96' 151.97 - 267.6 = '$151.97 - $267.60' 267.61 - 800 = '$267.61 - $800.00' 800.01 - 5929.6 = '$800.01 - $5,929.60' ; VALUE ERFOU05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 11.47 - 89.38 = '$11.47 - $89.38' 89.39 - 131.71 = '$89.39 - $131.71' 131.72 - 344.72 = '$131.72 - $344.72' 344.73 - 2961.07 = '$344.73 - $2,961.07' ; VALUE ERFPV05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.2 - 113.75 = '$0.20 - $113.75' 113.76 - 289.78 = '$113.76 - $289.78' 289.79 - 622.11 = '$289.79 - $622.11' 622.12 - 12919.73 = '$622.12 - $12,919.73' ; VALUE ERFSF05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.5 - 29 = '$0.50 - $29.00' 29.01 - 54.41 = '$29.01 - $54.41' 54.42 - 144.31 = '$54.42 - $144.31' 144.32 - 29000 = '$144.32 - $29,000.00' ; VALUE ERFSL05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 43 - 126.08 = '$43.00 - $126.08' 126.09 - 216 = '$126.09 - $216.00' 216.01 - 695.54 = '$216.01 - $695.54' 695.55 - 5023.2 = '$695.55 - $5,023.20' ; VALUE ERFTC05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6 - 287 = '$6.00 - $287.00' 287.01 - 614.6 = '$287.01 - $614.60' 614.61 - 1403.13 = '$614.61 - $1,403.13' 1403.14 - 50000 = '$1,403.14 - $50,000.00' ; VALUE ERFTR05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.21 - 66.38 = '$0.21 - $66.38' 66.39 - 204.66 = '$66.39 - $204.66' 204.67 - 543.22 = '$204.67 - $543.22' 543.23 - 29437.6 = '$543.23 - $29,437.60' ; VALUE ERFVA05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 7 - 187.37 = '$7.00 - $187.37' 187.38 - 342.06 = '$187.38 - $342.06' 342.07 - 1030.76 = '$342.07 - $1,030.76' 1030.77 - 9068 = '$1,030.77 - $9,068.00' ; VALUE ERFWC05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 64.32 - 188.3 = '$64.32 - $188.30' 188.31 - 364.99 = '$188.31 - $364.99' 365 - 655.98 = '$365.00 - $655.98' 655.99 - 3209 = '$655.99 - $3,209.00' ; VALUE ERFXP05F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.2 - 113.64 = '$0.20 - $113.64' 113.65 - 257 = '$113.65 - $257.00' 257.01 - 566.57 = '$257.01 - $566.57' 566.58 - 29482.6 = '$566.58 - $29,482.60' ; 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 ERTC05XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6 - 400.29 = '$6.00 - $400.29' 400.3 - 778.2 = '$400.30 - $778.20' 778.21 - 1631.75 = '$778.21 - $1,631.75' 1631.76 - 50000 = '$1,631.76 - $50,000.00' ; VALUE ERXP05XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.31 - 141.01 = '$0.31 - $141.01' 141.02 - 300.34 = '$141.02 - $300.34' 300.35 - 650.46 = '$300.35 - $650.46' 650.47 - 29482.6 = '$650.47 - $29,482.60' ; 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 9 = 'PANEL 9' 10 = 'PANEL 10' ; VALUE PERWT05F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 407.056011 - 42571.260441 = '407.056011 - 42571.260441 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' ;