SAS User File for H102E 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 (H102E.SSP) or the ASCII data file (H102E.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\H102E.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.H102E; TITLE 'List of Variables in MEPS H102E SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H102E (OBS=20); TITLE 'First 20 Observations in MEPS H102E 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\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) H102E 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 H102E.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file H102E.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 H102E.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 H102E.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\H102E.DAT'; DATA PUFLIB.H102E; INFILE IN1 LRECL=351; 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 (H102E). In the example, after the successful completion of the DATA step, a PC file named H102E.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 (351 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 H102E.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., 351 for H102E.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (353 for H102E.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 (351 for H102E.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 (H102E.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.H102E; 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 H102E.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=351; 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 FFBEF06 2.0 @122 FFTOT07 2.0 @124 ERXP06X 8.2 @132 ERTC06X 8.2 @140 ERFSF06X 7.2 @147 ERFMR06X 8.2 @155 ERFMD06X 7.2 @162 ERFPV06X 8.2 @170 ERFVA06X 8.2 @178 ERFTR06X 7.2 @185 ERFOF06X 7.2 @192 ERFSL06X 7.2 @199 ERFWC06X 7.2 @206 ERFOR06X 7.2 @213 ERFOU06X 7.2 @220 ERFOT06X 7.2 @227 ERFXP06X 8.2 @235 ERFTC06X 8.2 @243 ERDSF06X 7.2 @250 ERDMR06X 7.2 @257 ERDMD06X 7.2 @264 ERDPV06X 7.2 @271 ERDVA06X 6.2 @277 ERDTR06X 6.2 @283 ERDOF06X 5.2 @288 ERDSL06X 6.2 @294 ERDWC06X 6.2 @300 ERDOR06X 7.2 @307 ERDOU06X 7.2 @314 ERDOT06X 6.2 @320 ERDXP06X 7.2 @327 ERDTC06X 8.2 @335 IMPFLAG 1.0 @336 PERWT06F 12.6 @348 VARSTR 3.0 @351 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. FFBEF06 FFBEF06F. FFTOT07 FFTOT07F. ERXP06X ERXP06XF. ERTC06X ERTC06XF. ERFSF06X ERFSF06F. ERFMR06X ERFMR06F. ERFMD06X ERFMD06F. ERFPV06X ERFPV06F. ERFVA06X ERFVA06F. ERFTR06X ERFTR06F. ERFOF06X ERFOF06F. ERFSL06X ERFSL06F. ERFWC06X ERFWC06F. ERFOR06X ERFOR06F. ERFOU06X ERFOU06F. ERFOT06X ERFOT06F. ERFXP06X ERFXP06F. ERFTC06X ERFTC06F. ERDSF06X ERDSF06F. ERDMR06X ERDMR06F. ERDMD06X ERDMD06F. ERDPV06X ERDPV06F. ERDVA06X ERDVA06F. ERDTR06X ERDTR06F. ERDOF06X ERDOF06F. ERDSL06X ERDSL06F. ERDWC06X ERDWC06F. ERDOR06X ERDOR06F. ERDOU06X ERDOU06F. ERDOT06X ERDOT06F. ERDXP06X ERDXP06F. ERDTC06X ERDTC06F. IMPFLAG IMPFLAGF. PERWT06F PERWT06F. 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' FFBEF06 ='TOTAL # OF VISITS IN FF BEFORE 2006' FFTOT07 ='TOTAL # OF VISITS IN FF AFTER 2006' ERXP06X ='TOT EXP FOR EVENT (ERFXP06X + ERDXP06X)' ERTC06X ='TOTAL CHG FOR EVENT (ERFTC06X+ERDTC06X)' ERFSF06X='FACILITY AMT PD, FAMILY (IMPUTED)' ERFMR06X='FACILITY AMT PD, MEDICARE (IMPUTED)' ERFMD06X='FACILITY AMT PD, MEDICAID (IMPUTED)' ERFPV06X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' ERFVA06X='FACILITY AMT PD, VETERANS (IMPUTED)' ERFTR06X='FACILITY AMT PD,TRICARE/CHAMPVA(IMPUTED)' ERFOF06X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' ERFSL06X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' ERFWC06X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' ERFOR06X='FACILITY AMT PD, OTH PRIV (IMPUTED)' ERFOU06X='FACILITY AMT PD, OTH PUB (IMPUTED)' ERFOT06X='FACILITY AMT PD, OTH INSUR (IMPUTED)' ERFXP06X='FACILITY SUM PAYMENTS ERFSF06X-ERFOT06X' ERFTC06X='TOTAL FACILITY CHARGE (IMPUTED)' ERDSF06X='DOCTOR AMOUNT PAID, FAMILY (IMPUTED)' ERDMR06X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' ERDMD06X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' ERDPV06X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' ERDVA06X='DOCTOR AMOUNT PAID, VETERANS (IMPUTED)' ERDTR06X='DOCTOR AMT PD, TRICARE/CHAMPVA (IMPUTED)' ERDOF06X='DOCTOR AMT PAID, OTH FEDERAL (IMPUTED)' ERDSL06X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' ERDWC06X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' ERDOR06X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' ERDOU06X='DOCTOR AMT PD, OTH PUB (IMPUTED)' ERDOT06X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' ERDXP06X='DOCTOR SUM PAYMENTS ERDSF06X - ERDOT06X' ERDTC06X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT06F='EXPENDITURE FILE PERSON WEIGHT, 2006' VARSTR ='VARIANCE ESTIMATION STRATUM, 2006' VARPSU ='VARIANCE ESTIMATION PSU, 2006' ; * 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 ERDMD06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.46 - 29.99 = '$0.46 - $29.99' 30 - 52.31 = '$30.00 - $52.31' 52.32 - 97.24 = '$52.32 - $97.24' 97.25 - 1381.54 = '$97.25 - $1,381.54' ; VALUE ERDMR06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.96 - 49.02 = '$2.96 - $49.02' 49.03 - 104.93 = '$49.03 - $104.93' 104.94 - 156.17 = '$104.94 - $156.17' 156.18 - 4308.87 = '$156.18 - $4,308.87' ; VALUE ERDOF06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 34.12 - 95.25 = '$34.12 - $95.25' ; VALUE ERDOR06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.82 - 25.54 = '$1.82 - $25.54' 25.55 - 56.46 = '$25.55 - $56.46' 56.47 - 127.98 = '$56.47 - $127.98' 127.99 - 1183 = '$127.99 - $1,183.00' ; VALUE ERDOT06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 19.44 - 415 = '$19.44 - $415.00' ; VALUE ERDOU06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.88 - 11.28 = '$0.88 - $11.28' 11.29 - 39.97 = '$11.29 - $39.97' 39.98 - 72 = '$39.98 - $72.00' 72.01 - 1381.54 = '$72.01 - $1,381.54' ; VALUE ERDPV06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.32 - 35.09 = '$1.32 - $35.09' 35.1 - 112.17 = '$35.10 - $112.17' 112.18 - 208.89 = '$112.18 - $208.89' 208.9 - 6492.52 = '$208.90 - $6,492.52' ; VALUE ERDSF06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.26 - 20.61 = '$0.26 - $20.61' 20.62 - 56.36 = '$20.62 - $56.36' 56.37 - 149.03 = '$56.37 - $149.03' 149.04 - 4807.21 = '$149.04 - $4,807.21' ; VALUE ERDSL06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 14.9 - 359 = '$14.90 - $359.00' ; VALUE ERDTC06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5 - 188.38 = '$5.00 - $188.38' 188.39 - 308 = '$188.39 - $308.00' 308.01 - 528 = '$308.01 - $528.00' 528.01 - 21526 = '$528.01 - $21,526.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' 2006 = '2006' ; VALUE ERDTR06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.89 - 270.99 = '$1.89 - $270.99' ; VALUE ERDVA06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6.71 - 28.63 = '$6.71 - $28.63' 28.64 - 60.51 = '$28.64 - $60.51' 60.52 - 122.16 = '$60.52 - $122.16' 122.17 - 394 = '$122.17 - $394.00' ; VALUE ERDWC06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 14.97 - 80 = '$14.97 - $80.00' 80.01 - 116 = '$80.01 - $116.00' 116.01 - 210 = '$116.01 - $210.00' 210.01 - 557.88 = '$210.01 - $557.88' ; VALUE ERDXP06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.13 - 55.6 = '$2.13 - $55.60' 55.61 - 115.01 = '$55.61 - $115.01' 115.02 - 205.4 = '$115.02 - $205.40' 205.41 - 6492.52 = '$205.41 - $6,492.52' ; VALUE ERFMD06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.4 - 57.88 = '$1.40 - $57.88' 57.89 - 120.35 = '$57.89 - $120.35' 120.36 - 254.99 = '$120.36 - $254.99' 255 - 6076.33 = '$255.00 - $6,076.33' ; VALUE ERFMR06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.08 - 104.01 = '$1.08 - $104.01' 104.02 - 236.75 = '$104.02 - $236.75' 236.76 - 410.79 = '$236.76 - $410.79' 410.8 - 27936 = '$410.80 - $27,936.00' ; VALUE ERFOF06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 64.65 - 141.75 = '$64.65 - $141.75' 141.76 - 336.88 = '$141.76 - $336.88' 336.89 - 749.36 = '$336.89 - $749.36' 749.37 - 6057.3 = '$749.37 - $6,057.30' ; VALUE ERFOR06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.9 - 68.03 = '$8.90 - $68.03' 68.04 - 185.9 = '$68.04 - $185.90' 185.91 - 552.36 = '$185.91 - $552.36' 552.37 - 4760.96 = '$552.37 - $4,760.96' ; VALUE ERFOT06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6.35 - 116.69 = '$6.35 - $116.69' 116.7 - 348 = '$116.70 - $348.00' 348.01 - 727.83 = '$348.01 - $727.83' 727.84 - 5430.94 = '$727.84 - $5,430.94' ; VALUE ERFOU06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.36 - 58.94 = '$5.36 - $58.94' 58.95 - 181.45 = '$58.95 - $181.45' 181.46 - 318.58 = '$181.46 - $318.58' 318.59 - 6187.42 = '$318.59 - $6,187.42' ; VALUE ERFPV06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.53 - 123.48 = '$0.53 - $123.48' 123.49 - 315 = '$123.49 - $315.00' 315.01 - 738.69 = '$315.01 - $738.69' 738.7 - 23373.37 = '$738.70 - $23,373.37' ; VALUE ERFSF06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.49 - 40 = '$0.49 - $40.00' 40.01 - 75 = '$40.01 - $75.00' 75.01 - 164.03 = '$75.01 - $164.03' 164.04 - 8600 = '$164.04 - $8,600.00' ; VALUE ERFSL06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 9 - 69.18 = '$9.00 - $69.18' 69.19 - 435.99 = '$69.19 - $435.99' 436 - 1032.75 = '$436.00 - $1,032.75' 1032.76 - 5254.79 = '$1,032.76 - $5,254.79' ; VALUE ERFTC06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6 - 329.6 = '$6.00 - $329.60' 329.61 - 741 = '$329.61 - $741.00' 741.01 - 1800 = '$741.01 - $1,800.00' 1800.01 - 42685.99 = '$1,800.01 - $42,685.99' ; VALUE ERFTR06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 11.61 - 100 = '$11.61 - $100.00' 100.01 - 285.87 = '$100.01 - $285.87' 285.88 - 462.35 = '$285.88 - $462.35' 462.36 - 1215.3 = '$462.36 - $1,215.30' ; VALUE ERFVA06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.67 - 109.23 = '$3.67 - $109.23' 109.24 - 236.02 = '$109.24 - $236.02' 236.03 - 700.37 = '$236.03 - $700.37' 700.38 - 10654.27 = '$700.38 - $10,654.27' ; VALUE ERFWC06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 12.56 - 174.68 = '$12.56 - $174.68' 174.69 - 347.2 = '$174.69 - $347.20' 347.21 - 643.74 = '$347.21 - $643.74' 643.75 - 3677.59 = '$643.75 - $3,677.59' ; VALUE ERFXP06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.01 - 117.84 = '$2.01 - $117.84' 117.85 - 288.68 = '$117.85 - $288.68' 288.69 - 611.86 = '$288.69 - $611.86' 611.87 - 28888 = '$611.87 - $28,888.00' ; VALUE $ERHEIDF '-1' = '-1 INAPPLICABLE' OTHER = 'VALID ID' ; VALUE $ERICD1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '139' = '001 - 139' '140' - '239' = '140 - 239' '240' - '279' = '240 - 279' '280' - '289' = '280 - 289' '290' - '319' = '290 - 319' '320' - '389' = '320 - 389' '390' - '459' = '390 - 459' '460' - '519' = '460 - 519' '520' - '579' = '520 - 579' '580' - '629' = '580 - 629' '630' - '677' = '630 - 677' '680' - '709' = '680 - 709' '710' - '739' = '710 - 739' '740' - '759' = '740 - 759' '760' - '779' = '760 - 779' '780' - '799' = '780 - 799' '800' - '999' = '800 - 999' 'V01' - 'V83' = 'V01 - V83' ; VALUE $ERICD2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '139' = '001 - 139' '140' - '239' = '140 - 239' '240' - '279' = '240 - 279' '280' - '289' = '280 - 289' '290' - '319' = '290 - 319' '320' - '389' = '320 - 389' '390' - '459' = '390 - 459' '460' - '519' = '460 - 519' '520' - '579' = '520 - 579' '580' - '629' = '580 - 629' '630' - '677' = '630 - 677' '680' - '709' = '680 - 709' '710' - '739' = '710 - 739' '740' - '759' = '740 - 759' '760' - '779' = '760 - 779' '780' - '799' = '780 - 799' '800' - '999' = '800 - 999' 'V01' - 'V83' = 'V01 - V83' ; VALUE $ERICD3X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '139' = '001 - 139' '140' - '239' = '140 - 239' '240' - '279' = '240 - 279' '280' - '289' = '280 - 289' '290' - '319' = '290 - 319' '320' - '389' = '320 - 389' '390' - '459' = '390 - 459' '460' - '519' = '460 - 519' '520' - '579' = '520 - 579' '580' - '629' = '580 - 629' '630' - '677' = '630 - 677' '680' - '709' = '680 - 709' '710' - '739' = '710 - 739' '740' - '759' = '740 - 759' '760' - '779' = '760 - 779' '780' - '799' = '780 - 799' '800' - '999' = '800 - 999' 'V01' - 'V83' = 'V01 - V83' ; VALUE $ERPRO1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '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 ERTC06XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6 - 450.65 = '$6.00 - $450.65' 450.66 - 927.78 = '$450.66 - $927.78' 927.79 - 2043 = '$927.79 - $2,043.00' 2043.01 - 44759.99 = '$2,043.01 - $44,759.99' ; VALUE ERXP06XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.01 - 148.22 = '$2.01 - $148.22' 148.23 - 335.51 = '$148.23 - $335.51' 335.52 - 690.89 = '$335.52 - $690.89' 690.9 - 29037.79 = '$690.90 - $29,037.79' ; VALUE EVENTRNF 1 = 'ROUND 1' 2 = 'ROUND 2' 3 = 'ROUND 3' 4 = 'ROUND 4' 5 = 'ROUND 5' ; VALUE $EVNTIDX OTHER = 'VALID ID' ; VALUE FFBEF06F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' 3 - 5 = '3 - 5' ; 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 FFTOT07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 = '1' ; 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 10 = 'PANEL 10' 11 = 'PANEL 11' ; VALUE PERWT06F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 443.87472 - 64968.630418 = '443.874720 - 64968.630418 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' ;