SAS User File for H152E 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 (H152E.SSP) or the ASCII data file (H152E.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\H152E.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.H152E; TITLE 'List of Variables in MEPS H152E SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H152E (OBS=20); TITLE 'First 20 Observations in MEPS H152E 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) H152E 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 H152E.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file H152E.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 H152E.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 H152E.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\H152E.DAT'; DATA PUFLIB.H152E; INFILE IN1 LRECL=355; 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 (H152E). In the example, after the successful completion of the DATA step, a PC file named H152E.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 (355 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 H152E.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., 355 for H152E.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (357 for H152E.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 (355 for H152E.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 (H152E.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.H152E; 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 H152E.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=355; 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 ERCCC1X $3.0 @111 ERCCC2X $3.0 @114 ERCCC3X $3.0 @117 FFERTYPE 2.0 @119 FFBEF12 2.0 @121 ERXP12X 8.2 @129 ERTC12X 9.2 @138 ERFSF12X 8.2 @146 ERFMR12X 8.2 @154 ERFMD12X 8.2 @162 ERFPV12X 8.2 @170 ERFVA12X 8.2 @178 ERFTR12X 7.2 @185 ERFOF12X 7.2 @192 ERFSL12X 7.2 @199 ERFWC12X 7.2 @206 ERFOR12X 7.2 @213 ERFOU12X 8.2 @221 ERFOT12X 7.2 @228 ERFXP12X 8.2 @236 ERFTC12X 9.2 @245 ERDSF12X 7.2 @252 ERDMR12X 7.2 @259 ERDMD12X 7.2 @266 ERDPV12X 7.2 @273 ERDVA12X 6.2 @279 ERDTR12X 7.2 @286 ERDOF12X 4.2 @290 ERDSL12X 6.2 @296 ERDWC12X 7.2 @303 ERDOR12X 7.2 @310 ERDOU12X 7.2 @317 ERDOT12X 6.2 @323 ERDXP12X 7.2 @330 ERDTC12X 8.2 @338 IMPFLAG 1.0 @339 PERWT12F 12.6 @351 VARSTR 4.0 @355 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. ERCCC1X $ERCCC1X. ERCCC2X $ERCCC2X. ERCCC3X $ERCCC3X. FFERTYPE FFERTYPF. FFBEF12 FFBEF12F. ERXP12X ERXP12XF. ERTC12X ERTC12XF. ERFSF12X ERFSF12F. ERFMR12X ERFMR12F. ERFMD12X ERFMD12F. ERFPV12X ERFPV12F. ERFVA12X ERFVA12F. ERFTR12X ERFTR12F. ERFOF12X ERFOF12F. ERFSL12X ERFSL12F. ERFWC12X ERFWC12F. ERFOR12X ERFOR12F. ERFOU12X ERFOU12F. ERFOT12X ERFOT12F. ERFXP12X ERFXP12F. ERFTC12X ERFTC12F. ERDSF12X ERDSF12F. ERDMR12X ERDMR12F. ERDMD12X ERDMD12F. ERDPV12X ERDPV12F. ERDVA12X ERDVA12F. ERDTR12X ERDTR12F. ERDOF12X ERDOF12F. ERDSL12X ERDSL12F. ERDWC12X ERDWC12F. ERDOR12X ERDOR12F. ERDOU12X ERDOU12F. ERDOT12X ERDOT12F. ERDXP12X ERDXP12F. ERDTC12X ERDTC12F. IMPFLAG IMPFLAGF. PERWT12F PERWT12F. 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' ERCCC1X ='MODIFIED CLINICAL CLASSIFICATION CODE' ERCCC2X ='MODIFIED CLINICAL CLASSIFICATION CODE' ERCCC3X ='MODIFIED CLINICAL CLASSIFICATION CODE' FFERTYPE='FLAT FEE BUNDLE' FFBEF12 ='TOTAL # OF VISITS IN FF BEFORE 2012' ERXP12X ='TOT EXP FOR EVENT (ERFXP12X + ERDXP12X)' ERTC12X ='TOTAL CHG FOR EVENT (ERFTC12X+ERDTC12X)' ERFSF12X='FACILITY AMT PD, FAMILY (IMPUTED)' ERFMR12X='FACILITY AMT PD, MEDICARE (IMPUTED)' ERFMD12X='FACILITY AMT PD, MEDICAID (IMPUTED)' ERFPV12X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' ERFVA12X='FAC AMT PD,VETERANS/CHAMPVA(IMPUTED)' ERFTR12X='FACILITY AMT PD,TRICARE(IMPUTED)' ERFOF12X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' ERFSL12X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' ERFWC12X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' ERFOR12X='FACILITY AMT PD, OTH PRIV (IMPUTED)' ERFOU12X='FACILITY AMT PD, OTH PUB (IMPUTED)' ERFOT12X='FACILITY AMT PD, OTH INSUR (IMPUTED)' ERFXP12X='FACILITY SUM PAYMENTS ERFSF12X-ERFOT12X' ERFTC12X='TOTAL FACILITY CHARGE (IMPUTED)' ERDSF12X='DOCTOR AMOUNT PAID, FAMILY (IMPUTED)' ERDMR12X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' ERDMD12X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' ERDPV12X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' ERDVA12X='DR AMT PD,VETERANS/CHAMPVA(IMPUTED)' ERDTR12X='DOCTOR AMT PD,TRICARE(IMPUTED)' ERDOF12X='DOCTOR AMT PAID, OTH FEDERAL (IMPUTED)' ERDSL12X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' ERDWC12X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' ERDOR12X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' ERDOU12X='DOCTOR AMT PD, OTH PUB (IMPUTED)' ERDOT12X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' ERDXP12X='DOCTOR SUM PAYMENTS ERDSF12X - ERDOT12X' ERDTC12X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT12F='EXPENDITURE FILE PERSON WEIGHT, 2012' VARSTR ='VARIANCE ESTIMATION STRATUM, 2012' VARPSU ='VARIANCE ESTIMATION PSU, 2012' ; * 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 ERDMD12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.06 - 40 = '$0.06 - $40.00' 40.01 - 69.74 = '$40.01 - $69.74' 69.75 - 146.83 = '$69.75 - $146.83' 146.84 - 4427.13 = '$146.84 - $4,427.13' ; VALUE ERDMR12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.13 - 57.82 = '$3.13 - $57.82' 57.83 - 136.93 = '$57.83 - $136.93' 136.94 - 274.34 = '$136.94 - $274.34' 274.35 - 2781.97 = '$274.35 - $2,781.97' ; VALUE ERDOF12F -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 99999999.99 = '.01 - 99999999.99' ; VALUE ERDOR12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.67 - 40.57 = '$1.67 - $40.57' 40.58 - 138.61 = '$40.58 - $138.61' 138.62 - 234.35 = '$138.62 - $234.35' 234.36 - 2402.39 = '$234.36 - $2,402.39' ; VALUE ERDOT12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.93 - 985.44 = '$1.93 - $985.44' ; VALUE ERDOU12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.56 - 36.63 = '$0.56 - $36.63' 36.64 - 51.81 = '$36.64 - $51.81' 51.82 - 123.5 = '$51.82 - $123.50' 123.51 - 1236.72 = '$123.51 - $1,236.72' ; VALUE ERDPV12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.66 - 70.66 = '$1.66 - $70.66' 70.67 - 169 = '$70.67 - $169.00' 169.01 - 387.97 = '$169.01 - $387.97' 387.98 - 5898.86 = '$387.98 - $5,898.86' ; VALUE ERDSF12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.92 - 28 = '$0.92 - $28.00' 28.01 - 91 = '$28.01 - $91.00' 91.01 - 237.11 = '$91.01 - $237.11' 237.12 - 6873.28 = '$237.12 - $6,873.28' ; VALUE ERDSL12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.89 - 637.8 = '$2.89 - $637.80' ; VALUE ERDTC12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8 - 234 = '$8.00 - $234.00' 234.01 - 487 = '$234.01 - $487.00' 487.01 - 851 = '$487.01 - $851.00' 851.01 - 23928 = '$851.01 - $23,928.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' 2012 = '2012' ; VALUE ERDTR12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.24 - 33.52 = '$2.24 - $33.52' 33.53 - 52.62 = '$33.53 - $52.62' 52.63 - 208.98 = '$52.63 - $208.98' 208.99 - 1017.77 = '$208.99 - $1,017.77' ; VALUE ERDVA12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.72 - 7.39 = '$1.72 - $7.39' 7.4 - 36 = '$7.40 - $36.00' 36.01 - 117.17 = '$36.01 - $117.17' 117.18 - 428.22 = '$117.18 - $428.22' ; VALUE ERDWC12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6.05 - 77.46 = '$6.05 - $77.46' 77.47 - 169.56 = '$77.47 - $169.56' 169.57 - 353.59 = '$169.57 - $353.59' 353.6 - 2656.8 = '$353.60 - $2,656.80' ; VALUE ERDXP12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.67 - 62.03 = '$1.67 - $62.03' 62.04 - 153.6 = '$62.04 - $153.60' 153.61 - 341.43 = '$153.61 - $341.43' 341.44 - 6873.28 = '$341.44 - $6,873.28' ; VALUE ERFMD12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.57 - 75.3 = '$0.57 - $75.30' 75.31 - 176 = '$75.31 - $176.00' 176.01 - 346 = '$176.01 - $346.00' 346.01 - 45790.12 = '$346.01 - $45,790.12' ; VALUE ERFMR12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3 - 131.11 = '$3.00 - $131.11' 131.12 - 308.87 = '$131.12 - $308.87' 308.88 - 623.27 = '$308.88 - $623.27' 623.28 - 17100 = '$623.28 - $17,100.00' ; VALUE ERFOF12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3 - 90.03 = '$3.00 - $90.03' 90.04 - 206.8 = '$90.04 - $206.80' 206.81 - 489.99 = '$206.81 - $489.99' 490 - 1923 = '$490.00 - $1,923.00' ; VALUE ERFOR12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.3 - 85 = '$3.30 - $85.00' 85.01 - 258.21 = '$85.01 - $258.21' 258.22 - 678.87 = '$258.22 - $678.87' 678.88 - 7070 = '$678.88 - $7,070.00' ; VALUE ERFOT12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 7.32 - 300.73 = '$7.32 - $300.73' 300.74 - 794.63 = '$300.74 - $794.63' 794.64 - 2072.46 = '$794.64 - $2,072.46' 2072.47 - 8000 = '$2,072.47 - $8,000.00' ; VALUE ERFOU12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.74 - 98.04 = '$4.74 - $98.04' 98.05 - 205.2 = '$98.05 - $205.20' 205.21 - 522.7 = '$205.21 - $522.70' 522.71 - 45790.12 = '$522.71 - $45,790.12' ; VALUE ERFPV12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.12 - 214.98 = '$2.12 - $214.98' 214.99 - 548.15 = '$214.99 - $548.15' 548.16 - 1165.34 = '$548.16 - $1,165.34' 1165.35 - 19476.46 = '$1,165.35 - $19,476.46' ; VALUE ERFSF12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 35000 = '$1.00 - $35,000.00' ; VALUE ERFSL12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6.4 - 100.8 = '$6.40 - $100.80' 100.81 - 275.88 = '$100.81 - $275.88' 275.89 - 562.25 = '$275.89 - $562.25' 562.26 - 5757 = '$562.26 - $5,757.00' ; VALUE ERFTC12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 7 - 638 = '$7.00 - $638.00' 638.01 - 1349.72 = '$638.01 - $1,349.72' 1349.73 - 3084.48 = '$1,349.73 - $3,084.48' 3084.49 - 349542.91 = '$3,084.49 - $349,542.91' ; VALUE ERFTR12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.11 - 106.3 = '$5.11 - $106.30' 106.31 - 208.67 = '$106.31 - $208.67' 208.68 - 428.5 = '$208.68 - $428.50' 428.51 - 2732.68 = '$428.51 - $2,732.68' ; VALUE ERFVA12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.36 - 170.16 = '$8.36 - $170.16' 170.17 - 438.47 = '$170.17 - $438.47' 438.48 - 1303.91 = '$438.48 - $1,303.91' 1303.92 - 10656.79 = '$1,303.92 - $10,656.79' ; VALUE ERFWC12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 62.86 - 294.58 = '$62.86 - $294.58' 294.59 - 490.1 = '$294.59 - $490.10' 490.11 - 897.34 = '$490.11 - $897.34' 897.35 - 6574.9 = '$897.35 - $6,574.90' ; VALUE ERFXP12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.79 - 147.9 = '$1.79 - $147.90' 147.91 - 364.72 = '$147.91 - $364.72' 364.73 - 849.95 = '$364.73 - $849.95' 849.96 - 45790.12 = '$849.96 - $45,790.12' ; 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 ERTC12XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 10 - 802.3 = '$10.00 - $802.30' 802.31 - 1711.03 = '$802.31 - $1,711.03' 1711.04 - 3610.95 = '$1,711.04 - $3,610.95' 3610.96 - 354589.16 = '$3,610.96 - $354,589.16' ; VALUE ERXP12XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.79 - 181.39 = '$1.79 - $181.39' 181.4 - 451.52 = '$181.40 - $451.52' 451.53 - 1052.82 = '$451.53 - $1,052.82' 1052.83 - 46467.77 = '$1,052.83 - $46,467.77' ; VALUE EVENTRNF 1 = 'ROUND 1' 2 = 'ROUND 2' 3 = 'ROUND 3' 4 = 'ROUND 4' 5 = 'ROUND 5' ; VALUE $EVNTIDX OTHER = 'VALID ID' ; VALUE FFBEF12F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' 2 = '1 - 2' ; 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 16 = 'PANEL 16' 17 = 'PANEL 17' ; VALUE PERWT12F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 741.322158 - 75858.140165 = '741.322158 - 75858.140165 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' ;