SAS User File for H26DF1 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 (H26DF1.SSP) or the ASCII data file (H26DF1.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\H26DF1.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.H26DF1; TITLE "List of Variables in MEPS H26DF1 SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.H26DF1 (OBS=20); TITLE "First 20 Observations in MEPS H26DF1 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) H26DF1 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 H26DF1.SD2 will be created under the C:\MEPS directory when PROC XCOPY runs successfully. 4) The SAS transport file H26DF1.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 H26DF1.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\H26DF1.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 H26DF1.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\H26DF1.DAT'; DATA PUFLIB.H26DF1; INFILE IN1 LRECL=373; 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 (H26DF1). In the example, after the successful completion of the DATA step, a PC file named H26DF1.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 (373 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 H26DF1.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., 373 for H26DF1.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (375 for H26DF1.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 (373 for H26DF1.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 (H26DF1.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\H26DF1.DAT'; DATA PUFLIB.H26DF1; INFILE IN1 LRECL=373; 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.H26DF1; 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 H26DF1.DAT file into a SAS data set, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=373; 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 $10.0 @52 MPCDATA 1.0 @53 IPBEGYR 4.0 @57 IPBEGMM 2.0 @59 IPBEGDD 2.0 @61 IPENDYR 4.0 @65 IPENDMM 2.0 @67 IPENDDD 2.0 @69 NUMNIGHX 3.0 @72 NUMNIGHT 2.0 @74 EMERROOM 2.0 @76 SPECCOND 2.0 @78 RSNINHOS 2.0 @80 ANYOPER 2.0 @82 SURGPROC 2.0 @84 VAPLACE 1.0 @85 IPICD1X $3.0 @88 IPICD2X $3.0 @91 IPICD3X $3.0 @94 IPICD4X $3.0 @97 IPPRO1X $3.0 @100 IPPRO2X $3.0 @103 IPCCC1X $3.0 @106 IPCCC2X $3.0 @109 IPCCC3X $3.0 @112 IPCCC4X $3.0 @115 DSCHPMED 2.0 @117 DROUTSID 2.0 @119 FFIPTYPE 2.0 @121 FFBEF98 2.0 @123 FFTOT99 2.0 @125 IPXP98X 9.2 @134 IPTC98X 9.2 @143 IPFSF98X 8.2 @151 IPFMR98X 9.2 @160 IPFMD98X 8.2 @168 IPFPV98X 9.2 @177 IPFVA98X 8.2 @185 IPFCH98X 8.2 @193 IPFOF98X 8.2 @201 IPFSL98X 7.2 @208 IPFWC98X 8.2 @216 IPFOR98X 9.2 @225 IPFOU98X 8.2 @233 IPFOT98X 8.2 @241 IPFXP98X 9.2 @250 IPFTC98X 9.2 @259 IPDSF98X 7.2 @266 IPDMR98X 8.2 @274 IPDMD98X 7.2 @281 IPDPV98X 8.2 @289 IPDVA98X 6.2 @295 IPDCH98X 6.2 @301 IPDOF98X 6.2 @307 IPDSL98X 6.2 @313 IPDWC98X 7.2 @320 IPDOR98X 8.2 @328 IPDOU98X 7.2 @335 IPDOT98X 6.2 @341 IPDXP98X 8.2 @349 IPDTC98X 8.2 @357 WTDPER98 12.6 @369 VARPSU98 2.0 @371 VARSTR98 3.0 ; * FORMAT STATEMENTS; FORMAT DUID VALIDID. PID VALIDID. DUPERSID $VALIDID. EVNTIDX $VALIDID. EVENTRN EVENTRN. ERHEVIDX $VALIDID. FFEEIDX $VALIDID. 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. FFBEF98 FFBEF9H. FFTOT99 FFTOT9H. IPXP98X IPXP98X. IPTC98X IPTC98X. IPFSF98X IPFSF98X. IPFMR98X IPFMR98X. IPFMD98X IPFMD98X. IPFPV98X IPFPV98X. IPFVA98X IPFVA98X. IPFCH98X IPFCH98X. IPFOF98X IPFOF98X. IPFSL98X IPFSL98X. IPFWC98X IPFWC98X. IPFOR98X IPFOR98X. IPFOU98X IPFOU98X. IPFOT98X IPFOT98X. IPFXP98X IPFXP98X. IPFTC98X IPFTC98X. IPDSF98X IPDSF98X. IPDMR98X IPDMR98X. IPDMD98X IPDMD98X. IPDPV98X IPDPV98X. IPDVA98X IPDVA98X. IPDCH98X IPDCH98X. IPDOF98X IPDOF98X. IPDSL98X IPDSL98X. IPDWC98X IPDWC98X. IPDOR98X IPDOR98X. IPDOU98X IPDOU98X. IPDOT98X IPDOT98X. IPDXP98X IPDXP98X. IPDTC98X IPDTC98X. WTDPER98 WTDPER9H. VARPSU98 VARPSU9H. VARSTR98 VARSTR9H. ; * LABEL STATEMENTS; LABEL DUID ='DWELLING UNIT ID' PID ='NUMERIC PID' DUPERSID='PERSON ID (DUID+PID)' EVNTIDX ='EVENT ID' EVENTRN ='EVENT ROUND NUMBER' 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' FFBEF98 ='TOTAL # OF VISITS IN FF BEFORE 1998' FFTOT99 ='TOTAL # OF VISITS IN FF AFTER 1998' IPXP98X ='TOT EXP FOR EVENT(IPFXP98X+IPDXP98X)' IPTC98X ='TOT CHG FOR EVENT(IPFTC98X+IPDTC98X)' IPFSF98X='FACILITY AMT PD, FAMILY (IMPUTED)' IPFMR98X='FACILITY AMT PD, MEDICARE (IMPUTED)' IPFMD98X='FACILITY AMT PD, MEDICAID (IMPUTED)' IPFPV98X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' IPFVA98X='FACILITY AMT PD, VETERANS (IMPUTED)' IPFCH98X='FACILITY AMT PD, CHAMP/CHAMPVA (IMPUTED)' IPFOF98X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' IPFSL98X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' IPFWC98X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' IPFOR98X='FACILITY AMT PD, OTH PRIV (IMPUTED)' IPFOU98X='FACILITY AMT PD, OTH PUB (IMPUTED)' IPFOT98X='FACILITY AMT PD, OTH INSUR (IMPUTED)' IPFXP98X='FACILITY SUM PAYMENTS IPFSF98X-IPFOT98X' IPFTC98X='TOTAL FACILITY CHARGE(IMPUTED)' IPDSF98X='DOCTOR AMT PD, FAMILY (IMPUTED)' IPDMR98X='DOCTOR AMT PD, MEDICARE (IMPUTED)' IPDMD98X='DOCTOR AMT PD, MEDICAID (IMPUTED)' IPDPV98X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' IPDVA98X='DOCTOR AMT PD, VETERANS (IMPUTED)' IPDCH98X='DOCTOR AMT PD, CHAMP/CHAMPVA (IMPUTED)' IPDOF98X='DOCTOR AMT PD, OTH FEDERAL (IMPUTED)' IPDSL98X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' IPDWC98X='DOCTOR AMT PD, WORKERS COMP (IMPUTED)' IPDOR98X='DOCTOR AMT PD, OTH PRIV (IMPUTED)' IPDOU98X='DOCTOR AMT PD, OTH PUB (IMPUTED)' IPDOT98X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' IPDXP98X='DOCTOR SUM PAYMENTS IPDSF98X-IPDOT98X' IPDTC98X='TOTAL DOCTOR CHARGE(IMPUTED)' WTDPER98='POVERTY/MORTALITY/NH ADJ PERS LVL WGT 98' VARPSU98='VARIANCE ESTIMATION PSU,1998' VARSTR98='VARIANCE ESTIMATION STRATUM,1998' ; * 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' '-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 FFBEF9H -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0 NO FLAT FEE VISITS PRIOR TO 1998' ; 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 FFTOT9H -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' ; VALUE $ICD9COD '-1' = '-1 INAPPLICABLE' '-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' '-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 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' 95 = '1995' 96 = '1996' 97 = '1997' 1995 = '1995' 1996 = '1996' 1997 = '1997' 1998 = '1998' 1999 = '1999' ; VALUE IPDCH98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 8.3 - 70.65 = '$8.30 - $70.65' 70.65 < - 245.64 = '$70.66 - $245.64' 245.64 < - 492.05 = '$245.65 - $492.05' 492.05 < - 557.96 = '$492.06 - $557.96' ; VALUE IPDMD98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.06 - 64.32 = '$1.06 - $64.32' 64.32 < - 192.99 = '$64.33 - $192.99' 192.99 < - 552.74 = '$193.00 - $552.74' 552.74 < - 5455.46 = '$552.75 - $5455.46' ; VALUE IPDMR98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 4.63 - 178.16 = '$4.63 - $178.16' 178.16 < - 411.58 = '$178.17 - $411.58' 411.58 < - 1018.3 = '$411.59 - $1018.30' 1018.3 < - 13163.76 = '$1018.31 - $13163.76' ; VALUE IPDOF98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 25.65 - 104.5 = '$25.65 - $104.50' 104.5 < - 325.5 = '$104.51 - $325.50' 325.5 < - 570 = '$325.51 - $570.00' 570 < - 573.75 = '$570.01 - $573.75' ; VALUE IPDOR98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.67 - 44.24 = '$1.67 - $44.24' 44.24 < - 182.54 = '$44.25 - $182.54' 182.54 < - 482.51 = '$182.55 - $482.51' 482.51 < - 11516.07 = '$482.52 - $11516.07' ; VALUE IPDOT98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 181.68 - 300 = '$181.68 - $300.00' ; VALUE IPDOU98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.95 - 115.435 = '$1.95 - $115.44' 115.435 < - 240.47 = '$115.45 - $240.47' 240.47 < - 560.33 = '$240.48 - $560.33' 560.33 < - 3144.62 = '$560.34 - $3144.62' ; VALUE IPDPV98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.99 - 141.74 = '$0.99 - $141.74' 141.74 < - 485.36 = '$141.75 - $485.36' 485.36 < - 1334.11 = '$485.37 - $1334.11' 1334.11 < - 26141.46 = '$1334.12 - $26141.46' ; VALUE IPDSF98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.31 - 21.15 = '$1.31 - $21.15' 21.15 < - 74.42 = '$21.16 - $74.42' 74.42 < - 253.14 = '$74.43 - $253.14' 253.14 < - 5791.75 = '$253.15 - $5791.75' ; VALUE IPDSL98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 34 - 74.12 = '$34.00 - $74.12' 74.12 < - 154.2 = '$74.13 - $154.20' 154.2 < - 401.12 = '$154.21 - $401.12' 401.12 < - 414.72 = '$401.13 - $414.72' ; VALUE IPDTC98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 4.47 - 500 = '$4.47 - $500.00' 500 < - 1262.79 = '$500.01 - $1262.79' 1262.79 < - 3000 = '$1262.80 - $3000.00' 3000 < - 69105.24 = '$3000.01 - $69105.24' ; VALUE IPDVA98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.47 - 37.5 = '$2.47 - $37.50' 37.5 < - 126.885 = '$37.51 - $126.89' 126.885 < - 325.5 = '$126.90 - $325.50' 325.5 < - 573.75 = '$325.51 - $573.75' ; VALUE IPDWC98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 42.25 - 1090 = '$42.25 - $1090.00' 1090 < - 1740.785 = '$1090.01 - $1740.79' 1740.785 < - 3235 = '$1740.80 - $3235.00' 3235 < - 8704.59 = '$3235.01 - $8704.59' ; VALUE IPDXP98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.4 - 242.63 = '$3.40 - $242.63' 242.63 < - 637.13 = '$242.64 - $637.13' 637.13 < - 1436.21 = '$637.14 - $1436.21' 1436.21 < - 39305.22 = '$1436.22 - $39305.22' ; 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' 95 = '1995' 96 = '1996' 97 = '1997' 1995 = '1995' 1996 = '1996' 1997 = '1997' 1998 = '1998' 1999 = '1999' ; VALUE IPFCH98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 1586.97 - 11472.98 = '$1586.97 - $11472.98' ; VALUE IPFMD98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.49 - 764 = '$1.49 - $764.00' 764 < - 1725.62 = '$764.01 - $1725.62' 1725.62 < - 3329.67 = '$1725.63 - $3329.67' 3329.67 < - 65314.36 = '$3329.68 - $65314.36' ; VALUE IPFMR98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.62 - 2495.49 = '$0.62 - $2495.49' 2495.49 < - 4297.94 = '$2495.50 - $4297.94' 4297.94 < - 8840.44 = '$4297.95 - $8840.44' 8840.44 < - 207336 = '$8840.45 - $207336.00' ; VALUE IPFOF98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 70.5 - 1812 = '$70.50 - $1812.00' 1812 < - 3631.57 = '$1812.01 - $3631.57' 3631.57 < - 6390.5 = '$3631.58 - $6390.50' 6390.5 < - 26576 = '$6390.51 - $26576.00' ; VALUE IPFOR98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 11.34 - 696 = '$11.34 - $696.00' 696 < - 783.26 = '$696.01 - $783.26' 783.26 < - 2706.2 = '$783.27 - $2706.20' 2706.2 < - 341364.39 = '$2706.21 - $341364.39' ; VALUE IPFOT98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 27.5 - 1120.29 = '$27.50 - $1120.29' 1120.29 < - 3797.95 = '$1120.30 - $3797.95' 3797.95 < - 9525.01 = '$3797.96 - $9525.01' 9525.01 < - 50000 = '$9525.02 - $50000.00' ; VALUE IPFOU98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 544.92 - 807.46 = '$544.92 - $807.46' 807.46 < - 1672 = '$807.47 - $1672.00' 1672 < - 3372.62 = '$1672.01 - $3372.62' 3372.62 < - 65314.36 = '$3372.63 - $65314.36' ; VALUE IPFPV98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 5 - 789.34 = '$5.00 - $789.34' 789.34 < - 2050.97 = '$789.35 - $2050.97' 2050.97 < - 4658.86 = '$2050.98 - $4658.86' 4658.86 < - 141353.71 = '$4658.87 - $141353.71' ; VALUE IPFSF98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.31 - 16.795 = '$0.31 - $16.80' 16.795 < - 100 = '$16.81 - $100.00' 100 < - 444.46 = '$100.01 - $444.46' 444.46 < - 30000 = '$444.47 - $30000.00' ; VALUE IPFSL98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 129.22 - 3210.66 = '$129.22 - $3210.66' ; VALUE IPFTC98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 1 - 3436 = '$1.00 - $3436.00' 3436 < - 6407.85 = '$3436.01 - $6407.85' 6407.85 < - 13183.44 = '$6407.86 - $13183.44' 13183.44 < - 507762.24 = '$13183.45 - $507762.24' ; VALUE IPFVA98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 27.5 - 2416 = '$27.50 - $2416.00' 2416 < - 3808.39 = '$2416.01 - $3808.39' 3808.39 < - 6390.5 = '$3808.40 - $6390.50' 6390.5 < - 30304.75 = '$6390.51 - $30304.75' ; VALUE IPFWC98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 1039.74 - 1449.81 = '$1039.74 - $1449.81' 1449.81 < - 4615.35 = '$1449.82 - $4615.35' 4615.35 < - 10766.75 = '$4615.36 - $10766.75' 10766.75 < - 21071.36 = '$10766.76 - $21071.36' ; VALUE IPFXP98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 1 - 1941.83 = '$1.00 - $1941.83' 1941.83 < - 3668.83 = '$1941.84 - $3668.83' 3668.83 < - 6955.1 = '$3668.84 - $6955.10' 6955.1 < - 341364.39 = '$6955.11 - $341364.39' ; VALUE IPTC98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 1 - 4300 = '$1.00 - $4300.00' 4300 < - 7991.92 = '$4300.01 - $7991.92' 7991.92 < - 16116 = '$7991.93 - $16116.00' 16116 < - 521819.69 = '$16116.01 - $521819.69' ; VALUE IPXP98X -9 = '-9 NOT ASCERTAINED' 0 = '0' 1 - 2363.185 = '$1.00 - $2363.19' 2363.185 < - 4241.31 = '$2363.20 - $4241.31' 4241.31 < - 7963.73 = '$4241.32 - $7963.73' 7963.73 < - 345181.49 = '$7963.74 - $345181.49' ; VALUE MPCDATA 1 = '1 HAS MPC DATA' 2 = '2 NO MPC DATA' ; VALUE NUMNIGHT -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 60 = '1-60 NUMBER OF NIGHTS' ; VALUE NUMNIGHX -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 210 = '1-210' ; 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' -3 = '-3 NO DATA IN ROUND' -2 = '-2 DETERMINED IN PREVIOUS ROUND' -1 = '-1 INAPPLICABLE' 0 < - HIGH = 'VALID ID' ; VALUE $VALIDID '-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' '0' < - HIGH = 'VALID ID' ; VALUE VAPLACE -1 = '-1 INAPPLICABLE' 0 = '0 NO' 1 = '1 YES' ; VALUE VARPSU9H 0 = '0' 1 - 56 = '1 - 56' ; VALUE VARSTR9H 0 = '0' 1 - 100 = '1 - 100' ; VALUE WTDPER9H 0 = '0' 354.03 - 74742.330815 = '354.030000 - 74742.330815' ;