SAS User File for PROJYR16 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 (PROJYR16.SSP) or the ASCII data file (PROJYR16.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\PROJYR16.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.PROJYR16; TITLE "List of Variables in MEPS PROJYR16 SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.PROJYR16 (OBS=20); TITLE "First 20 Observations in MEPS PROJYR16 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) PROJYR16 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 PROJYR16.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file PROJYR16.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 PROJYR16.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 PROJYR16.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\PROJYR16.DAT'; DATA PUFLIB.PROJYR16; INFILE IN1 LRECL=671; 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 (PROJYR16). In the example, after the successful completion of the DATA step, a PC file named PROJYR16.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 (671 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 PROJYR16.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., 671 for PROJYR16.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (673 for PROJYR16.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 (671 for PROJYR16.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 (PROJYR16.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.PROJYR16; 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 PROJYR16.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=671; 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 TOTEXP16 10.2 @29 TOTSLF16 9.2 @38 TOTPHI16 10.2 @48 TOTMCR16 9.2 @57 TOTMCD16 9.2 @66 TOTTRI16 9.2 @75 TOTVA16 9.2 @84 TOTWC16 9.2 @93 TOTOTP16 8.2 @101 TOTOSR16 9.2 @110 HOSEXP16 10.2 @120 HOSSLF16 9.2 @129 HOSPHI16 10.2 @139 HOSMCR16 9.2 @148 HOSMCD16 9.2 @157 HOSTRI16 9.2 @166 HOSVA16 9.2 @175 HOSWC16 9.2 @184 HOSOTP16 8.2 @192 HOSOSR16 8.2 @200 PHYEXP16 9.2 @209 PHYSLF16 8.2 @217 PHYPHI16 9.2 @226 PHYMCR16 9.2 @235 PHYMCD16 8.2 @243 PHYTRI16 9.2 @252 PHYVA16 8.2 @260 PHYWC16 8.2 @268 PHYOTP16 8.2 @276 PHYOSR16 9.2 @285 DVTEXP16 8.2 @293 DVTSLF16 8.2 @301 DVTPHI16 8.2 @309 DVTMCR16 7.2 @316 DVTMCD16 8.2 @324 DVTTRI16 4.2 @328 DVTVA16 6.2 @334 DVTWC16 4.2 @338 DVTOTP16 7.2 @345 DVTOSR16 8.2 @353 OBOEXP16 9.2 @362 OBOSLF16 8.2 @370 OBOPHI16 8.2 @378 OBOMCR16 8.2 @386 OBOMCD16 9.2 @395 OBOTRI16 4.2 @399 OBOVA16 6.2 @405 OBOWC16 8.2 @413 OBOOTP16 7.2 @420 OBOOSR16 8.2 @428 HHCEXP16 9.2 @437 HHCSLF16 9.2 @446 HHCPHI16 9.2 @455 HHCMCR16 9.2 @464 HHCMCD16 9.2 @473 HHCTRI16 7.2 @480 HHCVA16 8.2 @488 HHCWC16 8.2 @496 HHCOTP16 8.2 @504 HHCOSR16 7.2 @511 RXEXP16 9.2 @520 RXSLF16 8.2 @528 RXPHI16 9.2 @537 RXMCR16 9.2 @546 RXMCD16 9.2 @555 RXTRI16 8.2 @563 RXVA16 8.2 @571 RXWC16 8.2 @579 RXOTP16 8.2 @587 RXOSR16 7.2 @594 OTHEXP16 8.2 @602 OTHSLF16 8.2 @610 OTHPHI16 8.2 @618 OTHMCR16 8.2 @626 OTHMCD16 4.2 @630 OTHTRI16 4.2 @634 OTHVA16 4.2 @638 OTHWC16 8.2 @646 OTHOTP16 7.2 @653 OTHOSR16 7.2 @660 WTADJ16 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. TOTEXP16 TOTEXP. TOTSLF16 TOTSLF. TOTPHI16 TOTPHI. TOTMCR16 TOTMCR. TOTMCD16 TOTMCD. TOTTRI16 TOTTRI. TOTVA16 TOTVA. TOTWC16 TOTWC. TOTOTP16 TOTOTP. TOTOSR16 TOTOSR. HOSEXP16 HOSEXP. HOSSLF16 HOSSLF. HOSPHI16 HOSPHI. HOSMCR16 HOSMCR. HOSMCD16 HOSMCD. HOSTRI16 HOSTRI. HOSVA16 HOSVA. HOSWC16 HOSWC. HOSOTP16 HOSOTP. HOSOSR16 HOSOSR. PHYEXP16 PHYEXP. PHYSLF16 PHYSLF. PHYPHI16 PHYPHI. PHYMCR16 PHYMCR. PHYMCD16 PHYMCD. PHYTRI16 PHYTRI. PHYVA16 PHYVA. PHYWC16 PHYWC. PHYOTP16 PHYOTP. PHYOSR16 PHYOSR. DVTEXP16 DVTEXP. DVTSLF16 DVTSLF. DVTPHI16 DVTPHI. DVTMCR16 DVTMCR. DVTMCD16 DVTMCD. DVTTRI16 DVTTRI. DVTVA16 DVTVA. DVTWC16 DVTWC. DVTOTP16 DVTOTP. DVTOSR16 DVTOSR. OBOEXP16 OBOEXP. OBOSLF16 OBOSLF. OBOPHI16 OBOPHI. OBOMCR16 OBOMCR. OBOMCD16 OBOMCD. OBOTRI16 OBOTRI. OBOVA16 OBOVA. OBOWC16 OBOWC. OBOOTP16 OBOOTP. OBOOSR16 OBOOSR. HHCEXP16 HHCEXP. HHCSLF16 HHCSLF. HHCPHI16 HHCPHI. HHCMCR16 HHCMCR. HHCMCD16 HHCMCD. HHCTRI16 HHCTRI. HHCVA16 HHCVA. HHCWC16 HHCWC. HHCOTP16 HHCOTP. HHCOSR16 HHCOSR. RXEXP16 RXEXP. RXSLF16 RXSLF. RXPHI16 RXPHI. RXMCR16 RXMCR. RXMCD16 RXMCD. RXTRI16 RXTRI. RXVA16 RXVA. RXWC16 RXWC. RXOTP16 RXOTP. RXOSR16 RXOSR. OTHEXP16 OTHEXP. OTHSLF16 OTHSLF. OTHPHI16 OTHPHI. OTHMCR16 OTHMCR. OTHMCD16 OTHMCD. OTHTRI16 OTHTRI. OTHVA16 OTHVA. OTHWC16 OTHWC. OTHOTP16 OTHOTP. OTHOSR16 OTHOSR. WTADJ16 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' TOTEXP16='TOTAL, PAID BY TOTAL, 2016' TOTSLF16='TOTAL, PAID BY OUT OF POCKET, 2016' TOTPHI16='TOTAL, PAID BY PRIV INSU, 2016' TOTMCR16='TOTAL, PAID BY MEDICARE, 2016' TOTMCD16='TOTAL, PAID BY MEDICAID, 2016' TOTTRI16='TOTAL, PAID BY TRICARE, 2016' TOTVA16 ='TOTAL, PAID BY VA, 2016' TOTWC16 ='TOTAL, PAID BY WORKERS COMP, 2016' TOTOTP16='TOTAL, PAID BY OTHER PUBLIC, 2016' TOTOSR16='TOTAL, PAID BY OTHER, 2016' HOSEXP16='HOSPITAL, PAID BY TOTAL, 2016' HOSSLF16='HOSPITAL, PAID BY OUT OF POCKET, 2016' HOSPHI16='HOSPITAL, PAID BY PRIV INSU, 2016' HOSMCR16='HOSPITAL, PAID BY MEDICARE, 2016' HOSMCD16='HOSPITAL, PAID BY MEDICAID, 2016' HOSTRI16='HOSPITAL, PAID BY TRICARE, 2016' HOSVA16 ='HOSPITAL, PAID BY VA, 2016' HOSWC16 ='HOSPITAL, PAID BY WORKERS COMP, 2016' HOSOTP16='HOSPITAL, PAID BY OTHER PUBLIC, 2016' HOSOSR16='HOSPITAL, PAID BY OTHER, 2016' PHYEXP16='PHYSICIAN, PAID BY TOTAL, 2016' PHYSLF16='PHYSICIAN, PAID BY OUT OF POCKET, 2016' PHYPHI16='PHYSICIAN, PAID BY PRIV INSU, 2016' PHYMCR16='PHYSICIAN, PAID BY MEDICARE, 2016' PHYMCD16='PHYSICIAN, PAID BY MEDICAID, 2016' PHYTRI16='PHYSICIAN, PAID BY TRICARE, 2016' PHYVA16 ='PHYSICIAN, PAID BY VA, 2016' PHYWC16 ='PHYSICIAN, PAID BY WORKERS COMP, 2016' PHYOTP16='PHYSICIAN, PAID BY OTHER PUBLIC, 2016' PHYOSR16='PHYSICIAN, PAID BY OTHER, 2016' DVTEXP16='DENTAL, PAID BY TOTAL, 2016' DVTSLF16='DENTAL, PAID BY OUT OF POCKET, 2016' DVTPHI16='DENTAL, PAID BY PRIV INSU, 2016' DVTMCR16='DENTAL, PAID BY MEDICARE, 2016' DVTMCD16='DENTAL, PAID BY MEDICAID, 2016' DVTTRI16='DENTAL, PAID BY TRICARE, 2016' DVTVA16 ='DENTAL, PAID BY VA, 2016' DVTWC16 ='DENTAL, PAID BY WORKERS COMP, 2016' DVTOTP16='DENTAL, PAID BY OTHER PUBLIC, 2016' DVTOSR16='DENTAL, PAID BY OTHER, 2016' OBOEXP16='OTHER PROVIDER, PAID BY TOTAL, 2016' OBOSLF16='OTHER PROVIDER, BY OUT OF POCKET, 2016' OBOPHI16='OTHER PROVIDER, PAID BY PRIV INSU, 2016' OBOMCR16='OTHER PROVIDER, PAID BY MEDICARE, 2016' OBOMCD16='OTHER PROVIDER, PAID BY MEDICAID, 2016' OBOTRI16='OTHER PROVIDER, PAID BY TRICARE, 2016' OBOVA16 ='OTHER PROVIDER, PAID BY VA, 2016' OBOWC16 ='OTHER PROVIDER, BY WORKERS COMP, 2016' OBOOTP16='OTHER PROVIDER, BY OTHER PUBLIC, 2016' OBOOSR16='OTHER PROVIDER, PAID BY OTHER, 2016' HHCEXP16='HOME HEALTH, PAID BY TOTAL, 2016' HHCSLF16='HOME HEALTH, PAID BY OUT OF POCKET, 2016' HHCPHI16='HOME HEALTH, PAID BY PRIV INSU, 2016' HHCMCR16='HOME HEALTH, PAID BY MEDICARE, 2016' HHCMCD16='HOME HEALTH, PAID BY MEDICAID, 2016' HHCTRI16='HOME HEALTH, PAID BY TRICARE, 2016' HHCVA16 ='HOME HEALTH, PAID BY VA, 2016' HHCWC16 ='HOME HEALTH, PAID BY WORKERS COMP, 2016' HHCOTP16='HOME HEALTH, PAID BY OTHER PUBLIC, 2016' HHCOSR16='HOME HEALTH, PAID BY OTHER, 2016' RXEXP16 ='RX, PAID BY TOTAL, 2016' RXSLF16 ='RX, PAID BY OUT OF POCKET, 2016' RXPHI16 ='RX, PAID BY PRIV INSU, 2016' RXMCR16 ='RX, PAID BY MEDICARE, 2016' RXMCD16 ='RX, PAID BY MEDICAID, 2016' RXTRI16 ='RX, PAID BY TRICARE, 2016' RXVA16 ='RX, PAID BY VA, 2016' RXWC16 ='RX, PAID BY WORKERS COMP, 2016' RXOTP16 ='RX, PAID BY OTHER PUBLIC, 2016' RXOSR16 ='RX, PAID BY OTHER, 2016' OTHEXP16='OTHER MEDICAL, PAID BY TOTAL, 2016' OTHSLF16='OTHER MEDICAL, BY OUT OF POCKET, 2016' OTHPHI16='OTHER MEDICAL, PAID BY PRIV INSU, 2016' OTHMCR16='OTHER MEDICAL, PAID BY MEDICARE, 2016' OTHMCD16='OTHER MEDICAL, PAID BY MEDICAID, 2016' OTHTRI16='OTHER MEDICAL, PAID BY TRICARE, 2016' OTHVA16 ='OTHER MEDICAL, PAID BY VA, 2016' OTHWC16 ='OTHER MEDICAL, BY WORKERS COMP, 2016' OTHOTP16='OTHER MEDICAL, PAID BY OTHR PUBLIC, 2016' OTHOSR16='OTHER MEDICAL, PAID BY OTHER, 2016' WTADJ16 ='GROWTH/FERTILITY/MORTALITY ADJ WGT,2016' ; * 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' 1.14 - 207.99 = '$1 - $208' 207.99 < - 407.155 = '$209 - $407' 407.155 < - 943.535 = '$408 - $944' 943.535 < - 37872.98 = '$945 - $37,873' ; VALUE DVTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.54 - 155.67 = '$3 - $156' 155.67 < - 275.4 = '$157 - $275' 275.4 < - 572.83 = '$276 - $573' 572.83 < - 23887.87 = '$574 - $23,888' ; VALUE DVTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.6 - 38.16 = '$3 - $38' 38.16 < - 78.59 = '$39 - $79' 78.59 < - 202.04 = '$80 - $202' 202.04 < - 4094.69 = '$203 - $4,095' ; VALUE DVTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.75 - 141.92 = '$1 - $142' 141.92 < - 287.47 = '$143 - $287' 287.47 < - 527.63 = '$288 - $528' 527.63 < - 17424.54 = '$529 - $17,425' ; VALUE DVTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 13.08 - 75.21 = '$13 - $75' 75.21 < - 149.86 = '$76 - $150' 149.86 < - 418.88 = '$151 - $419' 418.88 < - 5238.55 = '$420 - $5,239' ; VALUE DVTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.39 - 223.08 = '$2 - $223' 223.08 < - 396.43 = '$224 - $396' 396.43 < - 817.35 = '$397 - $817' 817.35 < - 34106.6 = '$818 - $34,107' ; VALUE DVTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.81 - 75.83 = '$1 - $76' 75.83 < - 202.37 = '$77 - $202' 202.37 < - 558.4 = '$203 - $558' 558.4 < - 31334.07 = '$559 - $31,334' ; VALUE DVTTRI 0 = '0' ; VALUE DVTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.04 - 1.96 = '$1 - $2' 1.96 < - 4.51 = '$3 - $5' 4.51 < - 16.09 = '$6 - $16' 16.09 < - 178.03 = '$17 - $178' ; VALUE DVTWC 0 = '0' ; VALUE GTZERO 0 = '0' 0 < - HIGH = '>0' ; VALUE HHCEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 8.42 - 1467.62 = '$8 - $1,468' 1467.62 < - 6213.155 = '$1,469 - $6,213' 6213.155 < - 17620.82 = '$6,214 - $17,621' 17620.82 < - 444964.09 = '$17,622 - $444,964' ; VALUE HHCMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 8.18 - 1587.27 = '$8 - $1,587' 1587.27 < - 7275.96 = '$1,588 - $7,276' 7275.96 < - 23888.11 = '$7,277 - $23,888' 23888.11 < - 374044.28 = '$23,889 - $374,044' ; VALUE HHCMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 23.64 - 2766.97 = '$23 - $2,767' 2766.97 < - 6255.55 = '$2,768 - $6,256' 6255.55 < - 14022.48 = '$6,257 - $14,022' 14022.48 < - 112332.56 = '$14,023 - $112,333' ; VALUE HHCOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 79.11 - 195.19 = '$79 - $195' 195.19 < - 447.76 = '$196 - $448' 447.76 < - 1270.16 = '$449 - $1,270' 1270.16 < - 3813.46 = '$1,271 - $3,813' ; VALUE HHCOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 20.18 - 428.96 = '$20 - $429' 428.96 < - 1072.695 = '$430 - $1,073' 1072.695 < - 2792.26 = '$1,074 - $2,792' 2792.26 < - 21063.26 = '$2,793 - $21,063' ; VALUE HHCPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 41.62 - 872.52 = '$41 - $873' 872.52 < - 2802.03 = '$874 - $2,802' 2802.03 < - 8576.795 = '$2,803 - $8,577' 8576.795 < - 141745.18 = '$8,578 - $141,745' ; VALUE HHCSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 8.42 - 147.35 = '$8 - $147' 147.35 < - 512.1 = '$148 - $512' 512.1 < - 1719.86 = '$513 - $1,720' 1719.86 < - 100538.66 = '$1,721 - $100,539' ; VALUE HHCTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.18 - 59.595 = '$7 - $60' 59.595 < - 193.99 = '$61 - $194' 193.99 < - 517.4 = '$195 - $517' 517.4 < - 2008.59 = '$518 - $2,009' ; VALUE HHCVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 215.4 - 2054.04 = '$215 - $2,054' 2054.04 < - 5385.08 = '$2,055 - $5,385' 5385.08 < - 12268.36 = '$5,386 - $12,268' 12268.36 < - 56004.85 = '$12,269 - $56,005' ; VALUE HHCWC 0 = '0' 20000 - 40000 = '$20,000 - $40,000' ; VALUE HOSEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 4.03 - 370.31 = '$4 - $370' 370.31 < - 1410.71 = '$371 - $1,411' 1410.71 < - 6204.37 = '$1,412 - $6,204' 6204.37 < - 1194832.05 = '$6,205 - $1,194,832' ; VALUE HOSMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.2 - 245.53 = '$2 - $246' 245.53 < - 915.84 = '$247 - $916' 915.84 < - 4488.92 = '$917 - $4,489' 4488.92 < - 869461.51 = '$4,490 - $869,462' ; VALUE HOSMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.55 - 282.05 = '$1 - $282' 282.05 < - 1460.49 = '$283 - $1,460' 1460.49 < - 8837.74 = '$1,461 - $8,838' 8837.74 < - 280707.13 = '$8,839 - $280,707' ; VALUE HOSOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.31 - 141.73 = '$3 - $142' 141.73 < - 460.68 = '$143 - $461' 460.68 < - 1729.42 = '$462 - $1,729' 1729.42 < - 92620.23 = '$1,730 - $92,620' ; VALUE HOSOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.28 - 99.35 = '$7 - $99' 99.35 < - 307.98 = '$100 - $308' 307.98 < - 1271.56 = '$309 - $1,272' 1271.56 < - 64056.76 = '$1,273 - $64,057' ; VALUE HOSPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.02 - 341.02 = '$2 - $341' 341.02 < - 1243.69 = '$342 - $1,244' 1243.69 < - 4194.7 = '$1,245 - $4,195' 4194.7 < - 1194832.05 = '$4,196 - $1,194,832' ; VALUE HOSSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.37 - 61.57 = '$2 - $62' 61.57 < - 184.71 = '$63 - $185' 184.71 < - 615.71 = '$186 - $616' 615.71 < - 154073.94 = '$617 - $154,074' ; VALUE HOSTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.11 - 86.19 = '$1 - $86' 86.19 < - 313.995 = '$87 - $314' 313.995 < - 1032.985 = '$315 - $1,033' 1032.985 < - 198904.26 = '$1,034 - $198,904' ; VALUE HOSVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.65 - 225 = '$1 - $225' 225 < - 896.145 = '$226 - $896' 896.145 < - 3692.685 = '$897 - $3,693' 3692.685 < - 343410.19 = '$3,694 - $343,410' ; VALUE HOSWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.76 - 107.11 = '$2 - $107' 107.11 < - 300.37 = '$108 - $300' 300.37 < - 981.31 = '$301 - $981' 981.31 < - 457250.86 = '$982 - $457,251' ; VALUE $ID 'N0000116' - 'N7338016' = 'N0000116 - N7338016' ; 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.2 - 25.16 = '$1 - $25' 25.16 < - 91.44 = '$26 - $91' 91.44 < - 358.98 = '$92 - $359' 358.98 < - 111994.61 = '$360 - $111,995' ; VALUE OBOMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.2 - 16 = '$1 - $16' 16 < - 46.36 = '$17 - $46' 46.36 < - 182.42 = '$47 - $182' 182.42 < - 111830.75 = '$183 - $111,831' ; VALUE OBOMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.16 - 35.29 = '$1 - $35' 35.29 < - 133.17 = '$36 - $133' 133.17 < - 410.59 = '$134 - $411' 410.59 < - 95851.44 = '$412 - $95,851' ; VALUE OBOOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.67 - 51.99 = '$1 - $52' 51.99 < - 143.84 = '$53 - $144' 143.84 < - 469.65 = '$145 - $470' 469.65 < - 18248.79 = '$471 - $18,249' ; VALUE OBOOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.01 - 33.37 = '$2 - $33' 33.37 < - 81.73 = '$34 - $82' 81.73 < - 230.44 = '$83 - $230' 230.44 < - 3831.93 = '$231 - $3,832' ; VALUE OBOPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.14 - 14.69 = '$1 - $15' 14.69 < - 48.12 = '$16 - $48' 48.12 < - 196.78 = '$49 - $197' 196.78 < - 83713.62 = '$198 - $83,714' ; VALUE OBOSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.24 - 6.15 = '$1 - $6' 6.15 < - 20.22 = '$7 - $20' 20.22 < - 78.5 = '$21 - $79' 78.5 < - 51917.16 = '$80 - $51,917' ; VALUE OBOTRI 0 = '0' ; VALUE OBOVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.12 - 2.08 = '$1 - $2' 2.08 < - 6.35 = '$3 - $6' 6.35 < - 19.43 = '$7 - $19' 19.43 < - 953.16 = '$20 - $953' ; VALUE OBOWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.28 - 59.65 = '$1 - $60' 59.65 < - 170.17 = '$61 - $170' 170.17 < - 648.76 = '$171 - $649' 648.76 < - 16096.44 = '$650 - $16,096' ; VALUE OTHEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.89 - 151.21 = '$1 - $151' 151.21 < - 311.92 = '$152 - $312' 311.92 < - 567.04 = '$313 - $567' 567.04 < - 84962.52 = '$568 - $84,963' ; VALUE OTHMCD 0 = '0' ; VALUE OTHMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 10.4 - 1011.625 = '$10 - $1,012' 1011.625 < - 1970.205 = '$1,013 - $1,970' 1970.205 < - 4704.58 = '$1,971 - $4,705' 4704.58 < - 84180.65 = '$4,706 - $84,181' ; VALUE OTHOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 8.19 - 127.43 = '$8 - $127' 127.43 < - 283.18 = '$128 - $283' 283.18 < - 487.02 = '$284 - $487' 487.02 < - 9549.4 = '$488 - $9,549' ; VALUE OTHOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.96 - 40.65 = '$1 - $41' 40.65 < - 74.015 = '$42 - $74' 74.015 < - 189.69 = '$75 - $190' 189.69 < - 2038.71 = '$191 - $2,039' ; VALUE OTHPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.01 - 74.06 = '$1 - $74' 74.06 < - 146.235 = '$75 - $146' 146.235 < - 263.26 = '$147 - $263' 263.26 < - 18954.6 = '$264 - $18,955' ; VALUE OTHSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.89 - 113.41 = '$1 - $113' 113.41 < - 264.84 = '$114 - $265' 264.84 < - 490.45 = '$266 - $490' 490.45 < - 53407.71 = '$491 - $53,408' ; VALUE OTHTRI 0 = '0' ; VALUE OTHVA 0 = '0' ; VALUE OTHWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 164.72 - 1079.2 = '$164 - $1,079' 1079.2 < - 2137.44 = '$1,080 - $2,137' 2137.44 < - 4364.4 = '$2,138 - $4,364' 4364.4 < - 19822.29 = '$4,365 - $19,822' ; VALUE PHYEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.93 - 234.09 = '$1 - $234' 234.09 < - 609.21 = '$235 - $609' 609.21 < - 1812.24 = '$610 - $1,812' 1812.24 < - 173492.22 = '$1,813 - $173,492' ; VALUE PHYMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.86 - 131.55 = '$1 - $132' 131.55 < - 320.6 = '$133 - $321' 320.6 < - 883.51 = '$322 - $884' 883.51 < - 89118.01 = '$885 - $89,118' ; VALUE PHYMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.86 - 286.29 = '$1 - $286' 286.29 < - 849.2 = '$287 - $849' 849.2 < - 2413.54 = '$850 - $2,414' 2413.54 < - 113390.05 = '$2,415 - $113,390' ; VALUE PHYOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.67 - 73.46 = '$1 - $73' 73.46 < - 159.41 = '$74 - $159' 159.41 < - 405.68 = '$160 - $406' 405.68 < - 134202.75 = '$407 - $134,203' ; VALUE PHYOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.99 - 47.62 = '$1 - $48' 47.62 < - 105.15 = '$49 - $105' 105.15 < - 303.03 = '$106 - $303' 303.03 < - 38662.78 = '$304 - $38,663' ; VALUE PHYPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.6 - 202.66 = '$2 - $203' 202.66 < - 497.2 = '$204 - $497' 497.2 < - 1380.81 = '$498 - $1,381' 1380.81 < - 148949.25 = '$1,382 - $148,949' ; VALUE PHYSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.81 - 36.15 = '$1 - $36' 36.15 < - 90.225 = '$37 - $90' 90.225 < - 231.39 = '$91 - $231' 231.39 < - 50653.1 = '$232 - $50,653' ; VALUE PHYTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 9.07 - 209.365 = '$9 - $209' 209.365 < - 618.675 = '$210 - $619' 618.675 < - 1581.335 = '$620 - $1,581' 1581.335 < - 152352.36 = '$1,582 - $152,352' ; VALUE PHYVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.51 - 26.91 = '$1 - $27' 26.91 < - 88.88 = '$28 - $89' 88.88 < - 295.58 = '$90 - $296' 295.58 < - 10197.04 = '$297 - $10,197' ; VALUE PHYWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.4 - 320.93 = '$7 - $321' 320.93 < - 814.24 = '$322 - $814' 814.24 < - 2590.78 = '$815 - $2,591' 2590.78 < - 84352.04 = '$2,592 - $84,352' ; 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.59 - 93.04 = '$1 - $93' 93.04 < - 390.45 = '$94 - $390' 390.45 < - 1549.39 = '$391 - $1,549' 1549.39 < - 419128.53 = '$1,550 - $419,129' ; VALUE RXMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.59 - 59.525 = '$1 - $60' 59.525 < - 191.41 = '$61 - $191' 191.41 < - 812.185 = '$192 - $812' 812.185 < - 325731.9 = '$813 - $325,732' ; VALUE RXMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 11.33 - 1187.39 = '$11 - $1,187' 1187.39 < - 3579.295 = '$1,188 - $3,579' 3579.295 < - 9616.53 = '$3,580 - $9,617' 9616.53 < - 417607.05 = '$9,618 - $417,607' ; VALUE RXOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.15 - 57.44 = '$6 - $57' 57.44 < - 221.44 = '$58 - $221' 221.44 < - 499.075 = '$222 - $499' 499.075 < - 5778.96 = '$500 - $5,779' ; VALUE RXOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.8 - 55.745 = '$1 - $56' 55.745 < - 277.895 = '$57 - $278' 277.895 < - 1059.63 = '$279 - $1,060' 1059.63 < - 44079.87 = '$1,061 - $44,080' ; VALUE RXPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.54 - 102.87 = '$2 - $103' 102.87 < - 393.91 = '$104 - $394' 393.91 < - 1443.47 = '$395 - $1,443' 1443.47 < - 111866.11 = '$1,444 - $111,866' ; VALUE RXSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.92 - 25.81 = '$1 - $26' 25.81 < - 100.36 = '$27 - $100' 100.36 < - 356.52 = '$101 - $357' 356.52 < - 33710.01 = '$358 - $33,710' ; VALUE RXTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.67 - 38.11 = '$1 - $38' 38.11 < - 181.02 = '$39 - $181' 181.02 < - 761.91 = '$182 - $762' 761.91 < - 27400.63 = '$763 - $27,401' ; VALUE RXVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.85 - 62.24 = '$1 - $62' 62.24 < - 267.91 = '$63 - $268' 267.91 < - 760.16 = '$269 - $760' 760.16 < - 19474.6 = '$761 - $19,475' ; VALUE RXWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.47 - 107.45 = '$2 - $107' 107.45 < - 275.41 = '$108 - $275' 275.41 < - 897.18 = '$276 - $897' 897.18 < - 28146.98 = '$898 - $28,147' ; VALUE SEX 1 = '1 Male' 2 = '2 Female' ; VALUE TOTEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.96 - 538.55 = '$1 - $539' 538.55 < - 1714.93 = '$540 - $1,715' 1714.93 < - 5779.77 = '$1,716 - $5,780' 5779.77 < - 1293185.04 = '$5,781 - $1,293,185' ; VALUE TOTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.14 - 274.44 = '$1 - $274' 274.44 < - 823.51 = '$275 - $824' 823.51 < - 3305.81 = '$825 - $3,306' 3305.81 < - 883576.97 = '$3,307 - $883,577' ; VALUE TOTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.55 - 529.03 = '$1 - $529' 529.03 < - 2189.99 = '$530 - $2,190' 2189.99 < - 9517.68 = '$2,191 - $9,518' 9517.68 < - 418955.74 = '$9,519 - $418,956' ; VALUE TOTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.67 - 93.58 = '$1 - $94' 93.58 < - 226.55 = '$95 - $227' 226.55 < - 609.45 = '$228 - $609' 609.45 < - 134202.75 = '$610 - $134,203' ; VALUE TOTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.99 - 65.96 = '$1 - $66' 65.96 < - 207.36 = '$67 - $207' 207.36 < - 819.52 = '$208 - $820' 819.52 < - 64056.76 = '$821 - $64,057' ; VALUE TOTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.63 - 390.91 = '$1 - $391' 390.91 < - 1176.54 = '$392 - $1,177' 1176.54 < - 3662.66 = '$1,178 - $3,663' 3662.66 < - 1285748.79 = '$3,664 - $1,285,749' ; VALUE TOTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.92 - 97.62 = '$1 - $98' 97.62 < - 361.93 = '$99 - $362' 361.93 < - 1045.93 = '$363 - $1,046' 1045.93 < - 172560.38 = '$1,047 - $172,560' ; VALUE TOTTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.11 - 252.56 = '$1 - $253' 252.56 < - 847.45 = '$254 - $847' 847.45 < - 2515.49 = '$848 - $2,515' 2515.49 < - 218422.01 = '$2,516 - $218,422' ; VALUE TOTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.08 - 34.22 = '$1 - $34' 34.22 < - 200.62 = '$35 - $201' 200.62 < - 918.995 = '$202 - $919' 918.995 < - 343700.08 = '$920 - $343,700' ; VALUE TOTWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.76 - 309.07 = '$2 - $309' 309.07 < - 1009.045 = '$310 - $1,009' 1009.045 < - 3256.45 = '$1,010 - $3,256' 3256.45 < - 559907.66 = '$3,257 - $559,908' ; VALUE YESNO 0 = '0 No' 1 = '1 Yes' ;