SAS User File for H33F 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 (H33F.SSP) or the ASCII data file (H33F.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. ****************************************************************************** The sample SAS programs provided in Sections A and B show how to create a permanent SAS dataset from the data files provided in this PUF release. A. A Sample SAS Program for Converting the SAS Transport File to a Permanent SAS Dataset The SAS PROCedure XCOPY will read a SAS transport data file and convert the data to regular SAS format, storing the output in a permanent SAS dataset. This permanent SAS dataset can then be used for all future processing and analyses. Below is a sample PC-SAS program that can be used to convert the SAS transport file to a permanent PC SAS dataset (in a Windows environment, with SAS V6.12). LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\MEPS\H33F.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT; RUN; If the user wants a list of variables and a few sample records in the permanent SAS dataset, following are the SAS statements to accomplish these. PROC CONTENTS DATA=PUFLIB.H33F; TITLE "List of Variables in MEPS H33F SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.H33F (OBS=20); TITLE "First 20 Observations in MEPS H33F 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) 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, MAC/OS, VMS, or OS/2. 3) H33F 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 H33F.SD2 will be created under the C:\MEPS directory when PROC XCOPY runs successfully. 4) The SAS transport file H33F.SSP was created from a PC-SAS Version 6.12 data file, using PROC COPY. This file has been tested for use with PC-SAS version 6.10 or higher, or with mainframe SAS version 6.08 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 H33F.DAT to a SAS data set as described in Section B. ADDITONAL NOTE TO USERS OF SAS VERSION 8: One of the following procedures should be used to avoid a SAS error when using the downloaded SAS Transport file: 1) Add V8 to LIBNAME statement - e.g., LIBNAME PUFLIB V8 'C:\MEPS'; OR 2) Output the SAS data set to a different library than the one which contains the downloaded SAS Transport file - e.g., LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\DOWNLOAD\H33F.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT; RUN; 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 H33F.DAT ASCII data file. These statements must be used in combination with other SAS statements to create the appropriate SAS program, as shown below. To use the statements provided in Section D to create a SAS program, you will need an ASCII text editor. If you are using an interactive form of SAS (Windows, UNIX, OS2, etc.), use the editor provided as part of the SAS software. Following is a sample SAS program that will convert the ASCII data file to SAS format. LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\MEPS\H33F.DAT'; DATA PUFLIB.H33F; INFILE IN1 LRECL=377; 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 describes the output SAS dataset, referencing the LIBNAME entry (PUFLIB) and assigning an internal SAS dataset name (H33F). In the example, after the successful completion of the DATA step, a PC file named H33F.SD2 would have been created in the C:\MEPS directory. INFILE statement: This tells SAS the location (directory and file name) of the input ASCII data file. Also provided is the logical record length (377 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 H33F.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., 377 for H33F.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (379 for H33F.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 (377 for H33F.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 (H33F.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. ADDITONAL NOTE TO USERS OF SAS VERSION 8: One of the following procedures should be used to avoid a SAS error when using the downloaded ASCII data file: 1) Add V8 to LIBNAME statement - e.g., LIBNAME PUFLIB V8 'C:\MEPS'; OR 2) Output the SAS data set to a different library than the one which contains the downloaded ASCII data file - e.g., LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\DOWNLOAD\H33F.DAT'; DATA PUFLIB.H33F; INFILE IN1 LRECL=377; C. Optional Format-related SAS Statements If a user wants to use formats for the SAS variables, a SAS format library must first be created. Below is a SAS program that will accomplish this. LIBNAME PUFLIB 'C:\MEPS'; PROC FORMAT LIBRARY=PUFLIB; VALUE .....; * to user: insert the complete set of VALUE statements found in Section D; VALUE .....; .......... ; RUN; Below is an example of how to use the SAS formats defined by the PROC FORMAT procedure. LIBNAME PUFLIB 'C:\MEPS'; OPTIONS FMTSEARCH=(PUFLIB); PROC FREQ DATA=PUFLIB.H33F; TABLES .... / LIST MISSING; FORMAT varnam1 fmtnam1. Varnam2 fmtnam2. .... ; * to user: substitute varnami and fmtnami 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 'SD2') and format libraries (file name extension is 'SC2') 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.SC2. Please note that the option 'LIBRARY=...' can be omitted, if the user does not want to create a permanent SAS format library. When simply 'PROC FORMAT;' is used, the formats are defined only for the duration of the batch SAS program or an interactive SAS session. VALUE statement: This gives a) names to formats; and b) descriptive labels for individual values, or range of values. The format names can then be invoked using a FORMAT statement, if desired. PROC FREQ statement: This identifies the SAS procedure that will generate frequency distributions of variables specified in the TABLES statement, formatted if a FORMAT statement is used. The input SAS dataset is specified in the 'DATA=' option. FORMAT statement: This associates existing formats with variables. When using this statement, the formats must have already been created with a PROC FORMAT procedure. RUN statement: This tells SAS to execute all commands up to this point. NOTES: 1) Use of formats is entirely optional, and depends on the type of analyses that you are doing. It is recommended that you create and use them as appropriate. 2) The names used in the LIBNAME and FILENAME statements shown above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary aliases. 3) You only create the permanent SAS data set once. Additional analyses can be run using this permanent dataset. 4) The file and directory specifications in the LIBNAME and FILENAME statements are Windows syntax and may need to be modified for other operating systems such as UNIX, MAC/OS, VMS, or OS/2. D. SAS Statements This section contains SAS INPUT, LABEL, FORMAT and VALUE statements for use in converting the ASCII H33F.DAT file into a SAS data set, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=377; INPUT @1 DUID 5.0 @6 PID 3.0 @9 DUPERSID $8.0 @17 EVNTIDX $12.0 @29 EVENTRN 1.0 @30 FFEEIDX $12.0 @42 OPR2FLAG 2.0 @44 MPCDATA 1.0 @45 OPDATEYR 4.0 @49 OPDATEMM 2.0 @51 OPDATEDD 2.0 @53 SEETLKPV 2.0 @55 REFERDBY 2.0 @57 SEEDOC 2.0 @59 MEDPTYPE 2.0 @61 TIMESPNT 2.0 @63 VSTCTGRY 2.0 @65 VSTRELCN 2.0 @67 PHYSTH 2.0 @69 OCCUPTH 2.0 @71 SPEECHTH 2.0 @73 CHEMOTH 2.0 @75 RADIATTH 2.0 @77 KIDNEYD 2.0 @79 IVTHER 2.0 @81 DRUGTRT 2.0 @83 RCVSHOT 2.0 @85 PSYCHOTH 2.0 @87 LABTEST 2.0 @89 SONOGRAM 2.0 @91 XRAYS 2.0 @93 MAMMOG 2.0 @95 MRI 2.0 @97 EKG 2.0 @99 EEG 2.0 @101 RCVVAC 2.0 @103 ANESTH 2.0 @105 OTHSVCE 2.0 @107 SURGPROC 2.0 @109 SURGNAME 2.0 @111 MEDPRESC 2.0 @113 DOCOUTF 2.0 @115 VAPLACE 1.0 @116 OPICD1X $3.0 @119 OPICD2X $3.0 @122 OPICD3X $3.0 @125 OPICD4X $3.0 @128 OPPRO1X $2.0 @130 OPCCC1X $3.0 @133 OPCCC2X $3.0 @136 OPCCC3X $3.0 @139 OPCCC4X $3.0 @142 FFOPTYPE 2.0 @144 FFBEF99 2.0 @146 FFTOT00 2.0 @148 OPXP99X 8.2 @156 OPTC99X 8.2 @164 OPFSF99X 7.2 @171 OPFMR99X 8.2 @179 OPFMD99X 8.2 @187 OPFPV99X 8.2 @195 OPFVA99X 7.2 @202 OPFCH99X 7.2 @209 OPFOF99X 7.2 @216 OPFSL99X 7.2 @223 OPFWC99X 7.2 @230 OPFOR99X 7.2 @237 OPFOU99X 7.2 @244 OPFOT99X 7.2 @251 OPFXP99X 8.2 @259 OPFTC99X 8.2 @267 OPDSF99X 7.2 @274 OPDMR99X 7.2 @281 OPDMD99X 7.2 @288 OPDPV99X 8.2 @296 OPDVA99X 7.2 @303 OPDCH99X 7.2 @310 OPDOF99X 4.2 @314 OPDSL99X 4.2 @318 OPDWC99X 7.2 @325 OPDOR99X 7.2 @332 OPDOU99X 6.2 @338 OPDOT99X 6.2 @344 OPDXP99X 8.2 @352 OPDTC99X 8.2 @360 IMPFLAG 1.0 @361 PERWT99F 12.6 @373 VARPSU99 2.0 @375 VARSTR99 3.0 ; * FORMAT STATEMENTS; FORMAT DUID DUID. PID PID. DUPERSID $DUPERSI. EVNTIDX $EVNTIDX. EVENTRN EVENTRN. FFEEIDX $FFEEIDX. OPR2FLAG OPR2FLAG. MPCDATA MPCDATA. OPDATEYR OPDATEYR. OPDATEMM OPDATEMM. OPDATEDD OPDATEDD. SEETLKPV SEETLKPV. REFERDBY REFERDBY. SEEDOC SEEDOC. MEDPTYPE MEDPTYPE. TIMESPNT TIMESPNT. VSTCTGRY VSTCTGRY. VSTRELCN VSTRELCN. PHYSTH PHYSTH. OCCUPTH OCCUPTH. SPEECHTH SPEECHTH. CHEMOTH CHEMOTH. RADIATTH RADIATTH. KIDNEYD KIDNEYD. IVTHER IVTHER. DRUGTRT DRUGTRT. RCVSHOT RCVSHOT. PSYCHOTH PSYCHOTH. LABTEST LABTEST. SONOGRAM SONOGRAM. XRAYS XRAYS. MAMMOG MAMMOG. MRI MRI. EKG EKG. EEG EEG. RCVVAC RCVVAC. ANESTH ANESTH. OTHSVCE OTHSVCE. SURGPROC SURGPROC. SURGNAME SURGNAME. MEDPRESC MEDPRESC. DOCOUTF DOCOUTF. VAPLACE VAPLACE. OPICD1X $ICD9COD. OPICD2X $ICD9COD. OPICD3X $ICD9COD. OPICD4X $ICD9COD. OPPRO1X $ICD9PRO. OPCCC1X $CCCODEX. OPCCC2X $CCCODEX. OPCCC3X $CCCODEX. OPCCC4X $CCCODEX. FFOPTYPE OPFFTYPE. FFBEF99 FFBEF99F. FFTOT00 FFTOT00F. OPXP99X OPXP99X. OPTC99X OPTC99X. OPFSF99X OPSLF99X. OPFMR99X OPMCR99X. OPFMD99X OPMCD99X. OPFPV99X OPPRV99X. OPFVA99X OPVA99X. OPFCH99X OPCHM99X. OPFOF99X OPOFD99X. OPFSL99X OPSTL99X. OPFWC99X OPWCP99X. OPFOR99X OPOPR99X. OPFOU99X OPOPU99X. OPFOT99X OPOSR99X. OPFXP99X OPEXP99X. OPFTC99X OPTLCHRG. OPDSF99X OPDSF99X. OPDMR99X OPDMR99X. OPDMD99X OPDMD99X. OPDPV99X OPDPV99X. OPDVA99X OPDVA99X. OPDCH99X OPDCH99X. OPDOF99X OPDOF99X. OPDSL99X OPDSL99X. OPDWC99X OPDWC99X. OPDOR99X OPDOR99X. OPDOU99X OPDOU99X. OPDOT99X OPDOT99X. OPDXP99X OPDXP99X. OPDTC99X OPDTC99X. IMPFLAG IMPFLAG. PERWT99F PERWT99P. VARPSU99 VARPSU9F. VARSTR99 VARSTR9F. ; * LABEL STATEMENTS; LABEL DUID ='DWELLING UNIT ID' PID ='PERSON NUMBER' DUPERSID='PERSON ID (DUID + PID)' EVNTIDX ='EVENT ID' EVENTRN ='EVENT ROUND NUMBER' FFEEIDX ='FLAT FEE ID' OPR2FLAG='FLAG FOR PANEL 3 R2 EVENT IN 1999' MPCDATA ='MPC DATA FLAG' OPDATEYR='EVENT DATE - YEAR' OPDATEMM='EVENT DATE - MONTH' OPDATEDD='EVENT DATE - DAY' SEETLKPV='DID P VISIT OP PROVIDER IN PERSON/PHONE' REFERDBY='REFERRED THIS VISIT BY ANOTHER PHYSICIAN' SEEDOC ='DID P TALK TO MD THIS VISIT/PHONE CALL' MEDPTYPE='TYPE OF MED PERSON P TALKED TO ON VST DT' TIMESPNT='TIME P SPENT WITH DOCTOR/MEDICAL PERSON' VSTCTGRY='BEST CATEGORY FOR CARE P RECV ON VST DT' VSTRELCN='THIS VISIT/PHONE RELATED TO SPEC. COND' PHYSTH ='THIS VISIT DID P HAVE PHYSICAL THERAPY' OCCUPTH ='THIS VISIT DID P HAVE OCCUPATIONAL THERA' SPEECHTH='THIS VISIT DID P HAVE SPEECH THERAPY' CHEMOTH ='THIS VISIT DID P HAVE CHEMOTHERAPY' RADIATTH='THIS VISIT DID P HAVE RADIATION THERAPY' KIDNEYD ='THIS VISIT DID P HAVE KIDNEY DIALYSIS' IVTHER ='THIS VISIT DID P HAVE IV THERAPY' DRUGTRT ='THIS VIS DID P HAVE TRT FOR DRUG OR ALCH' RCVSHOT ='THIS VISIT DID P RECEIVE AN ALLERGY SHOT' PSYCHOTH='DID P HAVE PSYCHOTHERAPY/COUNSELING' LABTEST ='THIS VISIT DID P HAVE LAB TEST' SONOGRAM='THIS VISIT DID P HAVE SONOGRAM OR ULTRSD' XRAYS ='THIS VISIT DID P HAVE XRAYS' MAMMOG ='THIS VISIT DID P HAVE A MAMMOGRAM' MRI ='THIS VISIT DID P HAVE 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 ='DURING THIS VISIT P RECEIVE ANESTHESIA' OTHSVCE ='THIS VISIT DID P HAVE OTHER TESTS/EXAMS' SURGPROC='WAS SURG PROC PERFORMED ON P THIS VISIT' SURGNAME='SURGICAL PROCEDURE NAME IN CATEGORIES' MEDPRESC='ANY MEDICINES PRESCRIBED FOR P DUR VISIT' DOCOUTF ='ANY DOCTOR ALSO SEEN OUTSIDE OF PROVIDER' VAPLACE ='VA FACILITY FLAG' OPICD1X ='3 DIGIT ICD-9 CONDITION CODE' OPICD2X ='3 DIGIT ICD-9 CONDITION CODE' OPICD3X ='3 DIGIT ICD-9 CONDITION CODE' OPICD4X ='3 DIGIT ICD-9 CONDITION CODE' OPPRO1X ='2 DIGIT ICD-9 PROCEDURE CODE' OPCCC1X ='MODIFIED CLINICAL CLASSIFICATION CODE' OPCCC2X ='MODIFIED CLINICAL CLASSIFICATION CODE' OPCCC3X ='MODIFIED CLINICAL CLASSIFICATION CODE' OPCCC4X ='MODIFIED CLINICAL CLASSIFICATION CODE' FFOPTYPE='FLAT FEE BUNDLE' FFBEF99 ='TOTAL # OF VISITS IN FF BEFORE 1999' FFTOT00 ='TOTAL # OF VISITS IN FF AFTER 1999' OPXP99X ='TOT EXP FOR EVENT(OPFXP99X + OPDXP99X)' OPTC99X ='TOT CHG FOR EVENT(OPFTC99X + OPDTC99X)' OPFSF99X='FACILITY AMT PD,FAMILY (IMPUTED)' OPFMR99X='FACILITY AMT PD,MEDICARE (IMPUTED)' OPFMD99X='FACILITY AMT PD,MEDICAID (IMPUTED)' OPFPV99X='FACILITY AMT PD,PRIV INSUR (IMPUTED)' OPFVA99X='FACILITY AMT PD,VETERANS (IMPUTED)' OPFCH99X='FACILITY AMT PD,CHAMP/CHAMPVA (IMPUTED)' OPFOF99X='FACILITY AMT PD,OTH FEDERAL (IMPUTED)' OPFSL99X='FACILITY AMT PD,STATE/LOC GOV (IMPUTED)' OPFWC99X='FACILITY AMT PD,WORKERS COMP (IMPUTED)' OPFOR99X='FACILITY AMT PD,OTH PRIV (IMPUTED)' OPFOU99X='FACILITY AMT PD,OTH PUB (IMPUTED)' OPFOT99X='FACILITY AMT PD,OTH INSUR (IMPUTED)' OPFXP99X='FACILITY SUM PAYMENTS OPFSF99X-OPFOT99X' OPFTC99X='TOTAL FACILITY CHARGE (IMPUTED)' OPDSF99X='DOCTOR AMT PD,FAMILY (IMPUTED)' OPDMR99X='DOCTOR AMT PD,MEDICARE (IMPUTED)' OPDMD99X='DOCTOR AMT PD,MEDICAID (IMPUTED)' OPDPV99X='DOCTOR AMT PD,PRIV INSUR(IMPUTED)' OPDVA99X='DOCTOR AMT PD,VETERANS (IMPUTED)' OPDCH99X='DOCTOR AMT PD,CHAMP/CHAMPVA(IMPUTED)' OPDOF99X='DOCTOR AMT PD,OTH FEDERAL (IMPUTED)' OPDSL99X='DOCTOR AMT PD,STATE/LOC GOV(IMPUTED)' OPDWC99X='DOCTOR AMT PD,WORKERS COMP (IMPUTED)' OPDOR99X='DOCTOR AMT PD,OTH PRIV (IMPUTED)' OPDOU99X='DOCTOR AMT PD,OTH PUB (IMPUTED)' OPDOT99X='DOCTOR AMT PD,OTH INSUR (IMPUTED)' OPDXP99X='DOCTOR SUM PAYMENTS OPDSF99X-OPDOT99X' OPDTC99X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT99F='FINAL PERSON LEVEL WEIGHT, 1999' VARPSU99='VARIANCE ESTIMATION PSU,1999' VARSTR99='VARIANCE ESTIMATION STRATUM,1999' ; * VALUE STATEMENTS; VALUE ANESTH -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 $CCCODEX '-1' = '-1 INAPPLICABLE' '-2' = '-2 DETERMINED IN PREVIOUS ROUND' '-3' = '-3 NO DATA IN ROUND' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '260' = '001-260' ; VALUE CHEMOTH -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE DOCOUTF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE DRUGTRT -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE DUID 60001 - 76874 = 'VALID ID' ; VALUE $DUPERSI '60001010' - '76874016' = 'VALID ID' ; VALUE EEG -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 EKG -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 EVENTRN 1 = '1 ROUND 1' 2 = '2 ROUND 2' 3 = '3 ROUND 3' 4 = '4 ROUND 4' 5 = '5 ROUND 5' ; VALUE $EVNTIDX '600010100234' - '768740160157' = 'VALID ID' ; VALUE FFBEF99F -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 4 = '1 - 4' ; VALUE $FFEEIDX '-1' = '-1 INAPPLICABLE' '10001' - 'OP7551603001' = 'VALID ID' ; VALUE FFTOT00F -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 2 = '1 - 2' ; VALUE $ICD9COD '-1' = '-1 INAPPLICABLE' '-2' = '-2 DETERMINED IN PREVIOUS ROUND' '-3' = '-3 NO DATA IN ROUND' '-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' 'V00' - 'V99' = 'V00-V99' ; VALUE $ICD9PRO '-1' = '-1 INAPPLICABLE' '-2' = '-2 DETERMINED IN PREVIOUS ROUND' '-3' = '-3 NO DATA IN ROUND' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '01' - '05' = '01-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 IMPFLAG 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 IVTHER -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE KIDNEYD -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE LABTEST -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 MAMMOG -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 MEDPRESC -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE MEDPTYPE -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 CHIROPRACTOR' 2 = '2 DENTIST/DENTAL CARE PERSON' 3 = '3 MIDWIFE' 4 = '4 NURSE/NURSE PRACTITIONER' 5 = '5 OPTOMETRIST' 6 = '6 PODIATRIST' 7 = "7 PHYSICIAN'S ASSISTANT" 8 = '8 PHYSICAL THERAPIST' 9 = '9 OCCUPATIONAL THERAPIST' 10 = '10 PSYCHOLOGIST' 11 = '11 SOCIAL WORKER' 12 = '12 TECHNICIAN' 91 = '91 OTHER' ; VALUE MPCDATA 1 = '1 HAS MPC DATA' 2 = '2 NO MPC DATA' ; VALUE MRI -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 OCCUPTH -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE OPCHM99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.12 - 18.63 = '$7.12 - $18.63' 18.63 < - 46.65 = '$18.64 - $46.65' 46.65 < - 126 = '$46.66 - $126.00' 126 < - 2041.55 = '$126.01 - $2041.55' ; VALUE OPDATEDD -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 31 = '1 - 31 DAY' ; VALUE OPDATEMM -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 12 = '1 - 12 MONTH' ; VALUE OPDATEYR -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1999 = '1999 YEAR' ; VALUE OPDCH99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 10.12 - 12.6 = '$10.12 - $12.60' 12.6 < - 21.705 = '$12.61 - $21.71' 21.705 < - 668.67 = '$21.72 - $668.67' 668.67 < - 1238.97 = '$668.68 - $1238.97' ; VALUE OPDMD99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.38 - 22.08 = '$0.38 - $22.08' 22.08 < - 50.25 = '$22.09 - $50.25' 50.25 < - 121.26 = '$50.26 - $121.26' 121.26 < - 1981.16 = '$121.27 - $1981.16' ; VALUE OPDMR99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.48 - 26.02 = '$1.48 - $26.02' 26.02 < - 70.94 = '$26.03 - $70.94' 70.94 < - 212.54 = '$70.95 - $212.54' 212.54 < - 4059.05 = '$212.55 - $4059.05' ; VALUE OPDOF99X . = '$. - $.' -9 = '-9 NOT ASCERTAINED' 0 = '0' ; VALUE OPDOR99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.34 - 12.03 = '$1.34 - $12.03' 12.03 < - 35 = '$12.04 - $35.00' 35 < - 101.29 = '$35.01 - $101.29' 101.29 < - 2983.56 = '$101.30 - $2983.56' ; VALUE OPDOT99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 102.11 = '$102.12 - $102.11' ; VALUE OPDOU99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.22 - 6 = '$2.22 - $6.00' 6 < - 13.39 = '$6.01 - $13.39' 13.39 < - 51.67 = '$13.40 - $51.67' 51.67 < - 169.1 = '$51.68 - $169.10' ; VALUE OPDPV99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.2 - 28.8 = '$1.20 - $28.80' 28.8 < - 92.02 = '$28.81 - $92.02' 92.02 < - 345.43 = '$92.03 - $345.43' 345.43 < - 12851.6 = '$345.44 - $12851.60' ; VALUE OPDSF99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.88 - 10 = '$0.88 - $10.00' 10 < - 29.84 = '$10.01 - $29.84' 29.84 < - 90 = '$29.85 - $90.00' 90 < - 2086 = '$90.01 - $2086.00' ; VALUE OPDSL99X . = '$. - $.' -9 = '-9 NOT ASCERTAINED' 0 = '0' ; VALUE OPDTC99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 11 - 71.75 = '$11.00 - $71.75' 71.75 < - 214 = '$71.76 - $214.00' 214 < - 738.17 = '$214.01 - $738.17' 738.17 < - 15159 = '$738.18 - $15159.00' ; VALUE OPDVA99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.54 - 143 = '$5.54 - $143.00' 143 < - 312 = '$143.01 - $312.00' 312 < - 530 = '$312.01 - $530.00' 530 < - 1082 = '$530.01 - $1082.00' ; VALUE OPDWC99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.89 - 47.38 = '$3.89 - $47.38' 47.38 < - 100.25 = '$47.39 - $100.25' 100.25 < - 620.84 = '$100.26 - $620.84' 620.84 < - 2258.1 = '$620.85 - $2258.10' ; VALUE OPDXP99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 3 - 38.56 = '$3.00 - $38.56' 38.56 < - 108.49 = '$38.57 - $108.49' 108.49 < - 362.69 = '$108.50 - $362.69' 362.69 < - 12867 = '$362.70 - $12867.00' ; VALUE OPEXP99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.47 - 46.07 = '$0.47 - $46.07' 46.07 < - 109.43 = '$46.08 - $109.43' 109.43 < - 314.02 = '$109.44 - $314.02' 314.02 < - 16639.59 = '$314.03 - $16639.59' ; VALUE OPFFTYPE -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 FLAT FEE STEM' 2 = '2 FLAT FEE LEAF' ; VALUE OPMCD99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.8 - 37.9 = '$0.80 - $37.90' 37.9 < - 92.13 = '$37.91 - $92.13' 92.13 < - 236.71 = '$92.14 - $236.71' 236.71 < - 15077.55 = '$236.72 - $15077.55' ; VALUE OPMCR99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.43 - 32.21 = '$0.43 - $32.21' 32.21 < - 66.63 = '$32.22 - $66.63' 66.63 < - 205.4 = '$66.64 - $205.40' 205.4 < - 14745.09 = '$205.41 - $14745.09' ; VALUE OPOFD99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.15 - 23.61 = '$1.15 - $23.61' 23.61 < - 51.16 = '$23.62 - $51.16' 51.16 < - 112.4 = '$51.17 - $112.40' 112.4 < - 2318.75 = '$112.41 - $2318.75' ; VALUE OPOPR99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.76 - 23.775 = '$1.76 - $23.78' 23.775 < - 61.62 = '$23.79 - $61.62' 61.62 < - 188.96 = '$61.63 - $188.96' 188.96 < - 5231.64 = '$188.97 - $5231.64' ; VALUE OPOPU99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.47 - 18.43 = '$6.47 - $18.43' 18.43 < - 78.74 = '$18.44 - $78.74' 78.74 < - 168 = '$78.75 - $168.00' 168 < - 1748.43 = '$168.01 - $1748.43' ; VALUE OPOSR99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 5 - 50 = '$5.00 - $50.00' 50 < - 86.44 = '$50.01 - $86.44' 86.44 < - 121.6 = '$86.45 - $121.60' 121.6 < - 1945.42 = '$121.61 - $1945.42' ; VALUE OPPRV99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.04 - 40.5 = '$0.04 - $40.50' 40.5 < - 103 = '$40.51 - $103.00' 103 < - 326.63 = '$103.01 - $326.63' 326.63 < - 16638.59 = '$326.64 - $16638.59' ; VALUE OPR2FLAG -1 = '-1 NO R2 CROSSOVER PROBLEM' 1 = '1 PANEL 3 R2 EVENT IN 1999' ; VALUE OPSLF99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.02 - 7 = '$0.02 - $7.00' 7 < - 14.84 = '$7.01 - $14.84' 14.84 < - 48.81 = '$14.85 - $48.81' 48.81 < - 4400 = '$48.82 - $4400.00' ; VALUE OPSTL99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 12.5 - 48.325 = '$12.50 - $48.33' 48.325 < - 129.125 = '$48.34 - $129.13' 129.125 < - 190.7 = '$129.14 - $190.70' 190.7 < - 2479.94 = '$190.71 - $2479.94' ; VALUE OPTC99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.47 - 99.2 = '$0.47 - $99.20' 99.2 < - 217.4 = '$99.21 - $217.40' 217.4 < - 835.21 = '$217.41 - $835.21' 835.21 < - 44688.35 = '$835.22 - $44688.35' ; VALUE OPTLCHRG -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.47 - 84 = '$0.47 - $84.00' 84 < - 182.26 = '$84.01 - $182.26' 182.26 < - 585 = '$182.27 - $585.00' 585 < - 35573.35 = '$585.01 - $35573.35' ; VALUE OPVA99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.01 - 24.05 = '$0.01 - $24.05' 24.05 < - 57.5 = '$24.06 - $57.50' 57.5 < - 148.19 = '$57.51 - $148.19' 148.19 < - 2500 = '$148.20 - $2500.00' ; VALUE OPWCP99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.47 - 71 = '$0.47 - $71.00' 71 < - 120 = '$71.01 - $120.00' 120 < - 247.69 = '$120.01 - $247.69' 247.69 < - 6864.85 = '$247.70 - $6864.85' ; VALUE OPXP99X -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.47 - 52.97 = '$0.47 - $52.97' 52.97 < - 126.46 = '$52.98 - $126.46' 126.46 < - 424.2 = '$126.47 - $424.20' 424.2 < - 17067.23 = '$424.21 - $17067.23' ; VALUE OTHSVCE -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 PERWT99P 0 = '0' 751.586328 - 59126.264348 = '751.586328 - 59126.264348' ; VALUE PHYSTH -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE PID 10 - 101 = 'VALID ID' ; VALUE PSYCHOTH -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE RADIATTH -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE RCVSHOT -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE RCVVAC -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 REFERDBY -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE SEEDOC -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE SEETLKPV -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 SAW PROVIDER' 2 = '2 TELEPHONE CALL' ; VALUE SONOGRAM -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 SPEECHTH -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE SURGNAME -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 ARTHROSCOPIC SURGERY' 2 = '2 CATARACT SURGERY' 3 = '3 CLEANING/TREATM WOUND, INFECTION' 4 = '4 DILATION AND CURETTAGE (D AND C)' 5 = '5 STITCHES (WOUND SUTURE)' 6 = '6 TISSUE BIOPSY' 7 = '7 TONSILLECTOMY' 8 = '8 ADENOIDECTOMY' 9 = '9 CARDIAC CATHETERIZATION' 10 = '10 EAR TUBES (TYMPANOSTOMY TUBES)' 11 = '11 PACEMAKER INSERTION' 91 = '91 OTHER SURGICAL PROCEDURE' ; VALUE SURGPROC -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO TREATMENT RECEIVED' ; VALUE TIMESPNT -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 5 MINUTES OR LESS' 2 = '2 6-10 MINUTES' 3 = '3 11-15 MINUTES' 4 = '4 16-25 MINUTES' 5 = '5 26-40 MINUTES' 6 = '6 41 MINUTES OR MORE' ; VALUE VAPLACE -1 = '-1 INAPPLICABLE' 0 = '0 NO' 1 = '1 YES' ; VALUE VARPSU9F 1 - 39 = '1 - 39' ; VALUE VARSTR9F 1 - 143 = '1 - 143' ; VALUE VSTCTGRY -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 GENERAL CHECKUP' 2 = '2 DIAGNOSIS OR TREATMENT' 3 = '3 EMERGENCY (E.G.,ACCIDENT OR JURY)' 4 = '4 PSYCHOTHERAPY OR MENTAL HEALTH COUNSEL' 5 = '5 FOLLOW-UP OR POST-OPERATIVE VISIT' 6 = '6 IMMUNIZATIONS OR SHOTS' 7 = '7 VISION EXAM' 8 = '8 MATERNITY CARE (PRE/POSTNATAL)' 9 = '9 WELL CHILD EXAM' 91 = '91 OTHER' ; VALUE VSTRELCN -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE XRAYS -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ;