SAS User File for H160E 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 (H160E.SSP) or the ASCII data file (H160E.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\H160E.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.H160E; TITLE 'List of Variables in MEPS H160E SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H160E (OBS=20); TITLE 'First 20 Observations in MEPS H160E 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) H160E 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 H160E.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file H160E.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 H160E.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 H160E.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\H160E.DAT'; DATA PUFLIB.H160E; INFILE IN1 LRECL=337; 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 (H160E). In the example, after the successful completion of the DATA step, a PC file named H160E.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 (337 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 H160E.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., 337 for H160E.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (339 for H160E.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 (337 for H160E.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 (H160E.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.H160E; 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 H160E.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=337; 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 VSTCTGRY 2.0 @65 VSTRELCN 2.0 @67 LABTEST 2.0 @69 SONOGRAM 2.0 @71 XRAYS 2.0 @73 MAMMOG 2.0 @75 MRI 2.0 @77 EKG 2.0 @79 EEG 2.0 @81 RCVVAC 2.0 @83 ANESTH 2.0 @85 THRTSWAB 2.0 @87 OTHSVCE 2.0 @89 SURGPROC 2.0 @91 MEDPRESC 2.0 @93 ERCCC1X $3.0 @96 ERCCC2X $3.0 @99 ERCCC3X $3.0 @102 FFERTYPE 2.0 @104 ERXP13X 8.2 @112 ERTC13X 9.2 @121 ERFSF13X 7.2 @128 ERFMR13X 8.2 @136 ERFMD13X 8.2 @144 ERFPV13X 8.2 @152 ERFVA13X 7.2 @159 ERFTR13X 7.2 @166 ERFOF13X 7.2 @173 ERFSL13X 8.2 @181 ERFWC13X 7.2 @188 ERFOR13X 7.2 @195 ERFOU13X 7.2 @202 ERFOT13X 8.2 @210 ERFXP13X 8.2 @218 ERFTC13X 9.2 @227 ERDSF13X 7.2 @234 ERDMR13X 7.2 @241 ERDMD13X 7.2 @248 ERDPV13X 7.2 @255 ERDVA13X 7.2 @262 ERDTR13X 7.2 @269 ERDOF13X 4.2 @273 ERDSL13X 6.2 @279 ERDWC13X 7.2 @286 ERDOR13X 7.2 @293 ERDOU13X 6.2 @299 ERDOT13X 6.2 @305 ERDXP13X 7.2 @312 ERDTC13X 8.2 @320 IMPFLAG 1.0 @321 PERWT13F 12.6 @333 VARSTR 4.0 @337 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 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. ERCCC1X $ERCCC1X. ERCCC2X $ERCCC2X. ERCCC3X $ERCCC3X. FFERTYPE FFERTYPF. ERXP13X ERXP13XF. ERTC13X ERTC13XF. ERFSF13X ERFSF13F. ERFMR13X ERFMR13F. ERFMD13X ERFMD13F. ERFPV13X ERFPV13F. ERFVA13X ERFVA13F. ERFTR13X ERFTR13F. ERFOF13X ERFOF13F. ERFSL13X ERFSL13F. ERFWC13X ERFWC13F. ERFOR13X ERFOR13F. ERFOU13X ERFOU13F. ERFOT13X ERFOT13F. ERFXP13X ERFXP13F. ERFTC13X ERFTC13F. ERDSF13X ERDSF13F. ERDMR13X ERDMR13F. ERDMD13X ERDMD13F. ERDPV13X ERDPV13F. ERDVA13X ERDVA13F. ERDTR13X ERDTR13F. ERDOF13X ERDOF13F. ERDSL13X ERDSL13F. ERDWC13X ERDWC13F. ERDOR13X ERDOR13F. ERDOU13X ERDOU13F. ERDOT13X ERDOT13F. ERDXP13X ERDXP13F. ERDTC13X ERDTC13F. IMPFLAG IMPFLAGF. PERWT13F PERWT13F. 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' 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' ERCCC1X ='MODIFIED CLINICAL CLASSIFICATION CODE' ERCCC2X ='MODIFIED CLINICAL CLASSIFICATION CODE' ERCCC3X ='MODIFIED CLINICAL CLASSIFICATION CODE' FFERTYPE='FLAT FEE BUNDLE' ERXP13X ='TOT EXP FOR EVENT (ERFXP13X + ERDXP13X)' ERTC13X ='TOTAL CHG FOR EVENT (ERFTC13X+ERDTC13X)' ERFSF13X='FACILITY AMT PD, FAMILY (IMPUTED)' ERFMR13X='FACILITY AMT PD, MEDICARE (IMPUTED)' ERFMD13X='FACILITY AMT PD, MEDICAID (IMPUTED)' ERFPV13X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' ERFVA13X='FAC AMT PD,VETERANS/CHAMPVA(IMPUTED)' ERFTR13X='FACILITY AMT PD,TRICARE(IMPUTED)' ERFOF13X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' ERFSL13X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' ERFWC13X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' ERFOR13X='FACILITY AMT PD, OTH PRIV (IMPUTED)' ERFOU13X='FACILITY AMT PD, OTH PUB (IMPUTED)' ERFOT13X='FACILITY AMT PD, OTH INSUR (IMPUTED)' ERFXP13X='FACILITY SUM PAYMENTS ERFSF13X-ERFOT13X' ERFTC13X='TOTAL FACILITY CHARGE (IMPUTED)' ERDSF13X='DOCTOR AMOUNT PAID, FAMILY (IMPUTED)' ERDMR13X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' ERDMD13X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' ERDPV13X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' ERDVA13X='DR AMT PD,VETERANS/CHAMPVA(IMPUTED)' ERDTR13X='DOCTOR AMT PD,TRICARE(IMPUTED)' ERDOF13X='DOCTOR AMT PAID, OTH FEDERAL (IMPUTED)' ERDSL13X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' ERDWC13X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' ERDOR13X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' ERDOU13X='DOCTOR AMT PD, OTH PUB (IMPUTED)' ERDOT13X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' ERDXP13X='DOCTOR SUM PAYMENTS ERDSF13X - ERDOT13X' ERDTC13X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT13F='EXPENDITURE FILE PERSON WEIGHT, 2013' VARSTR ='VARIANCE ESTIMATION STRATUM, 2013' VARPSU ='VARIANCE ESTIMATION PSU, 2013' ; * 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 ERDMD13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.11 - 38.85 = '$0.11 - $38.85' 38.86 - 75.33 = '$38.86 - $75.33' 75.34 - 143.76 = '$75.34 - $143.76' 143.77 - 4017.56 = '$143.77 - $4,017.56' ; VALUE ERDMR13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2 - 47.57 = '$2.00 - $47.57' 47.58 - 115.74 = '$47.58 - $115.74' 115.75 - 198.99 = '$115.75 - $198.99' 199 - 4797.57 = '$199.00 - $4,797.57' ; VALUE ERDOF13F -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 99999999.99 = '.01 - 99999999.99' ; VALUE ERDOR13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.2 - 29.9 = '$0.20 - $29.90' 29.91 - 95.78 = '$29.91 - $95.78' 95.79 - 215.51 = '$95.79 - $215.51' 215.52 - 1410.22 = '$215.52 - $1,410.22' ; VALUE ERDOT13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.69 - 87.21 = '$1.69 - $87.21' 87.22 - 135.9 = '$87.22 - $135.90' 135.91 - 280 = '$135.91 - $280.00' 280.01 - 855.74 = '$280.01 - $855.74' ; VALUE ERDOU13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.43 - 33.07 = '$0.43 - $33.07' 33.08 - 57.45 = '$33.08 - $57.45' 57.46 - 141.14 = '$57.46 - $141.14' 141.15 - 979.3 = '$141.15 - $979.30' ; VALUE ERDPV13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.58 - 54.71 = '$1.58 - $54.71' 54.72 - 147.42 = '$54.72 - $147.42' 147.43 - 325 = '$147.43 - $325.00' 325.01 - 3195.61 = '$325.01 - $3,195.61' ; VALUE ERDSF13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.6 - 24.3 = '$1.60 - $24.30' 24.31 - 66 = '$24.31 - $66.00' 66.01 - 170.77 = '$66.01 - $170.77' 170.78 - 2594 = '$170.78 - $2,594.00' ; VALUE ERDSL13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.22 - 24 = '$2.22 - $24.00' 24.01 - 62.76 = '$24.01 - $62.76' 62.77 - 152.71 = '$62.77 - $152.71' 152.72 - 724.8 = '$152.72 - $724.80' ; VALUE ERDTC13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 245.91 = '$1.00 - $245.91' 245.92 - 497 = '$245.92 - $497.00' 497.01 - 888 = '$497.01 - $888.00' 888.01 - 16499 = '$888.01 - $16,499.00' ; 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' 2013 = '2013' ; VALUE ERDTR13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 12.81 = '$1.00 - $12.81' 12.82 - 53.68 = '$12.82 - $53.68' 53.69 - 109.69 = '$53.69 - $109.69' 109.7 - 1237.83 = '$109.70 - $1,237.83' ; VALUE ERDVA13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.14 - 48.96 = '$4.14 - $48.96' 48.97 - 242.54 = '$48.97 - $242.54' 242.55 - 401 = '$242.55 - $401.00' 401.01 - 1358.98 = '$401.01 - $1,358.98' ; VALUE ERDWC13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 12.61 - 96.66 = '$12.61 - $96.66' 96.67 - 184.99 = '$96.67 - $184.99' 185 - 332.52 = '$185.00 - $332.52' 332.53 - 3541.7 = '$332.53 - $3,541.70' ; VALUE ERDXP13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 58.5 = '$1.00 - $58.50' 58.51 - 128.49 = '$58.51 - $128.49' 128.5 - 254 = '$128.50 - $254.00' 254.01 - 4797.57 = '$254.01 - $4,797.57' ; VALUE ERFMD13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.21 - 81.4 = '$0.21 - $81.40' 81.41 - 185.01 = '$81.41 - $185.01' 185.02 - 369.72 = '$185.02 - $369.72' 369.73 - 10080.27 = '$369.73 - $10,080.27' ; VALUE ERFMR13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.4 - 147.66 = '$1.40 - $147.66' 147.67 - 305.41 = '$147.67 - $305.41' 305.42 - 572.32 = '$305.42 - $572.32' 572.33 - 26566.6 = '$572.33 - $26,566.60' ; VALUE ERFOF13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 61.11 - 143.36 = '$61.11 - $143.36' 143.37 - 177.9 = '$143.37 - $177.90' 177.91 - 281.65 = '$177.91 - $281.65' 281.66 - 5940.45 = '$281.66 - $5,940.45' ; VALUE ERFOR13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 9.9 - 59.35 = '$9.90 - $59.35' 59.36 - 221.24 = '$59.36 - $221.24' 221.25 - 695 = '$221.25 - $695.00' 695.01 - 6960.87 = '$695.01 - $6,960.87' ; VALUE ERFOT13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.93 - 258.23 = '$2.93 - $258.23' 258.24 - 869.08 = '$258.24 - $869.08' 869.09 - 1819.25 = '$869.09 - $1,819.25' 1819.26 - 48296.56 = '$1,819.26 - $48,296.56' ; VALUE ERFOU13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.06 - 91.61 = '$5.06 - $91.61' 91.62 - 184.64 = '$91.62 - $184.64' 184.65 - 383.11 = '$184.65 - $383.11' 383.12 - 5596.23 = '$383.12 - $5,596.23' ; VALUE ERFPV13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2 - 177 = '$2.00 - $177.00' 177.01 - 506.93 = '$177.01 - $506.93' 506.94 - 1080 = '$506.94 - $1,080.00' 1080.01 - 63179 = '$1,080.01 - $63,179.00' ; VALUE ERFSF13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.18 - 8846.74 = '$0.18 - $8,846.74' ; VALUE ERFSL13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5 - 134.31 = '$5.00 - $134.31' 134.32 - 238.77 = '$134.32 - $238.77' 238.78 - 531.92 = '$238.78 - $531.92' 531.93 - 12340.1 = '$531.93 - $12,340.10' ; VALUE ERFTC13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.35 - 683.98 = '$2.35 - $683.98' 683.99 - 1460.09 = '$683.99 - $1,460.09' 1460.1 - 3187.8 = '$1,460.10 - $3,187.80' 3187.81 - 178632 = '$3,187.81 - $178,632.00' ; VALUE ERFTR13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 18.64 - 115.3 = '$18.64 - $115.30' 115.31 - 179.97 = '$115.31 - $179.97' 179.98 - 351 = '$179.98 - $351.00' 351.01 - 3912 = '$351.01 - $3,912.00' ; VALUE ERFVA13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.56 - 139.36 = '$1.56 - $139.36' 139.37 - 454.86 = '$139.37 - $454.86' 454.87 - 1242 = '$454.87 - $1,242.00' 1242.01 - 5932.05 = '$1,242.01 - $5,932.05' ; VALUE ERFWC13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 70 - 226.19 = '$70.00 - $226.19' 226.2 - 399.02 = '$226.20 - $399.02' 399.03 - 1193.04 = '$399.03 - $1,193.04' 1193.05 - 9807.96 = '$1,193.05 - $9,807.96' ; VALUE ERFXP13F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.4 - 152.04 = '$1.40 - $152.04' 152.05 - 344.08 = '$152.05 - $344.08' 344.09 - 813.39 = '$344.09 - $813.39' 813.4 - 63179 = '$813.40 - $63,179.00' ; VALUE $ERHEIDF '-1' = '-1 INAPPLICABLE' OTHER = 'VALID ID' ; VALUE ERTC13XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 15.44 - 906.11 = '$15.44 - $906.11' 906.12 - 1836.39 = '$906.12 - $1,836.39' 1836.4 - 3645.39 = '$1,836.40 - $3,645.39' 3645.4 - 178632 = '$3,645.40 - $178,632.00' ; VALUE ERXP13XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.42 - 186.06 = '$1.42 - $186.06' 186.07 - 419.57 = '$186.07 - $419.57' 419.58 - 951.53 = '$419.58 - $951.53' 951.54 - 63179 = '$951.54 - $63,179.00' ; 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 17 = 'PANEL 17' 18 = 'PANEL 18' ; VALUE PERWT13F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 698.82292 - 87158.417774 = '698.822920 - 87158.417774 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 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' ;