SAS User File for PROJYR12 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 (PROJYR12.SSP) or the ASCII data file (PROJYR12.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\PROJYR12.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.PROJYR12; TITLE "List of Variables in MEPS PROJYR12 SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.PROJYR12 (OBS=20); TITLE "First 20 Observations in MEPS PROJYR12 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) PROJYR12 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 PROJYR12.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file PROJYR12.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 PROJYR12.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 PROJYR12.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\PROJYR12.DAT'; DATA PUFLIB.PROJYR12; INFILE IN1 LRECL=663; 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 (PROJYR12). In the example, after the successful completion of the DATA step, a PC file named PROJYR12.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 (663 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 PROJYR12.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., 663 for PROJYR12.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (665 for PROJYR12.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 (663 for PROJYR12.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 (PROJYR12.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.PROJYR12; 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 PROJYR12.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=663; 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 TOTEXP12 10.2 @29 TOTSLF12 9.2 @38 TOTPHI12 10.2 @48 TOTMCR12 9.2 @57 TOTMCD12 9.2 @66 TOTTRI12 9.2 @75 TOTVA12 9.2 @84 TOTWC12 9.2 @93 TOTOTP12 8.2 @101 TOTOSR12 9.2 @110 HOSEXP12 9.2 @119 HOSSLF12 9.2 @128 HOSPHI12 9.2 @137 HOSMCR12 9.2 @146 HOSMCD12 9.2 @155 HOSTRI12 9.2 @164 HOSVA12 9.2 @173 HOSWC12 9.2 @182 HOSOTP12 8.2 @190 HOSOSR12 8.2 @198 PHYEXP12 9.2 @207 PHYSLF12 8.2 @215 PHYPHI12 9.2 @224 PHYMCR12 9.2 @233 PHYMCD12 8.2 @241 PHYTRI12 9.2 @250 PHYVA12 7.2 @257 PHYWC12 8.2 @265 PHYOTP12 8.2 @273 PHYOSR12 9.2 @282 DVTEXP12 8.2 @290 DVTSLF12 8.2 @298 DVTPHI12 8.2 @306 DVTMCR12 7.2 @313 DVTMCD12 8.2 @321 DVTTRI12 4.2 @325 DVTVA12 6.2 @331 DVTWC12 4.2 @335 DVTOTP12 7.2 @342 DVTOSR12 8.2 @350 OBOEXP12 8.2 @358 OBOSLF12 8.2 @366 OBOPHI12 8.2 @374 OBOMCR12 8.2 @382 OBOMCD12 8.2 @390 OBOTRI12 4.2 @394 OBOVA12 6.2 @400 OBOWC12 8.2 @408 OBOOTP12 7.2 @415 OBOOSR12 8.2 @423 HHCEXP12 9.2 @432 HHCSLF12 8.2 @440 HHCPHI12 9.2 @449 HHCMCR12 8.2 @457 HHCMCD12 9.2 @466 HHCTRI12 7.2 @473 HHCVA12 8.2 @481 HHCWC12 8.2 @489 HHCOTP12 8.2 @497 HHCOSR12 7.2 @504 RXEXP12 9.2 @513 RXSLF12 8.2 @521 RXPHI12 8.2 @529 RXMCR12 9.2 @538 RXMCD12 9.2 @547 RXTRI12 8.2 @555 RXVA12 8.2 @563 RXWC12 8.2 @571 RXOTP12 8.2 @579 RXOSR12 7.2 @586 OTHEXP12 8.2 @594 OTHSLF12 8.2 @602 OTHPHI12 8.2 @610 OTHMCR12 8.2 @618 OTHMCD12 4.2 @622 OTHTRI12 4.2 @626 OTHVA12 4.2 @630 OTHWC12 8.2 @638 OTHOTP12 7.2 @645 OTHOSR12 7.2 @652 WTADJ12 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. TOTEXP12 TOTEXP. TOTSLF12 TOTSLF. TOTPHI12 TOTPHI. TOTMCR12 TOTMCR. TOTMCD12 TOTMCD. TOTTRI12 TOTTRI. TOTVA12 TOTVA. TOTWC12 TOTWC. TOTOTP12 TOTOTP. TOTOSR12 TOTOSR. HOSEXP12 HOSEXP. HOSSLF12 HOSSLF. HOSPHI12 HOSPHI. HOSMCR12 HOSMCR. HOSMCD12 HOSMCD. HOSTRI12 HOSTRI. HOSVA12 HOSVA. HOSWC12 HOSWC. HOSOTP12 HOSOTP. HOSOSR12 HOSOSR. PHYEXP12 PHYEXP. PHYSLF12 PHYSLF. PHYPHI12 PHYPHI. PHYMCR12 PHYMCR. PHYMCD12 PHYMCD. PHYTRI12 PHYTRI. PHYVA12 PHYVA. PHYWC12 PHYWC. PHYOTP12 PHYOTP. PHYOSR12 PHYOSR. DVTEXP12 DVTEXP. DVTSLF12 DVTSLF. DVTPHI12 DVTPHI. DVTMCR12 DVTMCR. DVTMCD12 DVTMCD. DVTTRI12 DVTTRI. DVTVA12 DVTVA. DVTWC12 DVTWC. DVTOTP12 DVTOTP. DVTOSR12 DVTOSR. OBOEXP12 OBOEXP. OBOSLF12 OBOSLF. OBOPHI12 OBOPHI. OBOMCR12 OBOMCR. OBOMCD12 OBOMCD. OBOTRI12 OBOTRI. OBOVA12 OBOVA. OBOWC12 OBOWC. OBOOTP12 OBOOTP. OBOOSR12 OBOOSR. HHCEXP12 HHCEXP. HHCSLF12 HHCSLF. HHCPHI12 HHCPHI. HHCMCR12 HHCMCR. HHCMCD12 HHCMCD. HHCTRI12 HHCTRI. HHCVA12 HHCVA. HHCWC12 HHCWC. HHCOTP12 HHCOTP. HHCOSR12 HHCOSR. RXEXP12 RXEXP. RXSLF12 RXSLF. RXPHI12 RXPHI. RXMCR12 RXMCR. RXMCD12 RXMCD. RXTRI12 RXTRI. RXVA12 RXVA. RXWC12 RXWC. RXOTP12 RXOTP. RXOSR12 RXOSR. OTHEXP12 OTHEXP. OTHSLF12 OTHSLF. OTHPHI12 OTHPHI. OTHMCR12 OTHMCR. OTHMCD12 OTHMCD. OTHTRI12 OTHTRI. OTHVA12 OTHVA. OTHWC12 OTHWC. OTHOTP12 OTHOTP. OTHOSR12 OTHOSR. WTADJ12 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' TOTEXP12='TOTAL, PAID BY TOTAL, 2012' TOTSLF12='TOTAL, PAID BY OUT OF POCKET, 2012' TOTPHI12='TOTAL, PAID BY PRIV INSU, 2012' TOTMCR12='TOTAL, PAID BY MEDICARE, 2012' TOTMCD12='TOTAL, PAID BY MEDICAID, 2012' TOTTRI12='TOTAL, PAID BY TRICARE, 2012' TOTVA12 ='TOTAL, PAID BY VA, 2012' TOTWC12 ='TOTAL, PAID BY WORKERS COMP, 2012' TOTOTP12='TOTAL, PAID BY OTHER PUBLIC, 2012' TOTOSR12='TOTAL, PAID BY OTHER, 2012' HOSEXP12='HOSPITAL, PAID BY TOTAL, 2012' HOSSLF12='HOSPITAL, PAID BY OUT OF POCKET, 2012' HOSPHI12='HOSPITAL, PAID BY PRIV INSU, 2012' HOSMCR12='HOSPITAL, PAID BY MEDICARE, 2012' HOSMCD12='HOSPITAL, PAID BY MEDICAID, 2012' HOSTRI12='HOSPITAL, PAID BY TRICARE, 2012' HOSVA12 ='HOSPITAL, PAID BY VA, 2012' HOSWC12 ='HOSPITAL, PAID BY WORKERS COMP, 2012' HOSOTP12='HOSPITAL, PAID BY OTHER PUBLIC, 2012' HOSOSR12='HOSPITAL, PAID BY OTHER, 2012' PHYEXP12='PHYSICIAN, PAID BY TOTAL, 2012' PHYSLF12='PHYSICIAN, PAID BY OUT OF POCKET, 2012' PHYPHI12='PHYSICIAN, PAID BY PRIV INSU, 2012' PHYMCR12='PHYSICIAN, PAID BY MEDICARE, 2012' PHYMCD12='PHYSICIAN, PAID BY MEDICAID, 2012' PHYTRI12='PHYSICIAN, PAID BY TRICARE, 2012' PHYVA12 ='PHYSICIAN, PAID BY VA, 2012' PHYWC12 ='PHYSICIAN, PAID BY WORKERS COMP, 2012' PHYOTP12='PHYSICIAN, PAID BY OTHER PUBLIC, 2012' PHYOSR12='PHYSICIAN, PAID BY OTHER, 2012' DVTEXP12='DENTAL, PAID BY TOTAL, 2012' DVTSLF12='DENTAL, PAID BY OUT OF POCKET, 2012' DVTPHI12='DENTAL, PAID BY PRIV INSU, 2012' DVTMCR12='DENTAL, PAID BY MEDICARE, 2012' DVTMCD12='DENTAL, PAID BY MEDICAID, 2012' DVTTRI12='DENTAL, PAID BY TRICARE, 2012' DVTVA12 ='DENTAL, PAID BY VA, 2012' DVTWC12 ='DENTAL, PAID BY WORKERS COMP, 2012' DVTOTP12='DENTAL, PAID BY OTHER PUBLIC, 2012' DVTOSR12='DENTAL, PAID BY OTHER, 2012' OBOEXP12='OTHER PROVIDER, PAID BY TOTAL, 2012' OBOSLF12='OTHER PROVIDER, BY OUT OF POCKET, 2012' OBOPHI12='OTHER PROVIDER, PAID BY PRIV INSU, 2012' OBOMCR12='OTHER PROVIDER, PAID BY MEDICARE, 2012' OBOMCD12='OTHER PROVIDER, PAID BY MEDICAID, 2012' OBOTRI12='OTHER PROVIDER, PAID BY TRICARE, 2012' OBOVA12 ='OTHER PROVIDER, PAID BY VA, 2012' OBOWC12 ='OTHER PROVIDER, BY WORKERS COMP, 2012' OBOOTP12='OTHER PROVIDER, BY OTHER PUBLIC, 2012' OBOOSR12='OTHER PROVIDER, PAID BY OTHER, 2012' HHCEXP12='HOME HEALTH, PAID BY TOTAL, 2012' HHCSLF12='HOME HEALTH, PAID BY OUT OF POCKET, 2012' HHCPHI12='HOME HEALTH, PAID BY PRIV INSU, 2012' HHCMCR12='HOME HEALTH, PAID BY MEDICARE, 2012' HHCMCD12='HOME HEALTH, PAID BY MEDICAID, 2012' HHCTRI12='HOME HEALTH, PAID BY TRICARE, 2012' HHCVA12 ='HOME HEALTH, PAID BY VA, 2012' HHCWC12 ='HOME HEALTH, PAID BY WORKERS COMP, 2012' HHCOTP12='HOME HEALTH, PAID BY OTHER PUBLIC, 2012' HHCOSR12='HOME HEALTH, PAID BY OTHER, 2012' RXEXP12 ='RX, PAID BY TOTAL, 2012' RXSLF12 ='RX, PAID BY OUT OF POCKET, 2012' RXPHI12 ='RX, PAID BY PRIV INSU, 2012' RXMCR12 ='RX, PAID BY MEDICARE, 2012' RXMCD12 ='RX, PAID BY MEDICAID, 2012' RXTRI12 ='RX, PAID BY TRICARE, 2012' RXVA12 ='RX, PAID BY VA, 2012' RXWC12 ='RX, PAID BY WORKERS COMP, 2012' RXOTP12 ='RX, PAID BY OTHER PUBLIC, 2012' RXOSR12 ='RX, PAID BY OTHER, 2012' OTHEXP12='OTHER MEDICAL, PAID BY TOTAL, 2012' OTHSLF12='OTHER MEDICAL, BY OUT OF POCKET, 2012' OTHPHI12='OTHER MEDICAL, PAID BY PRIV INSU, 2012' OTHMCR12='OTHER MEDICAL, PAID BY MEDICARE, 2012' OTHMCD12='OTHER MEDICAL, PAID BY MEDICAID, 2012' OTHTRI12='OTHER MEDICAL, PAID BY TRICARE, 2012' OTHVA12 ='OTHER MEDICAL, PAID BY VA, 2012' OTHWC12 ='OTHER MEDICAL, BY WORKERS COMP, 2012' OTHOTP12='OTHER MEDICAL, PAID BY OTHR PUBLIC, 2012' OTHOSR12='OTHER MEDICAL, PAID BY OTHER, 2012' WTADJ12 ='GROWTH/FERTILITY/MORTALITY ADJ WGT,2012' ; * 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.09 - 168.955 = '$1 - $169' 168.955 < - 330.88 = '$170 - $331' 330.88 < - 771.835 = '$332 - $772' 771.835 < - 31125.85 = '$773 - $31,126' ; VALUE DVTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.63 - 115.54 = '$2 - $116' 115.54 < - 204.42 = '$117 - $204' 204.42 < - 425.19 = '$205 - $425' 425.19 < - 17730.76 = '$426 - $17,731' ; VALUE DVTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.95 - 31.19 = '$2 - $31' 31.19 < - 64.22 = '$32 - $64' 64.22 < - 165.105 = '$65 - $165' 165.105 < - 3346.14 = '$166 - $3,346' ; VALUE DVTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.46 - 118.3 = '$1 - $118' 118.3 < - 239.63 = '$119 - $240' 239.63 < - 439.82 = '$241 - $440' 439.82 < - 14524.69 = '$441 - $14,525' ; VALUE DVTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 12.92 - 74.26 = '$12 - $74' 74.26 < - 147.97 = '$75 - $148' 147.97 < - 413.59 = '$149 - $414' 413.59 < - 5172.42 = '$415 - $5,172' ; VALUE DVTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.96 - 182.96 = '$1 - $183' 182.96 < - 325.13 = '$184 - $325' 325.13 < - 670.35 = '$326 - $670' 670.35 < - 27972.35 = '$671 - $27,972' ; VALUE DVTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.51 - 63.49 = '$1 - $63' 63.49 < - 169.44 = '$64 - $169' 169.44 < - 467.53 = '$170 - $468' 467.53 < - 26235.17 = '$469 - $26,235' ; VALUE DVTTRI 0 = '0' ; VALUE DVTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.04 - 1.87 = '$1 - $2' 1.87 < - 4.32 = '$3 - $4' 4.32 < - 15.4 = '$5 - $15' 15.4 < - 170.44 = '$16 - $170' ; VALUE DVTWC 0 = '0' ; VALUE GTZERO 0 = '0' 0 < - HIGH = '>0' ; VALUE HHCEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.81 - 1287.16 = '$7 - $1,287' 1287.16 < - 5148.185 = '$1,288 - $5,148' 5148.185 < - 14444.53 = '$5,149 - $14,445' 14444.53 < - 349701.43 = '$14,446 - $349,701' ; VALUE HHCMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.18 - 1199.37 = '$6 - $1,199' 1199.37 < - 5497.85 = '$1,200 - $5,498' 5497.85 < - 18050.29 = '$5,499 - $18,050' 18050.29 < - 282634.64 = '$18,051 - $282,635' ; VALUE HHCMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 20.48 - 2397.63 = '$20 - $2,398' 2397.63 < - 5420.55 = '$2,399 - $5,421' 5420.55 < - 12150.75 = '$5,422 - $12,151' 12150.75 < - 97338.28 = '$12,152 - $97,338' ; VALUE HHCOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 71.06 - 175.33 = '$71 - $175' 175.33 < - 402.21 = '$176 - $402' 402.21 < - 1140.94 = '$403 - $1,141' 1140.94 < - 3425.5 = '$1,142 - $3,426' ; VALUE HHCOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 18.43 - 391.61 = '$18 - $392' 391.61 < - 979.28 = '$393 - $979' 979.28 < - 2549.1 = '$980 - $2,549' 2549.1 < - 19228.98 = '$2,550 - $19,229' ; VALUE HHCPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 39.36 - 825.135 = '$39 - $825' 825.135 < - 2649.86 = '$826 - $2,650' 2649.86 < - 8111.01 = '$2,651 - $8,111' 8111.01 < - 134047.37 = '$8,112 - $134,047' ; VALUE HHCSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.81 - 136.67 = '$7 - $137' 136.67 < - 475 = '$138 - $475' 475 < - 1595.23 = '$476 - $1,595' 1595.23 < - 93253.31 = '$1,596 - $93,253' ; VALUE HHCTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.84 - 56.835 = '$6 - $57' 56.835 < - 185.005 = '$58 - $185' 185.005 < - 493.43 = '$186 - $493' 493.43 < - 1915.56 = '$494 - $1,916' ; VALUE HHCVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 192.08 - 1831.67 = '$192 - $1,832' 1831.67 < - 4802.1 = '$1,833 - $4,802' 4802.1 < - 10940.2 = '$4,803 - $10,940' 10940.2 < - 49941.82 = '$10,941 - $49,942' ; VALUE HHCWC 0 = '0' 20000 - 40000 = '$20,000 - $40,000' ; VALUE HOSEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.3 - 307.875 = '$3 - $308' 307.875 < - 1169.22 = '$309 - $1,169' 1169.22 < - 5128.905 = '$1,170 - $5,129' 5128.905 < - 978599 = '$5,130 - $978,599' ; VALUE HOSMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.83 - 203.915 = '$1 - $204' 203.915 < - 760.59 = '$205 - $761' 760.59 < - 3728.01 = '$762 - $3,728' 3728.01 < - 722080.75 = '$3,729 - $722,081' ; VALUE HOSMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.33 - 242.55 = '$1 - $243' 242.55 < - 1255.96 = '$244 - $1,256' 1255.96 < - 7600.105 = '$1,257 - $7,600' 7600.105 < - 241396.87 = '$7,601 - $241,397' ; VALUE HOSOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.83 - 121.14 = '$2 - $121' 121.14 < - 393.775 = '$122 - $394' 393.775 < - 1478.24 = '$395 - $1,478' 1478.24 < - 79167.92 = '$1,479 - $79,168' ; VALUE HOSOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.96 - 94.87 = '$6 - $95' 94.87 < - 294.095 = '$96 - $294' 294.095 < - 1214.26 = '$295 - $1,214' 1214.26 < - 61170.6 = '$1,215 - $61,171' ; VALUE HOSPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.65 - 279.3 = '$1 - $279' 279.3 < - 1018.62 = '$280 - $1,019' 1018.62 < - 3435.57 = '$1,020 - $3,436' 3435.57 < - 978599 = '$3,437 - $978,599' ; VALUE HOSSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.95 - 50.56 = '$1 - $51' 50.56 < - 151.69 = '$52 - $152' 151.69 < - 505.65 = '$153 - $506' 505.65 < - 126530.66 = '$507 - $126,531' ; VALUE HOSTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.9 - 69.96 = '$1 - $70' 69.96 < - 254.87 = '$71 - $255' 254.87 < - 838.47 = '$256 - $838' 838.47 < - 161449.65 = '$839 - $161,450' ; VALUE HOSVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.45 - 196.69 = '$1 - $197' 196.69 < - 783.38 = '$198 - $783' 783.38 < - 3228.025 = '$784 - $3,228' 3228.025 < - 300197.42 = '$3,229 - $300,197' ; VALUE HOSWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.26 - 87.81 = '$2 - $88' 87.81 < - 246.24 = '$89 - $246' 246.24 < - 804.44 = '$247 - $804' 804.44 < - 374837.41 = '$805 - $374,837' ; VALUE $ID 'N0000112' - 'N7338012' = 'N0000112 - N7338012' ; 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.15 - 21.08 = '$1 - $21' 21.08 < - 77 = '$22 - $77' 77 < - 303.91 = '$78 - $304' 303.91 < - 89148.22 = '$305 - $89,148' ; VALUE OBOMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.15 - 11.92 = '$1 - $12' 11.92 < - 34.54 = '$13 - $35' 34.54 < - 135.9 = '$36 - $136' 135.9 < - 83313.35 = '$137 - $83,313' ; VALUE OBOMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.14 - 30.2 = '$1 - $30' 30.2 < - 113.99 = '$31 - $114' 113.99 < - 351.43 = '$115 - $351' 351.43 < - 82040.74 = '$352 - $82,041' ; VALUE OBOOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.42 - 44.14 = '$1 - $44' 44.14 < - 122.11 = '$45 - $122' 122.11 < - 398.7 = '$123 - $399' 398.7 < - 15491.88 = '$400 - $15,492' ; VALUE OBOOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2 - 33.16 = '$2 - $33' 33.16 < - 81.2 = '$34 - $81' 81.2 < - 228.95 = '$82 - $229' 228.95 < - 3807.12 = '$230 - $3,807' ; VALUE OBOPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.13 - 13.21 = '$1 - $13' 13.21 < - 43.24 = '$14 - $43' 43.24 < - 176.85 = '$44 - $177' 176.85 < - 75234.03 = '$178 - $75,234' ; VALUE OBOSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.19 - 5 = '$1 - $5' 5 < - 16.42 = '$6 - $16' 16.42 < - 63.73 = '$17 - $64' 63.73 < - 42144.31 = '$65 - $42,144' ; VALUE OBOTRI 0 = '0' ; VALUE OBOVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.11 - 1.99 = '$1 - $2' 1.99 < - 6.08 = '$3 - $6' 6.08 < - 18.59 = '$7 - $19' 18.59 < - 912.2 = '$20 - $912' ; VALUE OBOWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.16 - 54.14 = '$1 - $54' 54.14 < - 154.45 = '$55 - $154' 154.45 < - 588.84 = '$155 - $589' 588.84 < - 14609.7 = '$590 - $14,610' ; VALUE OTHEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.79 - 143.46 = '$1 - $143' 143.46 < - 295.82 = '$144 - $296' 295.82 < - 538.37 = '$297 - $538' 538.37 < - 67923.55 = '$539 - $67,924' ; VALUE OTHMCD 0 = '0' ; VALUE OTHMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 8.3 - 807.41 = '$8 - $807' 807.41 < - 1572.49 = '$808 - $1,572' 1572.49 < - 3754.88 = '$1,573 - $3,755' 3754.88 < - 67187.35 = '$3,756 - $67,187' ; VALUE OTHOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.06 - 109.91 = '$7 - $110' 109.91 < - 244.23 = '$111 - $244' 244.23 < - 420.03 = '$245 - $420' 420.03 < - 8235.97 = '$421 - $8,236' ; VALUE OTHOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.22 - 45.96 = '$2 - $46' 45.96 < - 83.685 = '$47 - $84' 83.685 < - 214.47 = '$85 - $214' 214.47 < - 2305.09 = '$215 - $2,305' ; VALUE OTHPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.95 - 69.35 = '$1 - $69' 69.35 < - 136.935 = '$70 - $137' 136.935 < - 246.52 = '$138 - $247' 246.52 < - 17749.13 = '$248 - $17,749' ; VALUE OTHSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.79 - 107.69 = '$1 - $108' 107.69 < - 251.49 = '$109 - $251' 251.49 < - 465.72 = '$252 - $466' 465.72 < - 50714.52 = '$467 - $50,715' ; VALUE OTHTRI 0 = '0' ; VALUE OTHVA 0 = '0' ; VALUE OTHWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 164.59 - 1078.34 = '$164 - $1,078' 1078.34 < - 2135.735 = '$1,079 - $2,136' 2135.735 < - 4360.92 = '$2,137 - $4,361' 4360.92 < - 19806.49 = '$4,362 - $19,806' ; VALUE PHYEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.57 - 196.48 = '$1 - $196' 196.48 < - 511.95 = '$197 - $512' 511.95 < - 1533.3 = '$513 - $1,533' 1533.3 < - 149051.72 = '$1,534 - $149,052' ; VALUE PHYMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.51 - 106.71 = '$1 - $107' 106.71 < - 260.07 = '$108 - $260' 260.07 < - 716.7 = '$261 - $717' 716.7 < - 72291.56 = '$718 - $72,292' ; VALUE PHYMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.71 - 262.09 = '$1 - $262' 262.09 < - 777.43 = '$263 - $777' 777.43 < - 2209.56 = '$778 - $2,210' 2209.56 < - 103806.78 = '$2,211 - $103,807' ; VALUE PHYOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.44 - 63.47 = '$1 - $63' 63.47 < - 137.73 = '$64 - $138' 137.73 < - 350.51 = '$139 - $351' 350.51 < - 115949.58 = '$352 - $115,950' ; VALUE PHYOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1 - 47.96 = '$1 - $48' 47.96 < - 105.9 = '$49 - $106' 105.9 < - 305.17 = '$107 - $305' 305.17 < - 38936.76 = '$306 - $38,937' ; VALUE PHYPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.18 - 169.64 = '$2 - $170' 169.64 < - 416.18 = '$171 - $416' 416.18 < - 1155.82 = '$417 - $1,156' 1155.82 < - 124678.78 = '$1,157 - $124,679' ; VALUE PHYSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.52 - 30.44 = '$1 - $30' 30.44 < - 75.965 = '$31 - $76' 75.965 < - 194.82 = '$77 - $195' 194.82 < - 42646.87 = '$196 - $42,647' ; VALUE PHYTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.8 - 180.14 = '$7 - $180' 180.14 < - 532.315 = '$181 - $532' 532.315 < - 1360.595 = '$533 - $1,361' 1360.595 < - 131084.93 = '$1,362 - $131,085' ; VALUE PHYVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.43 - 22.91 = '$1 - $23' 22.91 < - 75.67 = '$24 - $76' 75.67 < - 251.65 = '$77 - $252' 251.65 < - 8681.42 = '$253 - $8,681' ; VALUE PHYWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.09 - 264.21 = '$6 - $264' 264.21 < - 670.33 = '$265 - $670' 670.33 < - 2132.88 = '$671 - $2,133' 2132.88 < - 69443.5 = '$2,134 - $69,444' ; 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.45 - 71.7 = '$1 - $72' 71.7 < - 299.16 = '$73 - $299' 299.16 < - 1186.59 = '$300 - $1,187' 1186.59 < - 310728.36 = '$1,188 - $310,728' ; VALUE RXMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.45 - 45.565 = '$1 - $46' 45.565 < - 146.535 = '$47 - $147' 146.535 < - 621.775 = '$148 - $622' 621.775 < - 249366.45 = '$623 - $249,366' ; VALUE RXMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 8.4 - 880.12 = '$8 - $880' 880.12 < - 2653.055 = '$881 - $2,653' 2653.055 < - 7127.99 = '$2,654 - $7,128' 7127.99 < - 309539.58 = '$7,129 - $309,540' ; VALUE RXOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 4.68 - 43.71 = '$4 - $44' 43.71 < - 168.515 = '$45 - $169' 168.515 < - 379.79 = '$170 - $380' 379.79 < - 4397.73 = '$381 - $4,398' ; VALUE RXOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.58 - 49.03 = '$1 - $49' 49.03 < - 244.41 = '$50 - $244' 244.41 < - 931.95 = '$245 - $932' 931.95 < - 38768.61 = '$933 - $38,769' ; VALUE RXPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.91 - 77.33 = '$1 - $77' 77.33 < - 296.12 = '$78 - $296' 296.12 < - 1085.13 = '$297 - $1,085' 1085.13 < - 84095.62 = '$1,086 - $84,096' ; VALUE RXSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.72 - 20.17 = '$1 - $20' 20.17 < - 78.43 = '$21 - $78' 78.43 < - 278.6 = '$79 - $279' 278.6 < - 26342.19 = '$280 - $26,342' ; VALUE RXTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.52 - 29.81 = '$1 - $30' 29.81 < - 141.62 = '$31 - $142' 141.62 < - 596.04 = '$143 - $596' 596.04 < - 21435.6 = '$597 - $21,436' ; VALUE RXVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.7 - 51.1 = '$1 - $51' 51.1 < - 219.96 = '$52 - $220' 219.96 < - 624.1 = '$221 - $624' 624.1 < - 15988.9 = '$625 - $15,989' ; VALUE RXWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.91 - 82.95 = '$1 - $83' 82.95 < - 212.63 = '$84 - $213' 212.63 < - 692.68 = '$214 - $693' 692.68 < - 21731.1 = '$694 - $21,731' ; VALUE SEX 1 = '1 Male' 2 = '2 Female' ; VALUE TOTEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.75 - 443.51 = '$1 - $444' 443.51 < - 1409.21 = '$445 - $1,409' 1409.21 < - 4734.83 = '$1,410 - $4,735' 4734.83 < - 1061140.62 = '$4,736 - $1,061,141' ; VALUE TOTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.88 - 214.14 = '$1 - $214' 214.14 < - 642.63 = '$215 - $643' 642.63 < - 2587.65 = '$644 - $2,588' 2587.65 < - 733191.07 = '$2,589 - $733,191' ; VALUE TOTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.33 - 472.05 = '$1 - $472' 472.05 < - 1915.765 = '$473 - $1,916' 1915.765 < - 8090.24 = '$1,917 - $8,090' 8090.24 < - 313736.24 = '$8,091 - $313,736' ; VALUE TOTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.42 - 80.77 = '$1 - $81' 80.77 < - 194.13 = '$82 - $194' 194.13 < - 518.74 = '$195 - $519' 518.74 < - 115949.58 = '$520 - $115,950' ; VALUE TOTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1 - 65.71 = '$1 - $66' 65.71 < - 204.99 = '$67 - $205' 204.99 < - 780.74 = '$206 - $781' 780.74 < - 61170.6 = '$782 - $61,171' ; VALUE TOTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.46 - 323.17 = '$1 - $323' 323.17 < - 963.47 = '$324 - $963' 963.47 < - 2973.14 = '$964 - $2,973' 2973.14 < - 1055242.51 = '$2,974 - $1,055,243' ; VALUE TOTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.72 - 80.08 = '$1 - $80' 80.08 < - 300.58 = '$81 - $301' 300.58 < - 865.6 = '$302 - $866' 865.6 < - 143127.34 = '$867 - $143,127' ; VALUE TOTTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.9 - 211.63 = '$1 - $212' 211.63 < - 710.94 = '$213 - $711' 710.94 < - 2068.07 = '$712 - $2,068' 2068.07 < - 178138.33 = '$2,069 - $178,138' ; VALUE TOTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.07 - 29.79 = '$1 - $30' 29.79 < - 169.05 = '$31 - $169' 169.05 < - 760.085 = '$170 - $760' 760.085 < - 300438.84 = '$761 - $300,439' ; VALUE TOTWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.26 - 255.92 = '$2 - $256' 255.92 < - 830.27 = '$257 - $830' 830.27 < - 2724.91 = '$831 - $2,725' 2724.91 < - 459177.75 = '$2,726 - $459,178' ; VALUE YESNO 0 = '0 No' 1 = '1 Yes' ;