SAS User File for BASEYR02 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 (BASEYR02.SSP) or the ASCII data file (BASEYR02.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\BASEYR02.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.BASEYR02; TITLE "List of Variables in MEPS BASEYR02 SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.BASEYR02 (OBS=20); TITLE "First 20 Observations in MEPS BASEYR02 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 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\Hxx.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) BASEYR02 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 BASEYR02.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file BASEYR02.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 BASEYR02.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 BASEYR02.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\BASEYR02.DAT'; DATA PUFLIB.BASEYR02; INFILE IN1 LRECL=648; 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 (BASEYR02). In the example, after the successful completion of the DATA step, a PC file named BASEYR02.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 (648 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 BASEYR02.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., 648 for BASEYR02.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (650 for BASEYR02.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 (648 for BASEYR02.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 (BASEYR02.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.BASEYR02; 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 BASEYR02.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=648; INPUT @1 DUPERIDX $8.0 @9 AGESTUB 2.0 @11 SEX 1.0 @12 RACE7P 1.0 @13 INSCOV_A 1.0 @14 INSCOV_B 2.0 @16 MCDHMO 1.0 @17 PRVHMO 1.0 @18 POVCAT 1.0 @19 TOTEXP02 9.2 @28 TOTSLF02 8.2 @36 TOTPHI02 9.2 @45 TOTMCR02 9.2 @54 TOTMCD02 9.2 @63 TOTTRI02 8.2 @71 TOTVA02 9.2 @80 TOTWC02 9.2 @89 TOTOTP02 8.2 @97 TOTOSR02 8.2 @105 HOSEXP02 9.2 @114 HOSSLF02 8.2 @122 HOSPHI02 9.2 @131 HOSMCR02 9.2 @140 HOSMCD02 9.2 @149 HOSTRI02 8.2 @157 HOSVA02 9.2 @166 HOSWC02 9.2 @175 HOSOTP02 8.2 @183 HOSOSR02 8.2 @191 PHYEXP02 8.2 @199 PHYSLF02 8.2 @207 PHYPHI02 8.2 @215 PHYMCR02 8.2 @223 PHYMCD02 8.2 @231 PHYTRI02 8.2 @239 PHYVA02 7.2 @246 PHYWC02 8.2 @254 PHYOTP02 8.2 @262 PHYOSR02 8.2 @270 DVTEXP02 8.2 @278 DVTSLF02 8.2 @286 DVTPHI02 8.2 @294 DVTMCR02 7.2 @301 DVTMCD02 8.2 @309 DVTTRI02 4.2 @313 DVTVA02 6.2 @319 DVTWC02 4.2 @323 DVTOTP02 7.2 @330 DVTOSR02 7.2 @337 OBOEXP02 8.2 @345 OBOSLF02 8.2 @353 OBOPHI02 8.2 @361 OBOMCR02 8.2 @369 OBOMCD02 8.2 @377 OBOTRI02 4.2 @381 OBOVA02 7.2 @388 OBOWC02 8.2 @396 OBOOTP02 7.2 @403 OBOOSR02 8.2 @411 HHCEXP02 9.2 @420 HHCSLF02 8.2 @428 HHCPHI02 9.2 @437 HHCMCR02 8.2 @445 HHCMCD02 9.2 @454 HHCTRI02 7.2 @461 HHCVA02 8.2 @469 HHCWC02 8.2 @477 HHCOTP02 8.2 @485 HHCOSR02 7.2 @492 RXEXP02 9.2 @501 RXSLF02 8.2 @509 RXPHI02 8.2 @517 RXMCR02 8.2 @525 RXMCD02 9.2 @534 RXTRI02 8.2 @542 RXVA02 7.2 @549 RXWC02 7.2 @556 RXOTP02 8.2 @564 RXOSR02 7.2 @571 OTHEXP02 8.2 @579 OTHSLF02 8.2 @587 OTHPHI02 8.2 @595 OTHMCR02 8.2 @603 OTHMCD02 4.2 @607 OTHTRI02 4.2 @611 OTHVA02 4.2 @615 OTHWC02 8.2 @623 OTHOTP02 7.2 @630 OTHOSR02 7.2 @637 PERWTP 12.6 ; * FORMAT STATEMENTS; FORMAT DUPERIDX $ID. AGESTUB AGESTUB. SEX SEX. RACE7P RACE7P. INSCOV_A INSCOV_A. INSCOV_B INSCOV_B. MCDHMO YESNO. PRVHMO YESNO. POVCAT POVCAT. TOTEXP02 TOTEXP. TOTSLF02 TOTSLF. TOTPHI02 TOTPHI. TOTMCR02 TOTMCR. TOTMCD02 TOTMCD. TOTTRI02 TOTTRI. TOTVA02 TOTVA. TOTWC02 TOTWC. TOTOTP02 TOTOTP. TOTOSR02 TOTOSR. HOSEXP02 HOSEXP. HOSSLF02 HOSSLF. HOSPHI02 HOSPHI. HOSMCR02 HOSMCR. HOSMCD02 HOSMCD. HOSTRI02 HOSTRI. HOSVA02 HOSVA. HOSWC02 HOSWC. HOSOTP02 HOSOTP. HOSOSR02 HOSOSR. PHYEXP02 PHYEXP. PHYSLF02 PHYSLF. PHYPHI02 PHYPHI. PHYMCR02 PHYMCR. PHYMCD02 PHYMCD. PHYTRI02 PHYTRI. PHYVA02 PHYVA. PHYWC02 PHYWC. PHYOTP02 PHYOTP. PHYOSR02 PHYOSR. DVTEXP02 DVTEXP. DVTSLF02 DVTSLF. DVTPHI02 DVTPHI. DVTMCR02 DVTMCR. DVTMCD02 DVTMCD. DVTTRI02 DVTTRI. DVTVA02 DVTVA. DVTWC02 DVTWC. DVTOTP02 DVTOTP. DVTOSR02 DVTOSR. OBOEXP02 OBOEXP. OBOSLF02 OBOSLF. OBOPHI02 OBOPHI. OBOMCR02 OBOMCR. OBOMCD02 OBOMCD. OBOTRI02 OBOTRI. OBOVA02 OBOVA. OBOWC02 OBOWC. OBOOTP02 OBOOTP. OBOOSR02 OBOOSR. HHCEXP02 HHCEXP. HHCSLF02 HHCSLF. HHCPHI02 HHCPHI. HHCMCR02 HHCMCR. HHCMCD02 HHCMCD. HHCTRI02 HHCTRI. HHCVA02 HHCVA. HHCWC02 HHCWC. HHCOTP02 HHCOTP. HHCOSR02 HHCOSR. RXEXP02 RXEXP. RXSLF02 RXSLF. RXPHI02 RXPHI. RXMCR02 RXMCR. RXMCD02 RXMCD. RXTRI02 RXTRI. RXVA02 RXVA. RXWC02 RXWC. RXOTP02 RXOTP. RXOSR02 RXOSR. OTHEXP02 OTHEXP. OTHSLF02 OTHSLF. OTHPHI02 OTHPHI. OTHMCR02 OTHMCR. OTHMCD02 OTHMCD. OTHTRI02 OTHTRI. OTHVA02 OTHVA. OTHWC02 OTHWC. OTHOTP02 OTHOTP. OTHOSR02 OTHOSR. PERWTP GTZERO. ; * LABEL STATEMENTS; LABEL DUPERIDX='PERSON ID' AGESTUB ='AGE' SEX ='SEX' RACE7P ='RACE/ETHNICITY' INSCOV_A='INSURANCE STATUS DURING YEAR - UNDER 65' INSCOV_B='INSURANCE STATUS DURING YEAR - 65 & OVER' MCDHMO ='MEDICAID/SCHIP HMO DURING YEAR' PRVHMO ='PRIVATE HMO COVERAGE DURING YEAR' POVCAT ='FAMILY INCOME AS PERCENT OF POVERTY LINE' TOTEXP02='TOTAL, PAID BY TOTAL, 2002' TOTSLF02='TOTAL, PAID BY OUT OF POCKET, 2002' TOTPHI02='TOTAL, PAID BY PRIV INSU, 2002' TOTMCR02='TOTAL, PAID BY MEDICARE, 2002' TOTMCD02='TOTAL, PAID BY MEDICAID, 2002' TOTTRI02='TOTAL, PAID BY TRICARE, 2002' TOTVA02 ='TOTAL, PAID BY VA, 2002' TOTWC02 ='TOTAL, PAID BY WORKERS COMP, 2002' TOTOTP02='TOTAL, PAID BY OTHER PUBLIC, 2002' TOTOSR02='TOTAL, PAID BY OTHER, 2002' HOSEXP02='HOSPITAL, PAID BY TOTAL, 2002' HOSSLF02='HOSPITAL, PAID BY OUT OF POCKET, 2002' HOSPHI02='HOSPITAL, PAID BY PRIV INSU, 2002' HOSMCR02='HOSPITAL, PAID BY MEDICARE, 2002' HOSMCD02='HOSPITAL, PAID BY MEDICAID, 2002' HOSTRI02='HOSPITAL, PAID BY TRICARE, 2002' HOSVA02 ='HOSPITAL, PAID BY VA, 2002' HOSWC02 ='HOSPITAL, PAID BY WORKERS COMP, 2002' HOSOTP02='HOSPITAL, PAID BY OTHER PUBLIC, 2002' HOSOSR02='HOSPITAL, PAID BY OTHER, 2002' PHYEXP02='PHYSICIAN, PAID BY TOTAL, 2002' PHYSLF02='PHYSICIAN, PAID BY OUT OF POCKET, 2002' PHYPHI02='PHYSICIAN, PAID BY PRIV INSU, 2002' PHYMCR02='PHYSICIAN, PAID BY MEDICARE, 2002' PHYMCD02='PHYSICIAN, PAID BY MEDICAID, 2002' PHYTRI02='PHYSICIAN, PAID BY TRICARE, 2002' PHYVA02 ='PHYSICIAN, PAID BY VA, 2002' PHYWC02 ='PHYSICIAN, PAID BY WORKERS COMP, 2002' PHYOTP02='PHYSICIAN, PAID BY OTHER PUBLIC, 2002' PHYOSR02='PHYSICIAN, PAID BY OTHER, 2002' DVTEXP02='DENTAL, PAID BY TOTAL, 2002' DVTSLF02='DENTAL, PAID BY OUT OF POCKET, 2002' DVTPHI02='DENTAL, PAID BY PRIV INSU, 2002' DVTMCR02='DENTAL, PAID BY MEDICARE, 2002' DVTMCD02='DENTAL, PAID BY MEDICAID, 2002' DVTTRI02='DENTAL, PAID BY TRICARE, 2002' DVTVA02 ='DENTAL, PAID BY VA, 2002' DVTWC02 ='DENTAL, PAID BY WORKERS COMP, 2002' DVTOTP02='DENTAL, PAID BY OTHER PUBLIC, 2002' DVTOSR02='DENTAL, PAID BY OTHER, 2002' OBOEXP02='OTHER PROVIDER, PAID BY TOTAL, 2002' OBOSLF02='OTHER PROVIDER, BY OUT OF POCKET, 2002' OBOPHI02='OTHER PROVIDER, PAID BY PRIV INSU, 2002' OBOMCR02='OTHER PROVIDER, PAID BY MEDICARE, 2002' OBOMCD02='OTHER PROVIDER, PAID BY MEDICAID, 2002' OBOTRI02='OTHER PROVIDER, PAID BY TRICARE, 2002' OBOVA02 ='OTHER PROVIDER, PAID BY VA, 2002' OBOWC02 ='OTHER PROVIDER, BY WORKERS COMP, 2002' OBOOTP02='OTHER PROVIDER, BY OTHER PUBLIC, 2002' OBOOSR02='OTHER PROVIDER, PAID BY OTHER, 2002' HHCEXP02='HOME HEALTH, PAID BY TOTAL, 2002' HHCSLF02='HOME HEALTH, PAID BY OUT OF POCKET, 2002' HHCPHI02='HOME HEALTH, PAID BY PRIV INSU, 2002' HHCMCR02='HOME HEALTH, PAID BY MEDICARE, 2002' HHCMCD02='HOME HEALTH, PAID BY MEDICAID, 2002' HHCTRI02='HOME HEALTH, PAID BY TRICARE, 2002' HHCVA02 ='HOME HEALTH, PAID BY VA, 2002' HHCWC02 ='HOME HEALTH, PAID BY WORKERS COMP, 2002' HHCOTP02='HOME HEALTH, PAID BY OTHER PUBLIC, 2002' HHCOSR02='HOME HEALTH, PAID BY OTHER, 2002' RXEXP02 ='RX, PAID BY TOTAL, 2002' RXSLF02 ='RX, PAID BY OUT OF POCKET, 2002' RXPHI02 ='RX, PAID BY PRIV INSU, 2002' RXMCR02 ='RX, PAID BY MEDICARE, 2002' RXMCD02 ='RX, PAID BY MEDICAID, 2002' RXTRI02 ='RX, PAID BY TRICARE, 2002' RXVA02 ='RX, PAID BY VA, 2002' RXWC02 ='RX, PAID BY WORKERS COMP, 2002' RXOTP02 ='RX, PAID BY OTHER PUBLIC, 2002' RXOSR02 ='RX, PAID BY OTHER, 2002' OTHEXP02='OTHER MEDICAL, PAID BY TOTAL, 2002' OTHSLF02='OTHER MEDICAL, BY OUT OF POCKET, 2002' OTHPHI02='OTHER MEDICAL, PAID BY PRIV INSU, 2002' OTHMCR02='OTHER MEDICAL, PAID BY MEDICARE, 2002' OTHMCD02='OTHER MEDICAL, PAID BY MEDICAID, 2002' OTHTRI02='OTHER MEDICAL, PAID BY TRICARE, 2002' OTHVA02 ='OTHER MEDICAL, PAID BY VA, 2002' OTHWC02 ='OTHER MEDICAL, BY WORKERS COMP, 2002' OTHOTP02='OTHER MEDICAL, PAID BY OTHR PUBLIC, 2002' OTHOSR02='OTHER MEDICAL, PAID BY OTHER, 2002' PERWTP ='BASE WEIGHT' ; * VALUE STATEMENTS; VALUE AGESTUB 0 - 17 = '0-17' 18 - 64 = '18-64' 65 - HIGH = '65 or older' ; VALUE DVTEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.98 - 105.23 = '$1 - $105' 105.23 < - 206.74 = '$106 - $207' 206.74 < - 484.285 = '$208 - $484' 484.285 < - 19378.7 = '$485 - $19,379' ; VALUE DVTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.5 - 66.14 = '$1 - $66' 66.14 < - 117.02 = '$67 - $117' 117.02 < - 243.39 = '$118 - $243' 243.39 < - 10149.81 = '$244 - $10,150' ; VALUE DVTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.38 - 14.63 = '$1 - $15' 14.63 < - 30.13 = '$16 - $30' 30.13 < - 77.455 = '$31 - $77' 77.455 < - 1569.77 = '$78 - $1,570' ; VALUE DVTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.95 - 77.23 = '$1 - $77' 77.23 < - 156.44 = '$78 - $156' 156.44 < - 287.14 = '$157 - $287' 287.14 < - 9482.34 = '$288 - $9,482' ; VALUE DVTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 12.08 - 69.46 = '$12 - $69' 69.46 < - 138.395 = '$70 - $138' 138.395 < - 386.84 = '$139 - $387' 386.84 < - 4837.87 = '$388 - $4,838' ; VALUE DVTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.21 - 113.36 = '$1 - $113' 113.36 < - 201.45 = '$114 - $201' 201.45 < - 415.35 = '$202 - $415' 415.35 < - 17331.68 = '$416 - $17,332' ; VALUE DVTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.98 - 41.21 = '$1 - $41' 41.21 < - 109.99 = '$42 - $110' 109.99 < - 303.49 = '$111 - $303' 303.49 < - 17029.94 = '$304 - $17,030' ; VALUE DVTTRI 0 = '0' ; VALUE DVTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.04 - 1.81 = '$1 - $2' 1.81 < - 4.175 = '$3 - $4' 4.175 < - 14.89 = '$5 - $15' 14.89 < - 164.77 = '$16 - $165' ; VALUE DVTWC 0 = '0' ; VALUE GTZERO 0 = '0' 0 < - HIGH = '>0' ; VALUE HHCEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.17 - 792.78 = '$6 - $793' 792.78 < - 2904.445 = '$794 - $2,904' 2904.445 < - 7314.36 = '$2,905 - $7,314' 7314.36 < - 172690.73 = '$7,315 - $172,691' ; VALUE HHCMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.45 - 475.4 = '$2 - $475' 475.4 < - 2179.2 = '$476 - $2,179' 2179.2 < - 7154.64 = '$2,180 - $7,155' 7154.64 < - 112028.63 = '$7,156 - $112,029' ; VALUE HHCMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 10.47 - 1225.12 = '$10 - $1,225' 1225.12 < - 2769.75 = '$1,226 - $2,770' 2769.75 < - 6208.69 = '$2,771 - $6,209' 6208.69 < - 49737.1 = '$6,210 - $49,737' ; VALUE HHCOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 43.23 - 106.68 = '$43 - $107' 106.68 < - 244.72 = '$108 - $245' 244.72 < - 694.18 = '$246 - $694' 694.18 < - 2084.16 = '$695 - $2,084' ; VALUE HHCOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 14.84 - 315.3 = '$14 - $315' 315.3 < - 788.465 = '$316 - $788' 788.465 < - 2052.4 = '$789 - $2,052' 2052.4 < - 15482.18 = '$2,053 - $15,482' ; VALUE HHCPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 35.6 - 746.385 = '$35 - $746' 746.385 < - 2396.975 = '$747 - $2,397' 2396.975 < - 7336.95 = '$2,398 - $7,337' 7336.95 < - 121254.79 = '$7,338 - $121,255' ; VALUE HHCSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.17 - 107.92 = '$6 - $108' 107.92 < - 375.07 = '$109 - $375' 375.07 < - 1259.65 = '$376 - $1,260' 1259.65 < - 73636.12 = '$1,261 - $73,636' ; VALUE HHCTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.89 - 48.875 = '$5 - $49' 48.875 < - 159.105 = '$50 - $159' 159.105 < - 424.345 = '$160 - $424' 424.345 < - 1647.34 = '$425 - $1,647' ; VALUE HHCVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 172.94 - 1649.11 = '$172 - $1,649' 1649.11 < - 4323.46 = '$1,650 - $4,323' 4323.46 < - 9849.76 = '$4,324 - $9,850' 9849.76 < - 44963.99 = '$9,851 - $44,964' ; VALUE HHCWC 0 = '0' 20000 - 40000 = '$20,000 - $40,000' ; VALUE HOSEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.9 - 189.78 = '$1 - $190' 189.78 < - 710.515 = '$191 - $711' 710.515 < - 3166.735 = '$712 - $3,167' 3166.735 < - 564512.66 = '$3,168 - $564,513' ; VALUE HOSMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.17 - 130.615 = '$1 - $131' 130.615 < - 487.19 = '$132 - $487' 487.19 < - 2387.93 = '$488 - $2,388' 2387.93 < - 462520.2 = '$2,389 - $462,520' ; VALUE HOSMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.94 - 171.86 = '$1 - $172' 171.86 < - 889.9 = '$173 - $890' 889.9 < - 5384.96 = '$891 - $5,385' 5384.96 < - 171038.63 = '$5,386 - $171,039' ; VALUE HOSOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.89 - 81.22 = '$1 - $81' 81.22 < - 263.985 = '$82 - $264' 263.985 < - 991.01 = '$265 - $991' 991.01 < - 53073.94 = '$992 - $53,074' ; VALUE HOSOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.61 - 76.55 = '$5 - $77' 76.55 < - 237.31 = '$78 - $237' 237.31 < - 979.8 = '$238 - $980' 979.8 < - 49358.86 = '$981 - $49,359' ; VALUE HOSPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.95 - 161.12 = '$1 - $161' 161.12 < - 587.6 = '$162 - $588' 587.6 < - 1981.84 = '$589 - $1,982' 1981.84 < - 564512.66 = '$1,983 - $564,513' ; VALUE HOSSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.09 - 28.31 = '$1 - $28' 28.31 < - 84.94 = '$29 - $85' 84.94 < - 283.14 = '$86 - $283' 283.14 < - 70852.33 = '$284 - $70,852' ; VALUE HOSTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.5 - 38.65 = '$1 - $39' 38.65 < - 140.81 = '$40 - $141' 140.81 < - 463.255 = '$142 - $463' 463.255 < - 89200.38 = '$464 - $89,200' ; VALUE HOSVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.06 - 143.73 = '$1 - $144' 143.73 < - 572.46 = '$145 - $572' 572.46 < - 2358.905 = '$573 - $2,359' 2358.905 < - 219371.99 = '$2,360 - $219,372' ; VALUE HOSWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.73 - 66.97 = '$1 - $67' 66.97 < - 187.81 = '$68 - $188' 187.81 < - 613.57 = '$189 - $614' 613.57 < - 285898.88 = '$615 - $285,899' ; VALUE $ID 'N0000102' - 'N7338002' = 'N0000102 - N7338002' ; VALUE INSCOV_A 1 = '1 Any Private, employment related or TRICARE' 2 = '2 Any Private, not employment related' 3 = '3 Any Public (Medicaid, SCHIP, Medicare)' 4 = '4 Uninsured for entire year' 5 = '5 Age 65 or older' ; VALUE INSCOV_B -1 = '-1 Inapplicable (under age 65)' 1 = '1 Held Medicaid and Medicare at same time' 2 = '2 Held Mcare & Priv via emplymnt at same time' 3 = '3 Held Mcare & Priv-nonemplmnt at same time' 4 = '4 Held Medicare alone during the year' 5 = '5 Held no Medicare during the year' ; VALUE OBOEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.07 - 12.78 = '$1 - $13' 12.78 < - 47.7 = '$14 - $48' 47.7 < - 191.38 = '$49 - $191' 191.38 < - 57405 = '$192 - $57,405' ; VALUE OBOMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.07 - 5.84 = '$1 - $6' 5.84 < - 16.92 = '$7 - $17' 16.92 < - 66.57 = '$18 - $67' 66.57 < - 40811.18 = '$68 - $40,811' ; VALUE OBOMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.09 - 18.77 = '$1 - $19' 18.77 < - 70.84 = '$20 - $71' 70.84 < - 218.42 = '$72 - $218' 218.42 < - 50990.17 = '$219 - $50,990' ; VALUE OBOOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.94 - 29.22 = '$1 - $29' 29.22 < - 80.83 = '$30 - $81' 80.83 < - 263.92 = '$82 - $264' 263.92 < - 10254.95 = '$265 - $10,255' ; VALUE OBOOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.73 - 45.25 = '$2 - $45' 45.25 < - 110.82 = '$46 - $111' 110.82 < - 312.47 = '$112 - $312' 312.47 < - 5196.03 = '$313 - $5,196' ; VALUE OBOPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.09 - 8.7 = '$1 - $9' 8.7 < - 28.48 = '$10 - $28' 28.48 < - 116.47 = '$29 - $116' 116.47 < - 49549.15 = '$117 - $49,549' ; VALUE OBOSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.12 - 3.11 = '$1 - $3' 3.11 < - 10.23 = '$4 - $10' 10.23 < - 39.73 = '$11 - $40' 39.73 < - 26277.27 = '$41 - $26,277' ; VALUE OBOTRI 0 = '0' ; VALUE OBOVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.14 - 2.51 = '$1 - $3' 2.51 < - 7.68 = '$4 - $8' 7.68 < - 23.47 = '$9 - $23' 23.47 < - 1151.64 = '$24 - $1,152' ; VALUE OBOWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.38 - 64.7 = '$1 - $65' 64.7 < - 184.575 = '$66 - $185' 184.575 < - 703.68 = '$186 - $704' 703.68 < - 17458.89 = '$705 - $17,459' ; VALUE OTHEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.65 - 130.27 = '$1 - $130' 130.27 < - 268.14 = '$131 - $268' 268.14 < - 487.78 = '$269 - $488' 487.78 < - 51959.64 = '$489 - $51,960' ; VALUE OTHMCD 0 = '0' ; VALUE OTHMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.74 - 558.275 = '$5 - $558' 558.275 < - 1087.285 = '$559 - $1,087' 1087.285 < - 2596.29 = '$1,088 - $2,596' 2596.29 < - 46456.25 = '$2,597 - $46,456' ; VALUE OTHOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.55 - 86.46 = '$5 - $86' 86.46 < - 192.14 = '$87 - $192' 192.14 < - 330.44 = '$193 - $330' 330.44 < - 6479.14 = '$331 - $6,479' ; VALUE OTHOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.84 - 58.84 = '$2 - $59' 58.84 < - 107.14 = '$60 - $107' 107.14 < - 274.57 = '$108 - $275' 274.57 < - 2950.99 = '$276 - $2,951' ; VALUE OTHPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.85 - 61.76 = '$1 - $62' 61.76 < - 121.935 = '$63 - $122' 121.935 < - 219.51 = '$123 - $220' 219.51 < - 15804.73 = '$221 - $15,805' ; VALUE OTHSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.65 - 98.94 = '$1 - $99' 98.94 < - 231.05 = '$100 - $231' 231.05 < - 427.88 = '$232 - $428' 427.88 < - 46593.99 = '$429 - $46,594' ; VALUE OTHTRI 0 = '0' ; VALUE OTHVA 0 = '0' ; VALUE OTHWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 164.43 - 1077.29 = '$164 - $1,077' 1077.29 < - 2133.66 = '$1,078 - $2,134' 2133.66 < - 4356.67 = '$2,135 - $4,357' 4356.67 < - 19787.21 = '$4,358 - $19,787' ; VALUE PHYEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.01 - 122.04 = '$1 - $122' 122.04 < - 317.38 = '$123 - $317' 317.38 < - 967.88 = '$318 - $968' 967.88 < - 95124.11 = '$969 - $95,124' ; VALUE PHYMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.97 - 68.7 = '$1 - $69' 68.7 < - 167.43 = '$70 - $167' 167.43 < - 461.4 = '$168 - $461' 461.4 < - 46540.23 = '$462 - $46,540' ; VALUE PHYMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.24 - 190.26 = '$1 - $190' 190.26 < - 564.35 = '$191 - $564' 564.35 < - 1603.97 = '$565 - $1,604' 1603.97 < - 75355.97 = '$1,605 - $75,356' ; VALUE PHYOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.94 - 41.17 = '$1 - $41' 41.17 < - 89.34 = '$42 - $89' 89.34 < - 227.36 = '$90 - $227' 227.36 < - 75211.86 = '$228 - $75,212' ; VALUE PHYOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.96 - 45.88 = '$1 - $46' 45.88 < - 101.3 = '$47 - $101' 101.3 < - 291.94 = '$102 - $292' 291.94 < - 37248.13 = '$293 - $37,248' ; VALUE PHYPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.29 - 100.32 = '$1 - $100' 100.32 < - 246.11 = '$101 - $246' 246.11 < - 683.49 = '$247 - $683' 683.49 < - 73729.11 = '$684 - $73,729' ; VALUE PHYSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.94 - 18.78 = '$1 - $19' 18.78 < - 46.855 = '$20 - $47' 46.855 < - 120.16 = '$48 - $120' 120.16 < - 26304.41 = '$121 - $26,304' ; VALUE PHYTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 4.85 - 112.09 = '$4 - $112' 112.09 < - 331.215 = '$113 - $331' 331.215 < - 846.59 = '$332 - $847' 846.59 < - 81563.87 = '$848 - $81,564' ; VALUE PHYVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.31 - 16.48 = '$1 - $16' 16.48 < - 54.41 = '$17 - $54' 54.41 < - 180.96 = '$55 - $181' 180.96 < - 6242.73 = '$182 - $6,243' ; VALUE PHYWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 4.16 - 180.35 = '$4 - $180' 180.35 < - 457.56 = '$181 - $458' 457.56 < - 1455.89 = '$459 - $1,456' 1455.89 < - 47401.54 = '$1,457 - $47,402' ; VALUE POVCAT 1 = '1 Less than 1.00 times poverty line' 2 = '2 1.01 to 1.24 times poverty line' 3 = '3 1.25 to 1.99 times poverty line' 4 = '4 2.0 to 3.99 times poverty line' 5 = '5 4.00 or more times poverty line' ; VALUE RACE7P 1 = '1 Hispanic' 2 = '2 White Alone, NH' 3 = '3 Black Alone, NH' 4 = '4 American Indian and Alaska Native Alone, NH' 5 = '5 Asian Alone, NH' 6 = '6 Native Hawaiian/Pacific Islander Alone, NH' 7 = '7 Two or more Races, NH' ; VALUE RXEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.35 - 56.4 = '$1 - $56' 56.4 < - 220.59 = '$57 - $221' 220.59 < - 804.42 = '$222 - $804' 804.42 < - 276254.04 = '$805 - $276,254' ; VALUE RXMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.49 - 50.125 = '$1 - $50' 50.125 < - 161.19 = '$51 - $161' 161.19 < - 683.95 = '$162 - $684' 683.95 < - 274302.67 = '$685 - $274,303' ; VALUE RXMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.36 - 37.99 = '$1 - $38' 37.99 < - 114.51 = '$39 - $115' 114.51 < - 307.65 = '$116 - $308' 307.65 < - 13359.99 = '$309 - $13,360' ; VALUE RXOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.88 - 26.88 = '$2 - $27' 26.88 < - 103.63 = '$28 - $104' 103.63 < - 233.56 = '$105 - $234' 233.56 < - 2704.48 = '$235 - $2,704' ; VALUE RXOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.91 - 28.34 = '$1 - $28' 28.34 < - 141.295 = '$29 - $141' 141.295 < - 538.77 = '$142 - $539' 538.77 < - 22412.28 = '$540 - $22,412' ; VALUE RXPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.26 - 50.97 = '$1 - $51' 50.97 < - 195.19 = '$52 - $195' 195.19 < - 715.26 = '$196 - $715' 715.26 < - 55431.25 = '$716 - $55,431' ; VALUE RXSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.52 - 14.47 = '$1 - $14' 14.47 < - 56.26 = '$15 - $56' 56.26 < - 199.85 = '$57 - $200' 199.85 < - 18896.51 = '$201 - $18,897' ; VALUE RXTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.35 - 20 = '$1 - $20' 20 < - 95 = '$21 - $95' 95 < - 399.84 = '$96 - $400' 399.84 < - 14379.58 = '$401 - $14,380' ; VALUE RXVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.34 - 25.16 = '$1 - $25' 25.16 < - 108.3 = '$26 - $108' 108.3 < - 307.29 = '$109 - $307' 307.29 < - 7872.46 = '$308 - $7,872' ; VALUE RXWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.87 - 37.91 = '$1 - $38' 37.91 < - 97.18 = '$39 - $97' 97.18 < - 316.57 = '$98 - $317' 316.57 < - 9931.7 = '$318 - $9,932' ; VALUE SEX 1 = '1 Male' 2 = '2 Female' ; VALUE TOTEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.54 - 295.09 = '$1 - $295' 295.09 < - 923.95 = '$296 - $924' 923.95 < - 3021.24 = '$925 - $3,021' 3021.24 < - 614449.26 = '$3,022 - $614,449' ; VALUE TOTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.96 - 154.55 = '$1 - $155' 154.55 < - 467.55 = '$156 - $468' 467.55 < - 1980.36 = '$469 - $1,980' 1980.36 < - 471165.13 = '$1,981 - $471,165' ; VALUE TOTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.72 - 288.21 = '$1 - $288' 288.21 < - 1015.915 = '$289 - $1,016' 1015.915 < - 4104.99 = '$1,017 - $4,105' 4104.99 < - 183627.63 = '$4,106 - $183,628' ; VALUE TOTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.94 - 52.59 = '$1 - $53' 52.59 < - 126.74 = '$54 - $127' 126.74 < - 342.48 = '$128 - $342' 342.48 < - 75211.86 = '$343 - $75,212' ; VALUE TOTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.91 - 62.13 = '$1 - $62' 62.13 < - 191.12 = '$63 - $191' 191.12 < - 706.3 = '$192 - $706' 706.3 < - 49358.86 = '$707 - $49,359' ; VALUE TOTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.96 - 199.23 = '$1 - $199' 199.23 < - 596.13 = '$200 - $596' 596.13 < - 1842.93 = '$597 - $1,843' 1842.93 < - 610463.61 = '$1,844 - $610,464' ; VALUE TOTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.52 - 53.58 = '$1 - $54' 53.58 < - 204.31 = '$55 - $204' 204.31 < - 600.9 = '$205 - $601' 600.9 < - 84570.65 = '$602 - $84,571' ; VALUE TOTTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.5 - 132.7 = '$1 - $133' 132.7 < - 455.62 = '$134 - $456' 455.62 < - 1315 = '$457 - $1,315' 1315 < - 99635.32 = '$1,316 - $99,635' ; VALUE TOTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.07 - 18.66 = '$1 - $19' 18.66 < - 98.58 = '$20 - $99' 98.58 < - 457.495 = '$100 - $457' 457.495 < - 219512.58 = '$458 - $219,513' ; VALUE TOTWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.73 - 196.9 = '$1 - $197' 196.9 < - 626.565 = '$198 - $627' 626.565 < - 2052.24 = '$628 - $2,052' 2052.24 < - 344974.85 = '$2,053 - $344,975' ; VALUE YESNO 0 = '0 No' 1 = '1 Yes' ;