SAS User File for H33D 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 (H33D.SSP) or the ASCII data file (H33D.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\H33D.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.H33D; TITLE "List of Variables in MEPS H33D SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.H33D (OBS=20); TITLE "First 20 Observations in MEPS H33D 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) H33D 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 H33D.SD2 will be created under the C:\MEPS directory when PROC XCOPY runs successfully. 4) The SAS transport file H33D.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 H33D.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\H33D.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 H33D.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\H33D.DAT'; DATA PUFLIB.H33D; INFILE IN1 LRECL=372; 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 (H33D). In the example, after the successful completion of the DATA step, a PC file named H33D.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 (372 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 H33D.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., 372 for H33D.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (374 for H33D.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 (372 for H33D.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 (H33D.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\H33D.DAT'; DATA PUFLIB.H33D; INFILE IN1 LRECL=372; 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.H33D; 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 H33D.DAT file into a SAS data set, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=372; INPUT @1 DUID 5.0 @6 PID 3.0 @9 DUPERSID $8.0 @17 EVNTIDX $12.0 @29 EVENTRN 1.0 @30 IPR2FLAG 2.0 @32 ERHEVIDX $12.0 @44 FFEEIDX $10.0 @54 MPCDATA 1.0 @55 IPBEGYR 4.0 @59 IPBEGMM 2.0 @61 IPBEGDD 2.0 @63 IPENDYR 4.0 @67 IPENDMM 2.0 @69 IPENDDD 2.0 @71 NUMNIGHX 3.0 @74 NUMNIGHT 2.0 @76 EMERROOM 2.0 @78 SPECCOND 2.0 @80 RSNINHOS 2.0 @82 ANYOPER 2.0 @84 SURGPROC 2.0 @86 VAPLACE 1.0 @87 IPICD1X $3.0 @90 IPICD2X $3.0 @93 IPICD3X $3.0 @96 IPICD4X $3.0 @99 IPPRO1X $3.0 @102 IPPRO2X $3.0 @105 IPCCC1X $3.0 @108 IPCCC2X $3.0 @111 IPCCC3X $3.0 @114 IPCCC4X $3.0 @117 DSCHPMED 2.0 @119 DROUTSID 2.0 @121 FFIPTYPE 2.0 @123 IPXP99X 9.2 @132 IPTC99X 9.2 @141 IPFSF99X 8.2 @149 IPFMR99X 9.2 @158 IPFMD99X 8.2 @166 IPFPV99X 9.2 @175 IPFVA99X 9.2 @184 IPFCH99X 7.2 @191 IPFOF99X 8.2 @199 IPFSL99X 7.2 @206 IPFWC99X 8.2 @214 IPFOR99X 8.2 @222 IPFOU99X 8.2 @230 IPFOT99X 8.2 @238 IPFXP99X 9.2 @247 IPFTC99X 9.2 @256 IPDSF99X 7.2 @263 IPDMR99X 8.2 @271 IPDMD99X 8.2 @279 IPDPV99X 8.2 @287 IPDVA99X 6.2 @293 IPDCH99X 7.2 @300 IPDOF99X 4.2 @304 IPDSL99X 7.2 @311 IPDWC99X 7.2 @318 IPDOR99X 8.2 @326 IPDOU99X 7.2 @333 IPDOT99X 6.2 @339 IPDXP99X 8.2 @347 IPDTC99X 8.2 @355 IMPFLAG 1.0 @356 PERWT99F 12.6 @368 VARPSU99 2.0 @370 VARSTR99 3.0 ; * FORMAT STATEMENTS; FORMAT DUID VALIDID. PID VALIDID. DUPERSID $ID. EVNTIDX $ID. EVENTRN EVENTRN. IPR2FLAG IPR2FLAG. ERHEVIDX $ID. FFEEIDX $ID. MPCDATA MPCDATA. IPBEGYR IPBEGYR. IPBEGMM IPBEGMM. IPBEGDD IPBEGDD. IPENDYR IPENDYR. IPENDMM IPENDMM. IPENDDD IPENDDD. NUMNIGHX NUMNIGHX. NUMNIGHT NUMNIGHT. EMERROOM EMERROOM. SPECCOND SPECCOND. RSNINHOS RSNINHOS. ANYOPER ANYOPER. SURGPROC SURGPROC. VAPLACE VAPLACE. IPICD1X $ICD9COD. IPICD2X $ICD9COD. IPICD3X $ICD9COD. IPICD4X $ICD9COD. IPPRO1X $ICD9PRO. IPPRO2X $ICD9PRO. IPCCC1X $CCCODEX. IPCCC2X $CCCODEX. IPCCC3X $CCCODEX. IPCCC4X $CCCODEX. DSCHPMED DSCHPMED. DROUTSID DROUTSID. FFIPTYPE FFIPTYPE. IPXP99X IPXP99X. IPTC99X IPTC99X. IPFSF99X IPFSF99X. IPFMR99X IPFMR99X. IPFMD99X IPFMD99X. IPFPV99X IPFPV99X. IPFVA99X IPFVA99X. IPFCH99X IPFCH99X. IPFOF99X IPFOF99X. IPFSL99X IPFSL99X. IPFWC99X IPFWC99X. IPFOR99X IPFOR99X. IPFOU99X IPFOU99X. IPFOT99X IPFOT99X. IPFXP99X IPFXP99X. IPFTC99X IPFTC99X. IPDSF99X IPDSF99X. IPDMR99X IPDMR99X. IPDMD99X IPDMD99X. IPDPV99X IPDPV99X. IPDVA99X IPDVA99X. IPDCH99X IPDCH99X. IPDOF99X IPDOF99X. IPDSL99X IPDSL99X. IPDWC99X IPDWC99X. IPDOR99X IPDOR99X. IPDOU99X IPDOU99X. IPDOT99X IPDOT99X. IPDXP99X IPDXP99X. IPDTC99X IPDTC99X. IMPFLAG IMPFLAG. PERWT99F PERWT99F. VARPSU99 VARPSU9I. VARSTR99 VARSTR9I. ; * LABEL STATEMENTS; LABEL DUID ='DWELLING UNIT ID' PID ='NUMERIC PID' DUPERSID='PERSON ID (DUID+PID)' EVNTIDX ='EVENT ID' EVENTRN ='EVENT ROUND NUMBER' IPR2FLAG='FLAG FOR PANEL 3 R2 EVENT IN 1999' ERHEVIDX='ER/HS LINK ID' FFEEIDX ='FLAT FEE ID' MPCDATA ='MPC DATA FLAG' IPBEGYR ='EVENT START DATE - YEAR (4-DIGIT)' IPBEGMM ='EVENT START DATE - MONTH' IPBEGDD ='EVENT START DATE - DAY' IPENDYR ='EVENT END DATE - YEAR (4-DIGIT)' IPENDMM ='EVENT END DATE - MONTH' IPENDDD ='EVENT END DATE - DAY' NUMNIGHX='# NGTS IN HOSP - EDITED/IMPUTED' NUMNIGHT='NUMBER OF NIGHTS STAYED AT PROVIDER' EMERROOM='DID STAY BEGIN WITH EMERGENCY ROOM VISIT' SPECCOND='HOSPITAL STAY RELATED TO CONDITION' RSNINHOS='REASON ENTERED HOSPITAL' ANYOPER ='ANY OPERATIONS OR SURGERIES PERFORMED' SURGPROC='MAIN SURGICAL PROCEDURE' VAPLACE ='VA FACILITY FLAG' IPICD1X ='3 DIGIT ICD-9 CONDITION CODE' IPICD2X ='3 DIGIT ICD-9 CONDITION CODE' IPICD3X ='3 DIGIT ICD-9 CONDITION CODE' IPICD4X ='3 DIGIT ICD-9 CONDITION CODE' IPPRO1X ='2 DIGIT ICD-9 PROCEDURE CODE' IPPRO2X ='2 DIGIT ICD-9 PROCEDURE CODE' IPCCC1X ='MODIFIED CLINICAL CLASSIFICATION CODE' IPCCC2X ='MODIFIED CLINICAL CLASSIFICATION CODE' IPCCC3X ='MODIFIED CLINICAL CLASSIFICATION CODE' IPCCC4X ='MODIFIED CLINICAL CLASSIFICATION CODE' DSCHPMED='MEDICINES PRESCRIBED AT DISCHARGE' DROUTSID='ANY OF THE DRS SEEN OUTSIDE THE PROVIDER' FFIPTYPE='FLAT FEE BUNDLE' IPXP99X ='TOT EXP FOR EVENT(IPFXP99X+IPDXP99X)' IPTC99X ='TOT CHG FOR EVENT(IPFTC99X+IPDTC99X)' IPFSF99X='FACILITY AMT PD, FAMILY (IMPUTED)' IPFMR99X='FACILITY AMT PD, MEDICARE (IMPUTED)' IPFMD99X='FACILITY AMT PD, MEDICAID (IMPUTED)' IPFPV99X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' IPFVA99X='FACILITY AMT PD, VETERANS (IMPUTED)' IPFCH99X='FACILITY AMT PD, CHAMP/CHAMPVA (IMPUTED)' IPFOF99X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' IPFSL99X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' IPFWC99X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' IPFOR99X='FACILITY AMT PD, OTH PRIV (IMPUTED)' IPFOU99X='FACILITY AMT PD, OTH PUB (IMPUTED)' IPFOT99X='FACILITY AMT PD, OTH INSUR (IMPUTED)' IPFXP99X='FACILITY SUM PAYMENTS IPFSF99X-IPFOT99X' IPFTC99X='TOTAL FACILITY CHARGE(IMPUTED)' IPDSF99X='DOCTOR AMT PD, FAMILY (IMPUTED)' IPDMR99X='DOCTOR AMT PD, MEDICARE (IMPUTED)' IPDMD99X='DOCTOR AMT PD, MEDICAID (IMPUTED)' IPDPV99X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' IPDVA99X='DOCTOR AMT PD, VETERANS (IMPUTED)' IPDCH99X='DOCTOR AMT PD, CHAMP/CHAMPVA (IMPUTED)' IPDOF99X='DOCTOR AMT PD, OTH FEDERAL (IMPUTED)' IPDSL99X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' IPDWC99X='DOCTOR AMT PD, WORKERS COMP (IMPUTED)' IPDOR99X='DOCTOR AMT PD, OTH PRIV (IMPUTED)' IPDOU99X='DOCTOR AMT PD, OTH PUB (IMPUTED)' IPDOT99X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' IPDXP99X='DOCTOR SUM PAYMENTS IPDSF99X-IPDOT99X' IPDTC99X='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 ANYOPER -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE $CCCODEX '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '259' = '001-259' ; VALUE DROUTSID -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE DSCHPMED -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE EMERROOM -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE EVENTRN 1 = '1 ROUND 1' 2 = '2 ROUND 2' 3 = '3 ROUND 3' 4 = '4 ROUND 4' 5 = '5 ROUND 5' ; VALUE FFIPTYPE -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 FLAT FEE STEM' 2 = '2 FLAT FEE LEAF' ; VALUE $ICD9COD '-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' 'V00' - 'V99' = 'V00-V99' ; VALUE $ICD9PRO '-1' = '-1 INAPPLICABLE' '-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 $ID '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '1' - '99999999999999' = 'VALID ID' ; VALUE IMPFLAG -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -3 = '-3 NO DATA IN ROUND' -2 = '-2 DETERMINED IN PREVIOUS ROUND' -1 = '-1 INAPPLICABLE' 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 IPBEGDD -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 31 = '1 - 31 DAY' ; VALUE IPBEGMM -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 12 = '1 - 12 MONTH' ; VALUE IPBEGYR -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1997 = '1997' 1998 = '1998' 1999 = '1999' ; VALUE IPDCH99X 0 = '0' 63.16 - 72.49 = '$63.16 - $72.49' 72.49 < - 770.51 = '$72.50 - $770.51' 770.51 < - 822.33 = '$770.52 - $822.33' 822.33 < - 1640.51 = '$822.34 - $1640.51' ; VALUE IPDMD99X 0 = '0' 0.6 - 75.05 = '$0.60 - $75.05' 75.05 < - 186.48 = '$75.06 - $186.48' 186.48 < - 559.75 = '$186.49 - $559.75' 559.75 < - 17143.04 = '$559.76 - $17143.04' ; VALUE IPDMR99X 0 = '0' 1 - 195.24 = '$1.00 - $195.24' 195.24 < - 457.34 = '$195.25 - $457.34' 457.34 < - 1023.37 = '$457.35 - $1023.37' 1023.37 < - 14950.44 = '$1023.38 - $14950.44' ; VALUE IPDOF99X 0 = '0' ; VALUE IPDOR99X 0 = '0' 1.77 - 55.3 = '$1.77 - $55.30' 55.3 < - 204.3 = '$55.31 - $204.30' 204.3 < - 542.245 = '$204.31 - $542.25' 542.245 < - 17454.57 = '$542.25 - $17454.57' ; VALUE IPDOT99X 0 = '0' 20.14 - 188.26 = '$20.14 - $188.26' 188.26 < - 310.38 = '$188.27 - $310.38' 310.38 < - 536 = '$310.39 - $536.00' 536 = '$536.01 - $536.00' ; VALUE IPDOU99X 0 = '0' 2.14 - 66.15 = '$2.14 - $66.15' 66.15 < - 154.915 = '$66.16 - $154.92' 154.915 < - 480.6 = '$154.93 - $480.60' 480.6 < - 2041.72 = '$480.61 - $2041.72' ; VALUE IPDPV99X 0 = '0' 0.01 - 174 = '$0.01 - $174.00' 174 < - 525.39 = '$174.01 - $525.39' 525.39 < - 1429.8 = '$525.40 - $1429.80' 1429.8 < - 20375.53 = '$1429.81 - $20375.53' ; VALUE IPDSF99X 0 = '0' 0.93 - 26.22 = '$0.93 - $26.22' 26.22 < - 80 = '$26.23 - $80.00' 80 < - 242.34 = '$80.01 - $242.34' 242.34 < - 4238.6 = '$242.35 - $4238.60' ; VALUE IPDSL99X 0 = '0' 18.2 - 35.23 = '$18.20 - $35.23' 35.23 < - 155.525 = '$35.24 - $155.53' 155.525 < - 912.38 = '$155.54 - $912.38' 912.38 < - 1040.49 = '$912.39 - $1040.49' ; VALUE IPDTC99X 0 = '0' 20.81 - 527.5 = '$20.81 - $527.50' 527.5 < - 1359 = '$527.51 - $1359.00' 1359 < - 3275 = '$1359.01 - $3275.00' 3275 < - 49818 = '$3275.01 - $49818.00' ; VALUE IPDVA99X 0 = '0' 2.51 - 27.3 = '$2.51 - $27.30' 27.3 < - 107.23 = '$27.31 - $107.23' 107.23 < - 330 = '$107.24 - $330.00' 330 < - 665 = '$330.01 - $665.00' ; VALUE IPDWC99X 0 = '0' 2.51 - 38.69 = '$2.51 - $38.69' 38.69 < - 113.605 = '$38.70 - $113.61' 113.605 < - 672 = '$113.62 - $672.00' 672 < - 8107.94 = '$672.01 - $8107.94' ; VALUE IPDXP99X 0 = '0' 0.6 - 264.48 = '$0.60 - $264.48' 264.48 < - 675.63 = '$264.49 - $675.63' 675.63 < - 1528.63 = '$675.64 - $1528.63' 1528.63 < - 21281.61 = '$1528.64 - $21281.61' ; VALUE IPENDDD -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 31 = '1 - 31 DAY' ; VALUE IPENDMM -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 12 = '1 - 12 MONTH OF DISCHARGE' 95 = '95 STILL IN HOSPITAL' ; VALUE IPENDYR -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1997 = '1997' 1998 = '1998' 1999 = '1999' ; VALUE IPFCH99X 0 = '0' 1166.68 = '$1166.68 - $1166.68' 1166.68 < - 2110.5 = '$1166.69 - $2110.50' 2110.5 < - 2321.24 = '$2110.51 - $2321.24' 2321.24 < - 5394.57 = '$2321.25 - $5394.57' ; VALUE IPFMD99X 0 = '0' 2.09 - 768 = '$2.09 - $768.00' 768 < - 1842.92 = '$768.01 - $1842.92' 1842.92 < - 3710.91 = '$1842.93 - $3710.91' 3710.91 < - 85725.45 = '$3710.92 - $85725.45' ; VALUE IPFMR99X 0 = '0' 6.26 - 2721.57 = '$6.26 - $2721.57' 2721.57 < - 4282 = '$2721.58 - $4282.00' 4282 < - 8274.64 = '$4282.01 - $8274.64' 8274.64 < - 152422.47 = '$8274.65 - $152422.47' ; VALUE IPFOF99X 0 = '0' 425 - 958.55 = '$425.00 - $958.55' 958.55 < - 2450.04 = '$958.56 - $2450.04' 2450.04 < - 4626 = '$2450.05 - $4626.00' 4626 < - 27584 = '$4626.01 - $27584.00' ; VALUE IPFOR99X 0 = '0' 2.05 - 739.01 = '$2.05 - $739.01' 739.01 < - 770.06 = '$739.02 - $770.06' 770.06 < - 1420.64 = '$770.07 - $1420.64' 1420.64 < - 95341.01 = '$1420.65 - $95341.01' ; VALUE IPFOT99X 0 = '0' 71.81 - 782.75 = '$71.81 - $782.75' 782.75 < - 2800.33 = '$782.76 - $2800.33' 2800.33 < - 4780.85 = '$2800.34 - $4780.85' 4780.85 < - 21293.91 = '$4780.86 - $21293.91' ; VALUE IPFOU99X 0 = '0' 20.43 - 995 = '$20.43 - $995.00' 995 < - 2382.395 = '$995.01 - $2382.40' 2382.395 < - 4738.4 = '$2382.41 - $4738.40' 4738.4 < - 13970.56 = '$4738.41 - $13970.56' ; VALUE IPFPV99X 0 = '0' 2.05 - 783.86 = '$2.05 - $783.86' 783.86 < - 2176.02 = '$783.87 - $2176.02' 2176.02 < - 4780.53 = '$2176.03 - $4780.53' 4780.53 < - 146244.55 = '$4780.54 - $146244.55' ; VALUE IPFSF99X 0 = '0' 1 - 35 = '$1.00 - $35.00' 35 < - 153.6 = '$35.01 - $153.60' 153.6 < - 528.5 = '$153.61 - $528.50' 528.5 < - 28699.08 = '$528.51 - $28699.08' ; VALUE IPFSL99X 0 = '0' 542.95 - 732.05 = '$542.95 - $732.05' 732.05 < - 1098.075 = '$732.06 - $1098.08' 1098.075 < - 1901.265 = '$1098.09 - $1901.27' 1901.265 < - 2527.53 = '$1901.28 - $2527.53' ; VALUE IPFTC99X 0 = '0' 28.7 - 3765 = '$28.70 - $3765.00' 3765 < - 6779.5 = '$3765.01 - $6779.50' 6779.5 < - 12898.62 = '$6779.51 - $12898.62' 12898.62 < - 435939.75 = '$12898.63 - $435939.75' ; VALUE IPFVA99X 0 = '0' 395.91 - 1235 = '$395.91 - $1235.00' 1235 < - 5220.48 = '$1235.01 - $5220.48' 5220.48 < - 10717 = '$5220.49 - $10717.00' 10717 < - 123848.28 = '$10717.01 - $123848.28' ; VALUE IPFWC99X 0 = '0' 150.26 - 1295.515 = '$150.26 - $1295.52' 1295.515 < - 4936.25 = '$1295.53 - $4936.25' 4936.25 < - 12412.285 = '$4936.26 - $12412.29' 12412.285 < - 47670.5 = '$12412.30 - $47670.50' ; VALUE IPFXP99X 0 = '0' 6.26 - 2013.61 = '$6.26 - $2013.61' 2013.61 < - 3789.83 = '$2013.62 - $3789.83' 3789.83 < - 6626.43 = '$3789.84 - $6626.43' 6626.43 < - 152422.47 = '$6626.44 - $152422.47' ; VALUE IPR2FLAG -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -3 = '-3 NO DATA IN ROUND' -2 = '-2 DETERMINED IN PREVIOUS ROUND' -1 = '-1 NO R2 CROSSOVER PROBLEM' 1 = '1 PANEL3 R2 EVENT IN 1999' ; VALUE IPTC99X 0 = '0' 28.7 - 4709.75 = '$28.70 - $4709.75' 4709.75 < - 8344.21 = '$4709.76 - $8344.21' 8344.21 < - 15586.55 = '$8344.22 - $15586.55' 15586.55 < - 445657 = '$15586.56 - $445657.00' ; VALUE IPXP99X 0 = '0' 5 - 2507.27 = '$5.00 - $2507.27' 2507.27 < - 4425.15 = '$2507.28 - $4425.15' 4425.15 < - 7717.83 = '$4425.16 - $7717.83' 7717.83 < - 167514.77 = '$7717.84 - $167514.77' ; VALUE MPCDATA 1 = '1 HAS MPC DATA' 2 = '2 NO MPC DATA' ; VALUE NUMNIGHT -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -3 = '-3 NO DATA IN ROUND' -2 = '-2 DETERMINED IN PREVIOUS ROUND' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 95 = '1-95 NUMBER OF NIGHTS' ; VALUE NUMNIGHX -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -3 = '-3 NO DATA IN ROUND' -2 = '-2 DETERMINED IN PREVIOUS ROUND' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 119 = '1-119' ; VALUE PERWT99F 0 = '0' 712.646904 - 79574.653847 = '712.646904 - 79574.653847' ; VALUE RSNINHOS -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 OPERATION OR SURGICAL PROCEDURE' 2 = '2 TREATMENT/THERAPY' 3 = '3 DIAGNOSTIC TESTS ONLY' 4 = '4 GIVE BIRTH TO A BABY (MOTHER)' 5 = '5 TO BE BORN (BABY)' 91 = '91 OTHER SPECIFY' ; VALUE SPECCOND -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE SURGPROC -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 APPENDECTOMY' 2 = '2 ARTHROSCOPIC SURGERY (VISUAL OF JOINTS)' 3 = '3 CARDIAC CATHETERIZATION' 4 = '4 CATARACT SURGERY' 5 = '5 CIRCUMCISION' 6 = '6 CORONARY BYPASS' 7 = '7 D AND C (DILATION AND CURETTAGE)' 8 = '8 DENTAL SURGERY' 9 = '9 GALLBLADDER SURGERY (CHOLECYSTECTOMY)' 10 = '10 HERNIA REPAIR' 11 = '11 HYSTERECTOMY' 12 = '12 JOINT (HIP/KNEE) REPLACEMENT SURGERY' 13 = '13 MASTECTOMY/LUMPECTOMY' 14 = '14 PACEMAKER INSERTION' 15 = '15 PLASTIC/RECONSTRUCTIVE SURGERY' 16 = '16 PROSTATE SURGERY (PROSTATECTOMY)' 17 = '17 SPINAL DISC SURGERY (SLIPPED/PROLAPSED)' 18 = '18 SURGICAL SETTING OF BROKEN BONE' 19 = '19 THYROID SURGERY (THYROIDECTOMY)' 20 = '20 TISSUE BIOPSY' 21 = '21 TONSILLECTOMY' 91 = '91 OTHER' ; VALUE VALIDID -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 < - HIGH = 'VALID ID' ; VALUE VAPLACE -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0 NO' 1 = '1 YES' ; VALUE VARPSU9I -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -3 = '-3 NO DATA IN ROUND' -2 = '-2 DETERMINED IN PREVIOUS ROUND' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 39 = '1 - 39' ; VALUE VARSTR9I -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -3 = '-3 NO DATA IN ROUND' -2 = '-2 DETERMINED IN PREVIOUS ROUND' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 143 = '1 - 143' ;