SAS User File for H206E 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 (H206E.SSP) or the ASCII data file (H206E.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: CIMPORT. 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. ****************************************************************************** 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 CIMPORT 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). LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\H206E.SSP'; PROC CIMPORT DATA=PUFLIB.H206E INFILE=IN1; RUN; Below are SAS statements to print a list of variables and a few sample records from the permanent SAS dataset: PROC CONTENTS DATA=PUFLIB.H206E; TITLE 'List of Variables in MEPS H206E SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H206E (OBS=20); TITLE 'First 20 Observations in MEPS H206E SAS Dataset'; RUN; The LIBNAME statement tells SAS the location (directory name) to store the permanent SAS dataset which is output by PROC CIMPORT. The FILENAME statement tells SAS the location (complete directory and file name) of the input SAS transport data file. NOTES: 1) The names used in the LIBNAME and FILENAME statements shown above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary aliases. 2) The directory and file names used in the LIBNAME and FILENAME statements shown above are Windows syntax and may need to be modified for other operating systems such as UNIX and Linux. 3) H206E 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 CIMPORT, the output SAS dataset assumes the same dataset name (or file name). Hence, in the example above, a file named H206E.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC CIMPORT runs successfully. 4) The SAS transport file H206E.SSP was created from a SAS V9 data file, using PROC CPORT. This file should 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 H206E.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 H206E.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, Linux, etc.), use the editor provided as part of the SAS software. Following is a sample Windows SAS program that will convert the ASCII data file to SAS format: LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\H206E.DAT'; DATA PUFLIB.H206E; INFILE IN1 LRECL=332; 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 (H206E). In the example, after the successful completion of the DATA step, a PC file named H206E.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 (332 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 H206E.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., 332 for H206E.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (334 for H206E.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 (332 for H206E.DAT). INPUT statement: This specifies the input record layout, giving names, the beginning column positions, and the lengths for data items (which become SAS variables) in the ASCII data file (H206E.DAT). Variable type (numeric or character) is also defined by character variables having a dollar sign ($) directly before the variables length, while numeric variables do not have a dollar sign. LABEL statement: This associates descriptive names with the SAS variables. RUN statement: This tells SAS to execute all commands up to this point. C. Optional Format-related SAS Statements If a user wants to use formats for the SAS variables, a SAS format catalog 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.H206E; 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 catalog (file name extension is 'SAS7BCAT') can be stored under the same directory. OPTIONS FMTSEARCH=...: This specifies the SAS format library. PROC FORMAT statement: This identifies the SAS procedure that will make SAS formats according to VALUE statements. Formats will be stored in a file named FORMATS.SAS7BCAT. Please note that the option 'LIBRARY=...' can be omitted if the user does not want to create a permanent SAS format library. When simply 'PROC FORMAT;' is used, the formats are defined only for the duration of the batch SAS program or an interactive SAS session. VALUE statement: This gives a) names to formats; and b) descriptive labels for individual values, or range of values. The format names can then be invoked using a FORMAT statement if desired. PROC FREQ statement: This identifies the SAS procedure that 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) 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 and Linux. D. SAS Statements This section contains SAS INPUT, LABEL, FORMAT, and VALUE statements for use in converting the ASCII H206E.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=332; INPUT @1 DUID 7.0 @8 PID 3.0 @11 DUPERSID $10.0 @21 EVNTIDX $16.0 @37 EVENTRN 1.0 @38 ERHEVIDX $16.0 @54 FFEEIDX $12.0 @66 PANEL 2.0 @68 MPCDATA 1.0 @69 ERDATEYR 4.0 @73 ERDATEMM 2.0 @75 VSTCTGRY 2.0 @77 VSTRELCN 2.0 @79 LABTEST_M18 2.0 @81 SONOGRAM_M18 2.0 @83 XRAYS_M18 2.0 @85 MAMMOG_M18 2.0 @87 MRI_M18 2.0 @89 EKG_M18 2.0 @91 RCVVAC_M18 2.0 @93 SURGPROC 2.0 @95 MEDPRESC 2.0 @97 FFERTYPE 2.0 @99 ERXP18X 8.2 @107 ERTC18X 9.2 @116 ERFSF18X 7.2 @123 ERFMR18X 8.2 @131 ERFMD18X 7.2 @138 ERFPV18X 8.2 @146 ERFVA18X 7.2 @153 ERFTR18X 7.2 @160 ERFOF18X 7.2 @167 ERFSL18X 8.2 @175 ERFWC18X 8.2 @183 ERFOR18X 7.2 @190 ERFOU18X 7.2 @197 ERFOT18X 7.2 @204 ERFXP18X 8.2 @212 ERFTC18X 9.2 @221 ERDSF18X 7.2 @228 ERDMR18X 7.2 @235 ERDMD18X 7.2 @242 ERDPV18X 7.2 @249 ERDVA18X 7.2 @256 ERDTR18X 7.2 @263 ERDOF18X 4.2 @267 ERDSL18X 6.2 @273 ERDWC18X 7.2 @280 ERDOR18X 7.2 @287 ERDOU18X 6.2 @293 ERDOT18X 7.2 @300 ERDXP18X 7.2 @307 ERDTC18X 8.2 @315 IMPFLAG 1.0 @316 PERWT18F 12.6 @328 VARSTR 4.0 @332 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. VSTCTGRY VSTCTGRF. VSTRELCN VSTRELCF. LABTEST_M18 LABTESTF. SONOGRAM_M18 SONOGRMF. XRAYS_M18 XRAYSF. MAMMOG_M18 MAMMOGF. MRI_M18 MRIF. EKG_M18 EKGF. RCVVAC_M18 RCVVACF. SURGPROC SURGPROF. MEDPRESC MEDPRESF. FFERTYPE FFERTYPF. ERXP18X ERXP18XF. ERTC18X ERTC18XF. ERFSF18X ERFSF18F. ERFMR18X ERFMR18F. ERFMD18X ERFMD18F. ERFPV18X ERFPV18F. ERFVA18X ERFVA18F. ERFTR18X ERFTR18F. ERFOF18X ERFOF18F. ERFSL18X ERFSL18F. ERFWC18X ERFWC18F. ERFOR18X ERFOR18F. ERFOU18X ERFOU18F. ERFOT18X ERFOT18F. ERFXP18X ERFXP18F. ERFTC18X ERFTC18F. ERDSF18X ERDSF18F. ERDMR18X ERDMR18F. ERDMD18X ERDMD18F. ERDPV18X ERDPV18F. ERDVA18X ERDVA18F. ERDTR18X ERDTR18F. ERDOF18X ERDOF18F. ERDSL18X ERDSL18F. ERDWC18X ERDWC18F. ERDOR18X ERDOR18F. ERDOU18X ERDOU18F. ERDOT18X ERDOT18F. ERDXP18X ERDXP18F. ERDTC18X ERDTC18F. IMPFLAG IMPFLAGF. PERWT18F PERWT18F. VARSTR VARSTRF. VARPSU VARPSUF. ; * LABEL STATEMENTS; LABEL DUID ='PANEL # + ENCRYPTED DU IDENTIFIER' 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' VSTCTGRY ='BEST CATEGORY FOR CARE P RECV ON VISIT DT' VSTRELCN ='THIS VISIT RELATED TO SPEC CONDITION' LABTEST_M18 ='THIS VISIT DID P HAVE LAB TESTS' SONOGRAM_M18 ='THIS VISIT DID P HAVE SONOGRAM OR ULTRSD' XRAYS_M18 ='THIS VISIT DID P HAVE X-RAYS' MAMMOG_M18 ='THIS VISIT DID P HAVE A MAMMOGRAM' MRI_M18 ='THIS VISIT DID P HAVE AN MRI/CATSCAN' EKG_M18 ='THIS VISIT DID P HAVE AN EKG, EEG OR ECG' RCVVAC_M18 ='THIS VISIT DID P RECEIVE A VACCINATION' SURGPROC ='WAS SURG PROC PERFORMED ON P THIS VISIT' MEDPRESC ='ANY MEDICINE PRESCRIBED FOR P THIS VISIT' FFERTYPE ='FLAT FEE BUNDLE' ERXP18X ='TOTAL EXP FOR EVENT (ERFXP18X + ERDXP18X)' ERTC18X ='TOTAL CHG FOR EVENT (ERFTC18X+ERDTC18X)' ERFSF18X ='FACILITY AMOUNT PAID, FAMILY (IMPUTED)' ERFMR18X ='FACILITY AMOUNT PAID, MEDICARE (IMPUTED)' ERFMD18X ='FACILITY AMOUNT PAID, MEDICAID (IMPUTED)' ERFPV18X ='FACILITY AMOUNT PAID, PRIV INSUR (IMPUTED)' ERFVA18X ='FACILITY AMOUNT PAID,VETERANS/CHAMPVA(IMPUTED)' ERFTR18X ='FACILITY AMOUNT PAID,TRICARE(IMPUTED)' ERFOF18X ='FACILITY AMOUNT PAID, OTH FEDERAL (IMPUTED)' ERFSL18X ='FACILITY AMOUNT PAID, STATE/LOC GOV (IMPUTED)' ERFWC18X ='FACILITY AMOUNT PAID, WORKERS COMP (IMPUTED)' ERFOR18X ='FACILITY AMOUNT PAID, OTH PRIV (IMPUTED)' ERFOU18X ='FACILITY AMOUNT PAID, OTH PUB (IMPUTED)' ERFOT18X ='FACILITY AMOUNT PAID, OTH INSUR (IMPUTED)' ERFXP18X ='FACILITY SUM PAYMENTS ERFSF18X-ERFOT18X' ERFTC18X ='TOTAL FACILITY CHARGE (IMPUTED)' ERDSF18X ='DOCTOR AMOUNT PAID, FAMILY (IMPUTED)' ERDMR18X ='DOCTOR AMOUNT PAID, MEDICARE (IMPUTED)' ERDMD18X ='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' ERDPV18X ='DOCTOR AMOUNT PAID, PRIV INSUR (IMPUTED)' ERDVA18X ='DOCTOR AMOUNT PAID,VETERANS/CHAMPVA(IMPUTED)' ERDTR18X ='DOCTOR AMOUNT PAID,TRICARE(IMPUTED)' ERDOF18X ='DOCTOR AMOUNT PAID, OTH FEDERAL (IMPUTED)' ERDSL18X ='DOCTOR AMOUNT PAID, STATE/LOC GOV (IMPUTED)' ERDWC18X ='DOCTOR AMOUNT PAID, WORKERS COMP (IMPUTED)' ERDOR18X ='DOCTOR AMOUNT PAID, OTH PRIV (IMPUTED)' ERDOU18X ='DOCTOR AMOUNT PAID, OTH PUB (IMPUTED)' ERDOT18X ='DOCTOR AMOUNT PAID, OTH INSUR (IMPUTED)' ERDXP18X ='DOCTOR SUM PAYMENTS ERDSF18X - ERDOT18X' ERDTC18X ='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT18F ='EXPENDITURE FILE PERSON WEIGHT, 2018' VARSTR ='VARIANCE ESTIMATION STRATUM, 2018' VARPSU ='VARIANCE ESTIMATION PSU, 2018' ; * VALUE STATEMENTS; VALUE DUID OTHER = 'VALID ID' ; VALUE $DUPERS OTHER = 'VALID ID' ; VALUE EKGF -8 = '-8 DK' -7 = '-7 REFUSED' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE ERDMD18F (DEFAULT=40) 0 = '0' 0.2 - 35.55 = '$0.20 - $35.55' 35.56 - 75.91 = '$35.56 - $75.91' 75.92 - 166.5 = '$75.92 - $166.50' 166.51 - 5939.71 = '$166.51 - $5,939.71' ; VALUE ERDMR18F (DEFAULT=40) 0 = '0' 2.71 - 64.41 = '$2.71 - $64.41' 64.42 - 136.47 = '$64.42 - $136.47' 136.48 - 238.34 = '$136.48 - $238.34' 238.35 - 4514.55 = '$238.35 - $4,514.55' ; VALUE ERDOF18F 0 = '0' 0.01 - 99999999.99 = '.01 - 99999999.99' ; VALUE ERDOR18F (DEFAULT=40) 0 = '0' 1.78 - 19.67 = '$1.78 - $19.67' 19.68 - 54.06 = '$19.68 - $54.06' 54.07 - 143.6 = '$54.07 - $143.60' 143.61 - 4207.55 = '$143.61 - $4,207.55' ; VALUE ERDOT18F (DEFAULT=40) 0 = '0' 1.9 - 23.91 = '$1.90 - $23.91' 23.92 - 132.49 = '$23.92 - $132.49' 132.5 - 368.35 = '$132.50 - $368.35' 368.36 - 1239.2 = '$368.36 - $1,239.20' ; VALUE ERDOU18F (DEFAULT=40) 0 = '0' 1.84 - 519 = '$1.84 - $519.00' ; VALUE ERDPV18F (DEFAULT=40) 0 = '0' 0.3 - 42.57 = '$0.30 - $42.57' 42.58 - 155.1 = '$42.58 - $155.10' 155.11 - 371.52 = '$155.11 - $371.52' 371.53 - 7262.64 = '$371.53 - $7,262.64' ; VALUE ERDSF18F (DEFAULT=40) 0 = '0' 0.46 - 25 = '$0.46 - $25.00' 25.01 - 65.16 = '$25.01 - $65.16' 65.17 - 204.28 = '$65.17 - $204.28' 204.29 - 1434.11 = '$204.29 - $1,434.11' ; VALUE ERDSL18F (DEFAULT=40) 0 = '0' 6.95 - 202.32 = '$1.00 - $202.32' ; VALUE ERDTC18F (DEFAULT=40) 0 = '0' 4.5 - 266 = '$4.50 - $266.00' 266.01 - 632 = '$266.01 - $632.00' 632.01 - 1290 = '$632.01 - $1,290.00' 1290.01 - 33783 = '$1,290.01 - $33,783.00' ; VALUE ERDTEMMF -8 = '-8 DK' -7 = '-7 REFUSED' 1 - 12 = '1 - 12 MONTH' ; VALUE ERDTEYRF -8 = '-8 DK' -7 = '-7 REFUSED' 2018 = '2018' ; VALUE ERDTR18F (DEFAULT=40) 0 = '0' 1.83 - 26.87 = '$1.83 - $26.87' 26.88 - 57.19 = '$26.88 - $57.19' 57.2 - 180.18 = '$57.20 - $180.18' 180.19 - 1302.15 = '$180.19 - $1,302.15' ; VALUE ERDVA18F (DEFAULT=40) 0 = '0' 1.64 - 69.83 = '$1.64 - $69.83' 69.84 - 159.94 = '$69.84 - $159.94' 159.95 - 279.73 = '$159.95 - $279.73' 279.74 - 1954.33 = '$279.74 - $1,954.33' ; VALUE ERDWC18F (DEFAULT=40) 0 = '0' 19.2 - 79.17 = '$19.20 - $79.17' 79.18 - 178.54 = '$79.18 - $178.54' 178.55 - 379.04 = '$178.55 - $379.04' 379.05 - 4006.32 = '$379.05 - $4,006.32' ; VALUE ERDXP18F (DEFAULT=40) 0 = '0' 1.8 - 63.66 = '$1.80 - $63.66' 63.67 - 157.26 = '$63.67 - $157.26' 157.27 - 315 = '$157.27 - $315.00' 315.01 - 7262.64 = '$315.01 - $7,262.64' ; VALUE ERFMD18F (DEFAULT=40) 0 = '0' 0.67 - 89.65 = '$0.67 - $89.65' 89.66 - 202 = '$89.66 - $202.00' 202.01 - 417.5 = '$202.01 - $417.50' 417.51 - 8077.85 = '$417.51 - $8,077.85' ; VALUE ERFMR18F (DEFAULT=40) 0 = '0' 0.64 - 169.02 = '$0.64 - $169.02' 169.03 - 381.15 = '$169.03 - $381.15' 381.16 - 665.65 = '$381.16 - $665.65' 665.66 - 36444.13 = '$665.66 - $36,444.13' ; VALUE ERFOF18F (DEFAULT=40) 0 = '0' 14.38 - 8414.04 = '$14.38 - $8,414.04' ; VALUE ERFOR18F (DEFAULT=40) 0 = '0' 1.73 - 61 = '$1.73 - $61.00' 61.01 - 139.23 = '$61.01 - $139.23' 139.24 - 313.61 = '$139.24 - $313.61' 313.62 - 2921 = '$313.62 - $2,921.00' ; VALUE ERFOT18F (DEFAULT=40) 0 = '0' 60 - 345 = '$60.00 - $345.00' 345.01 - 1000 = '$345.01 - $1,000.00' 1000.01 - 2908 = '$1,000.01 - $2,908.00' 2908.01 - 9987.63 = '$2,908.01 - $9,987.63' ; VALUE ERFOU18F (DEFAULT=40) 0 = '0' 24.6 - 66.12 = '$24.60 - $66.12' 66.13 - 248.06 = '$66.13 - $248.06' 248.07 - 449.25 = '$248.07 - $449.25' 449.26 - 3801.13 = '$449.26 - $3,801.13' ; VALUE ERFPV18F (DEFAULT=40) 0 = '0' 0.7 - 196.09 = '$0.70 - $196.09' 196.1 - 702.45 = '$196.10 - $702.45' 702.46 - 1552.96 = '$702.46 - $1,552.96' 1552.97 - 35234.17 = '$1,552.97 - $35,234.17' ; VALUE ERFSF18F (DEFAULT=40) 0 = '0' 1 - 60 = '$1.00 - $60.00' 60.01 - 100 = '$60.01 - $100.00' 100.01 - 315 = '$100.01 - $315.00' 315.01 - 7000 = '$315.01 - $7,000.00' ; VALUE ERFSL18F (DEFAULT=40) 0 = '0' 50 - 275.38 = '$50.00 - $275.38' 275.39 - 1319.13 = '$275.39 - $1,319.13' 1319.14 - 2214.86 = '$1,319.14 - $2,214.86' 2214.87 - 11114.65 = '$2,214.87 - $11,114.65' ; VALUE ERFTC18F (DEFAULT=40) 0 = '0' 4 - 955 = '$4.00 - $955.00' 955.01 - 2109.15 = '$955.01 - $2,109.15' 2109.16 - 4643.61 = '$2,109.16 - $4,643.61' 4643.62 - 240913.01 = '$4,643.62 - $240,913.01' ; VALUE ERFTR18F (DEFAULT=40) 0 = '0' 4.44 - 97.99 = '$4.44 - $97.99' 98 - 224.11 = '$98.00 - $224.11' 224.12 - 557.74 = '$224.12 - $557.74' 557.75 - 6631.21 = '$557.75 - $6,631.21' ; VALUE ERFVA18F (DEFAULT=40) 0 = '0' 38.31 - 173.46 = '$38.31 - $173.46' 173.47 - 375.28 = '$173.47 - $375.28' 375.29 - 850.05 = '$375.29 - $850.05' 850.06 - 5124.37 = '$850.06 - $5,124.37' ; VALUE ERFWC18F (DEFAULT=40) 0 = '0' 14.7 - 393.93 = '$14.70 - $393.93' 393.94 - 887.34 = '$393.94 - $887.34' 887.35 - 1759.68 = '$887.35 - $1,759.68' 1759.69 - 10470.63 = '$1,759.69 - $10,470.63' ; VALUE ERFXP18F (DEFAULT=40) 0 = '0' 0.64 - 188.21 = '$0.64 - $188.21' 188.22 - 450.74 = '$188.22 - $450.74' 450.75 - 970.95 = '$450.75 - $970.95' 970.96 - 36683.35 = '$970.96 - $36,683.35' ; VALUE $ERHEIDF '-1' = '-1 INAPPLICABLE' OTHER = 'VALID ID' ; VALUE ERTC18XF (DEFAULT=40) 0 = '0' 4 - 1107.64 = '$4.00 - $1,107.64' 1107.65 - 2421.38 = '$1,107.65 - $2,421.38' 2421.39 - 5092 = '$2,421.39 - $5,092.00' 5092.01 - 241882.01 = '$5,092.01 - $241,882.01' ; VALUE ERXP18XF (DEFAULT=40) 0 = '0' 0.64 - 213.24 = '$0.64 - $213.24' 213.25 - 506.98 = '$213.25 - $506.98' 506.99 - 1095.47 = '$506.99 - $1,095.47' 1095.48 - 37390.15 = '$1,095.48 - $37,390.15' ; 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 -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 -8 = '-8 DK' -7 = '-7 REFUSED' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE MAMMOGF -8 = '-8 DK' -7 = '-7 REFUSED' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE MEDPRESF -8 = '-8 DK' -7 = '-7 REFUSED' 1 = '1 YES' 2 = '2 NO' ; VALUE MPCDATAF 1 = '1 HAS MPC DATA' 2 = '2 NO MPC DATA' ; VALUE MRIF -8 = '-8 DK' -7 = '-7 REFUSED' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE PANELF 22 = 'PANEL 22' 23 = 'PANEL 23' ; VALUE PERWT18F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 574.884297 - 72622.169614 = '574.884297 - 72622.169614 WEIGHT' ; VALUE PID OTHER = 'VALID ID' ; VALUE RCVVACF -8 = '-8 DK' -7 = '-7 REFUSED' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE SONOGRMF -8 = '-8 DK' -7 = '-7 REFUSED' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE SURGPROF -8 = '-8 DK' -7 = '-7 REFUSED' 1 = '1 YES' 2 = '2 NO' ; VALUE VARPSUF (DEFAULT=40) 1 - 3 = '1 - 3' ; VALUE VARSTRF (DEFAULT=40) 2001 - 2117 = '2001 - 2117' ; VALUE VSTCTGRF -15 = '-15 CANNOT BE COMPUTED' -8 = '-8 DK' -7 = '-7 REFUSED' 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 -8 = '-8 DK' -7 = '-7 REFUSED' 1 = '1 YES' 2 = '2 NO' ; VALUE XRAYSF -8 = '-8 DK' -7 = '-7 REFUSED' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ;