SAS User File for PROJYR08 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 (PROJYR08.SSP) or the ASCII data file (PROJYR08.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\PROJYR08.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.PROJYR08; TITLE "List of Variables in MEPS PROJYR08 SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.PROJYR08 (OBS=20); TITLE "First 20 Observations in MEPS PROJYR08 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) PROJYR08 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 PROJYR08.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file PROJYR08.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 PROJYR08.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 PROJYR08.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\PROJYR08.DAT'; DATA PUFLIB.PROJYR08; INFILE IN1 LRECL=658; 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 (PROJYR08). In the example, after the successful completion of the DATA step, a PC file named PROJYR08.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 (658 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 PROJYR08.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., 658 for PROJYR08.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (660 for PROJYR08.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 (658 for PROJYR08.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 (PROJYR08.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.PROJYR08; 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 PROJYR08.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=658; 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 TOTEXP08 9.2 @28 TOTSLF08 9.2 @37 TOTPHI08 9.2 @46 TOTMCR08 9.2 @55 TOTMCD08 9.2 @64 TOTTRI08 9.2 @73 TOTVA08 9.2 @82 TOTWC08 9.2 @91 TOTOTP08 8.2 @99 TOTOSR08 8.2 @107 HOSEXP08 9.2 @116 HOSSLF08 9.2 @125 HOSPHI08 9.2 @134 HOSMCR08 9.2 @143 HOSMCD08 9.2 @152 HOSTRI08 9.2 @161 HOSVA08 9.2 @170 HOSWC08 9.2 @179 HOSOTP08 8.2 @187 HOSOSR08 8.2 @195 PHYEXP08 9.2 @204 PHYSLF08 8.2 @212 PHYPHI08 9.2 @221 PHYMCR08 8.2 @229 PHYMCD08 8.2 @237 PHYTRI08 9.2 @246 PHYVA08 7.2 @253 PHYWC08 8.2 @261 PHYOTP08 8.2 @269 PHYOSR08 8.2 @277 DVTEXP08 8.2 @285 DVTSLF08 8.2 @293 DVTPHI08 8.2 @301 DVTMCR08 7.2 @308 DVTMCD08 8.2 @316 DVTTRI08 4.2 @320 DVTVA08 6.2 @326 DVTWC08 4.2 @330 DVTOTP08 7.2 @337 DVTOSR08 8.2 @345 OBOEXP08 8.2 @353 OBOSLF08 8.2 @361 OBOPHI08 8.2 @369 OBOMCR08 8.2 @377 OBOMCD08 8.2 @385 OBOTRI08 4.2 @389 OBOVA08 6.2 @395 OBOWC08 8.2 @403 OBOOTP08 7.2 @410 OBOOSR08 8.2 @418 HHCEXP08 9.2 @427 HHCSLF08 8.2 @435 HHCPHI08 9.2 @444 HHCMCR08 8.2 @452 HHCMCD08 9.2 @461 HHCTRI08 7.2 @468 HHCVA08 8.2 @476 HHCWC08 8.2 @484 HHCOTP08 8.2 @492 HHCOSR08 7.2 @499 RXEXP08 9.2 @508 RXSLF08 8.2 @516 RXPHI08 8.2 @524 RXMCR08 9.2 @533 RXMCD08 9.2 @542 RXTRI08 8.2 @550 RXVA08 8.2 @558 RXWC08 8.2 @566 RXOTP08 8.2 @574 RXOSR08 7.2 @581 OTHEXP08 8.2 @589 OTHSLF08 8.2 @597 OTHPHI08 8.2 @605 OTHMCR08 8.2 @613 OTHMCD08 4.2 @617 OTHTRI08 4.2 @621 OTHVA08 4.2 @625 OTHWC08 8.2 @633 OTHOTP08 7.2 @640 OTHOSR08 7.2 @647 WTADJ08 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. TOTEXP08 TOTEXP. TOTSLF08 TOTSLF. TOTPHI08 TOTPHI. TOTMCR08 TOTMCR. TOTMCD08 TOTMCD. TOTTRI08 TOTTRI. TOTVA08 TOTVA. TOTWC08 TOTWC. TOTOTP08 TOTOTP. TOTOSR08 TOTOSR. HOSEXP08 HOSEXP. HOSSLF08 HOSSLF. HOSPHI08 HOSPHI. HOSMCR08 HOSMCR. HOSMCD08 HOSMCD. HOSTRI08 HOSTRI. HOSVA08 HOSVA. HOSWC08 HOSWC. HOSOTP08 HOSOTP. HOSOSR08 HOSOSR. PHYEXP08 PHYEXP. PHYSLF08 PHYSLF. PHYPHI08 PHYPHI. PHYMCR08 PHYMCR. PHYMCD08 PHYMCD. PHYTRI08 PHYTRI. PHYVA08 PHYVA. PHYWC08 PHYWC. PHYOTP08 PHYOTP. PHYOSR08 PHYOSR. DVTEXP08 DVTEXP. DVTSLF08 DVTSLF. DVTPHI08 DVTPHI. DVTMCR08 DVTMCR. DVTMCD08 DVTMCD. DVTTRI08 DVTTRI. DVTVA08 DVTVA. DVTWC08 DVTWC. DVTOTP08 DVTOTP. DVTOSR08 DVTOSR. OBOEXP08 OBOEXP. OBOSLF08 OBOSLF. OBOPHI08 OBOPHI. OBOMCR08 OBOMCR. OBOMCD08 OBOMCD. OBOTRI08 OBOTRI. OBOVA08 OBOVA. OBOWC08 OBOWC. OBOOTP08 OBOOTP. OBOOSR08 OBOOSR. HHCEXP08 HHCEXP. HHCSLF08 HHCSLF. HHCPHI08 HHCPHI. HHCMCR08 HHCMCR. HHCMCD08 HHCMCD. HHCTRI08 HHCTRI. HHCVA08 HHCVA. HHCWC08 HHCWC. HHCOTP08 HHCOTP. HHCOSR08 HHCOSR. RXEXP08 RXEXP. RXSLF08 RXSLF. RXPHI08 RXPHI. RXMCR08 RXMCR. RXMCD08 RXMCD. RXTRI08 RXTRI. RXVA08 RXVA. RXWC08 RXWC. RXOTP08 RXOTP. RXOSR08 RXOSR. OTHEXP08 OTHEXP. OTHSLF08 OTHSLF. OTHPHI08 OTHPHI. OTHMCR08 OTHMCR. OTHMCD08 OTHMCD. OTHTRI08 OTHTRI. OTHVA08 OTHVA. OTHWC08 OTHWC. OTHOTP08 OTHOTP. OTHOSR08 OTHOSR. WTADJ08 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' TOTEXP08='TOTAL, PAID BY TOTAL, 2008' TOTSLF08='TOTAL, PAID BY OUT OF POCKET, 2008' TOTPHI08='TOTAL, PAID BY PRIV INSU, 2008' TOTMCR08='TOTAL, PAID BY MEDICARE, 2008' TOTMCD08='TOTAL, PAID BY MEDICAID, 2008' TOTTRI08='TOTAL, PAID BY TRICARE, 2008' TOTVA08 ='TOTAL, PAID BY VA, 2008' TOTWC08 ='TOTAL, PAID BY WORKERS COMP, 2008' TOTOTP08='TOTAL, PAID BY OTHER PUBLIC, 2008' TOTOSR08='TOTAL, PAID BY OTHER, 2008' HOSEXP08='HOSPITAL, PAID BY TOTAL, 2008' HOSSLF08='HOSPITAL, PAID BY OUT OF POCKET, 2008' HOSPHI08='HOSPITAL, PAID BY PRIV INSU, 2008' HOSMCR08='HOSPITAL, PAID BY MEDICARE, 2008' HOSMCD08='HOSPITAL, PAID BY MEDICAID, 2008' HOSTRI08='HOSPITAL, PAID BY TRICARE, 2008' HOSVA08 ='HOSPITAL, PAID BY VA, 2008' HOSWC08 ='HOSPITAL, PAID BY WORKERS COMP, 2008' HOSOTP08='HOSPITAL, PAID BY OTHER PUBLIC, 2008' HOSOSR08='HOSPITAL, PAID BY OTHER, 2008' PHYEXP08='PHYSICIAN, PAID BY TOTAL, 2008' PHYSLF08='PHYSICIAN, PAID BY OUT OF POCKET, 2008' PHYPHI08='PHYSICIAN, PAID BY PRIV INSU, 2008' PHYMCR08='PHYSICIAN, PAID BY MEDICARE, 2008' PHYMCD08='PHYSICIAN, PAID BY MEDICAID, 2008' PHYTRI08='PHYSICIAN, PAID BY TRICARE, 2008' PHYVA08 ='PHYSICIAN, PAID BY VA, 2008' PHYWC08 ='PHYSICIAN, PAID BY WORKERS COMP, 2008' PHYOTP08='PHYSICIAN, PAID BY OTHER PUBLIC, 2008' PHYOSR08='PHYSICIAN, PAID BY OTHER, 2008' DVTEXP08='DENTAL, PAID BY TOTAL, 2008' DVTSLF08='DENTAL, PAID BY OUT OF POCKET, 2008' DVTPHI08='DENTAL, PAID BY PRIV INSU, 2008' DVTMCR08='DENTAL, PAID BY MEDICARE, 2008' DVTMCD08='DENTAL, PAID BY MEDICAID, 2008' DVTTRI08='DENTAL, PAID BY TRICARE, 2008' DVTVA08 ='DENTAL, PAID BY VA, 2008' DVTWC08 ='DENTAL, PAID BY WORKERS COMP, 2008' DVTOTP08='DENTAL, PAID BY OTHER PUBLIC, 2008' DVTOSR08='DENTAL, PAID BY OTHER, 2008' OBOEXP08='OTHER PROVIDER, PAID BY TOTAL, 2008' OBOSLF08='OTHER PROVIDER, BY OUT OF POCKET, 2008' OBOPHI08='OTHER PROVIDER, PAID BY PRIV INSU, 2008' OBOMCR08='OTHER PROVIDER, PAID BY MEDICARE, 2008' OBOMCD08='OTHER PROVIDER, PAID BY MEDICAID, 2008' OBOTRI08='OTHER PROVIDER, PAID BY TRICARE, 2008' OBOVA08 ='OTHER PROVIDER, PAID BY VA, 2008' OBOWC08 ='OTHER PROVIDER, BY WORKERS COMP, 2008' OBOOTP08='OTHER PROVIDER, BY OTHER PUBLIC, 2008' OBOOSR08='OTHER PROVIDER, PAID BY OTHER, 2008' HHCEXP08='HOME HEALTH, PAID BY TOTAL, 2008' HHCSLF08='HOME HEALTH, PAID BY OUT OF POCKET, 2008' HHCPHI08='HOME HEALTH, PAID BY PRIV INSU, 2008' HHCMCR08='HOME HEALTH, PAID BY MEDICARE, 2008' HHCMCD08='HOME HEALTH, PAID BY MEDICAID, 2008' HHCTRI08='HOME HEALTH, PAID BY TRICARE, 2008' HHCVA08 ='HOME HEALTH, PAID BY VA, 2008' HHCWC08 ='HOME HEALTH, PAID BY WORKERS COMP, 2008' HHCOTP08='HOME HEALTH, PAID BY OTHER PUBLIC, 2008' HHCOSR08='HOME HEALTH, PAID BY OTHER, 2008' RXEXP08 ='RX, PAID BY TOTAL, 2008' RXSLF08 ='RX, PAID BY OUT OF POCKET, 2008' RXPHI08 ='RX, PAID BY PRIV INSU, 2008' RXMCR08 ='RX, PAID BY MEDICARE, 2008' RXMCD08 ='RX, PAID BY MEDICAID, 2008' RXTRI08 ='RX, PAID BY TRICARE, 2008' RXVA08 ='RX, PAID BY VA, 2008' RXWC08 ='RX, PAID BY WORKERS COMP, 2008' RXOTP08 ='RX, PAID BY OTHER PUBLIC, 2008' RXOSR08 ='RX, PAID BY OTHER, 2008' OTHEXP08='OTHER MEDICAL, PAID BY TOTAL, 2008' OTHSLF08='OTHER MEDICAL, BY OUT OF POCKET, 2008' OTHPHI08='OTHER MEDICAL, PAID BY PRIV INSU, 2008' OTHMCR08='OTHER MEDICAL, PAID BY MEDICARE, 2008' OTHMCD08='OTHER MEDICAL, PAID BY MEDICAID, 2008' OTHTRI08='OTHER MEDICAL, PAID BY TRICARE, 2008' OTHVA08 ='OTHER MEDICAL, PAID BY VA, 2008' OTHWC08 ='OTHER MEDICAL, BY WORKERS COMP, 2008' OTHOTP08='OTHER MEDICAL, PAID BY OTHR PUBLIC, 2008' OTHOSR08='OTHER MEDICAL, PAID BY OTHER, 2008' WTADJ08 ='GROWTH/FERTILITY/MORTALITY ADJ WGT,2008' ; * 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.19 - 138.65 = '$1 - $139' 138.65 < - 272.62 = '$140 - $273' 272.62 < - 636.35 = '$274 - $636' 636.35 < - 25667.83 = '$637 - $25,668' ; VALUE DVTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.01 - 88.65 = '$2 - $89' 88.65 < - 156.83 = '$90 - $157' 156.83 < - 326.21 = '$158 - $326' 326.21 < - 13603.2 = '$327 - $13,603' ; VALUE DVTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.12 - 22.47 = '$2 - $22' 22.47 < - 46.28 = '$23 - $46' 46.28 < - 118.975 = '$47 - $119' 118.975 < - 2411.23 = '$120 - $2,411' ; VALUE DVTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.23 - 99.24 = '$1 - $99' 99.24 < - 201.03 = '$100 - $201' 201.03 < - 368.97 = '$202 - $369' 368.97 < - 12184.87 = '$370 - $12,185' ; VALUE DVTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 14.1 - 81.05 = '$14 - $81' 81.05 < - 161.49 = '$82 - $161' 161.49 < - 451.39 = '$162 - $451' 451.39 < - 5645.14 = '$452 - $5,645' ; VALUE DVTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.61 - 150.53 = '$1 - $151' 150.53 < - 267.49 = '$152 - $267' 267.49 < - 551.515 = '$268 - $552' 551.515 < - 23013.64 = '$553 - $23,014' ; VALUE DVTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.27 - 53.43 = '$1 - $53' 53.43 < - 142.61 = '$54 - $143' 142.61 < - 393.51 = '$144 - $394' 393.51 < - 22081.23 = '$395 - $22,081' ; VALUE DVTTRI 0 = '0' ; VALUE DVTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.04 - 2.04 = '$1 - $2' 2.04 < - 4.705 = '$3 - $5' 4.705 < - 16.79 = '$6 - $17' 16.79 < - 185.83 = '$18 - $186' ; VALUE DVTWC 0 = '0' ; VALUE GTZERO 0 = '0' 0 < - HIGH = '>0' ; VALUE HHCEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.98 - 1100.05 = '$6 - $1,100' 1100.05 < - 4322.64 = '$1,101 - $4,323' 4322.64 < - 11709.65 = '$4,324 - $11,710' 11709.65 < - 272397.4 = '$11,711 - $272,397' ; VALUE HHCMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 4.55 - 883.03 = '$4 - $883' 883.03 < - 4047.75 = '$884 - $4,048' 4047.75 < - 13289.38 = '$4,049 - $13,289' 13289.38 < - 208087.46 = '$13,290 - $208,087' ; VALUE HHCMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 17.23 - 2017.54 = '$17 - $2,018' 2017.54 < - 4561.255 = '$2,019 - $4,561' 4561.255 < - 10224.54 = '$4,562 - $10,225' 10224.54 < - 81907.64 = '$10,226 - $81,908' ; VALUE HHCOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 63.39 - 156.41 = '$63 - $156' 156.41 < - 358.81 = '$157 - $359' 358.81 < - 1017.83 = '$360 - $1,018' 1017.83 < - 3055.87 = '$1,019 - $3,056' ; VALUE HHCOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 16.65 - 353.85 = '$16 - $354' 353.85 < - 884.865 = '$355 - $885' 884.865 < - 2303.33 = '$886 - $2,303' 2303.33 < - 17375.07 = '$2,304 - $17,375' ; VALUE HHCPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 37.74 - 791.245 = '$37 - $791' 791.245 < - 2541.03 = '$792 - $2,541' 2541.03 < - 7777.89 = '$2,542 - $7,778' 7777.89 < - 128541.99 = '$7,779 - $128,542' ; VALUE HHCSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.98 - 122.23 = '$6 - $122' 122.23 < - 424.79 = '$123 - $425' 424.79 < - 1426.62 = '$426 - $1,427' 1426.62 < - 83396.42 = '$1,428 - $83,396' ; VALUE HHCTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.38 - 53.01 = '$6 - $53' 53.01 < - 172.57 = '$54 - $173' 172.57 < - 460.265 = '$174 - $460' 460.265 < - 1786.79 = '$461 - $1,787' ; VALUE HHCVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 177.87 - 1696.16 = '$177 - $1,696' 1696.16 < - 4446.83 = '$1,697 - $4,447' 4446.83 < - 10130.83 = '$4,448 - $10,131' 10130.83 < - 46247.06 = '$10,132 - $46,247' ; VALUE HHCWC 0 = '0' 20000 - 40000 = '$20,000 - $40,000' ; VALUE HOSEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.68 - 254.79 = '$2 - $255' 254.79 < - 961.755 = '$256 - $962' 961.755 < - 4224.915 = '$963 - $4,225' 4224.915 < - 795160.29 = '$4,226 - $795,160' ; VALUE HOSMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.52 - 169.205 = '$1 - $169' 169.205 < - 631.13 = '$170 - $631' 631.13 < - 3093.435 = '$632 - $3,093' 3093.435 < - 599168.8 = '$3,094 - $599,169' ; VALUE HOSMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.13 - 205.2 = '$1 - $205' 205.2 < - 1062.58 = '$206 - $1,063' 1062.58 < - 6429.875 = '$1,064 - $6,430' 6429.875 < - 204227.57 = '$6,431 - $204,228' ; VALUE HOSOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.4 - 102.87 = '$2 - $103' 102.87 < - 334.36 = '$104 - $334' 334.36 < - 1255.2 = '$335 - $1,255' 1255.2 < - 67223.06 = '$1,256 - $67,223' ; VALUE HOSOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.56 - 89.43 = '$6 - $89' 89.43 < - 277.235 = '$90 - $277' 277.235 < - 1144.65 = '$278 - $1,145' 1144.65 < - 57663.86 = '$1,146 - $57,664' ; VALUE HOSPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.34 - 226.95 = '$1 - $227' 226.95 < - 827.68 = '$228 - $828' 827.68 < - 2791.57 = '$829 - $2,792' 2791.57 < - 795160.29 = '$2,793 - $795,160' ; VALUE HOSSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.56 - 40.45 = '$1 - $40' 40.45 < - 121.34 = '$41 - $121' 121.34 < - 404.47 = '$122 - $404' 404.47 < - 101214.17 = '$405 - $101,214' ; VALUE HOSTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.71 - 55.68 = '$1 - $56' 55.68 < - 202.83 = '$57 - $203' 202.83 < - 667.275 = '$204 - $667' 667.275 < - 128485.57 = '$668 - $128,486' ; VALUE HOSVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.28 - 174.73 = '$1 - $175' 174.73 < - 695.915 = '$176 - $696' 695.915 < - 2867.605 = '$697 - $2,868' 2867.605 < - 266679.59 = '$2,869 - $266,680' ; VALUE HOSWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.14 - 82.83 = '$2 - $83' 82.83 < - 232.27 = '$84 - $232' 232.27 < - 758.83 = '$233 - $759' 758.83 < - 353583.21 = '$760 - $353,583' ; VALUE $ID 'N0000108' - 'N7338008' = 'N0000108 - N7338008' ; 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.12 - 17.61 = '$1 - $18' 17.61 < - 64.73 = '$19 - $65' 64.73 < - 258.57 = '$66 - $259' 258.57 < - 78515.01 = '$260 - $78,515' ; VALUE OBOMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.11 - 9.13 = '$1 - $9' 9.13 < - 26.48 = '$10 - $26' 26.48 < - 104.17 = '$27 - $104' 104.17 < - 63862.53 = '$105 - $63,863' ; VALUE OBOMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.12 - 26.63 = '$1 - $27' 26.63 < - 100.49 = '$28 - $100' 100.49 < - 309.83 = '$101 - $310' 309.83 < - 72328.19 = '$311 - $72,328' ; VALUE OBOOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.21 - 37.8 = '$1 - $38' 37.8 < - 104.58 = '$39 - $105' 104.58 < - 341.45 = '$106 - $341' 341.45 < - 13267.25 = '$342 - $13,267' ; VALUE OBOOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.99 - 33.1 = '$1 - $33' 33.1 < - 81.05 = '$34 - $81' 81.05 < - 228.53 = '$82 - $229' 228.53 < - 3800.18 = '$230 - $3,800' ; VALUE OBOPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.11 - 11.62 = '$1 - $12' 11.62 < - 38.06 = '$13 - $38' 38.06 < - 155.65 = '$39 - $156' 155.65 < - 66216.67 = '$157 - $66,217' ; VALUE OBOSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.16 - 4.06 = '$1 - $4' 4.06 < - 13.33 = '$5 - $13' 13.33 < - 51.76 = '$14 - $52' 51.76 < - 34230.99 = '$53 - $34,231' ; VALUE OBOTRI 0 = '0' ; VALUE OBOVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.11 - 1.94 = '$1 - $2' 1.94 < - 5.93 = '$3 - $6' 5.93 < - 18.13 = '$7 - $18' 18.13 < - 889.49 = '$19 - $889' ; VALUE OBOWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.09 - 51.07 = '$1 - $51' 51.07 < - 145.69 = '$52 - $146' 145.69 < - 555.44 = '$147 - $555' 555.44 < - 13781 = '$556 - $13,781' ; VALUE OTHEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.71 - 135.94 = '$1 - $136' 135.94 < - 279.86 = '$137 - $280' 279.86 < - 508.35 = '$281 - $508' 508.35 < - 58635.24 = '$509 - $58,635' ; VALUE OTHMCD 0 = '0' ; VALUE OTHMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.16 - 696.33 = '$7 - $696' 696.33 < - 1356.145 = '$697 - $1,356' 1356.145 < - 3238.29 = '$1,357 - $3,238' 3238.29 < - 57943.82 = '$3,239 - $57,944' ; VALUE OTHOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.34 - 98.64 = '$6 - $99' 98.64 < - 219.21 = '$100 - $219' 219.21 < - 377 = '$220 - $377' 377 < - 7392.12 = '$378 - $7,392' ; VALUE OTHOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.49 - 51.58 = '$2 - $52' 51.58 < - 93.93 = '$53 - $94' 93.93 < - 240.73 = '$95 - $241' 240.73 < - 2587.25 = '$242 - $2,587' ; VALUE OTHPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.88 - 64.6 = '$1 - $65' 64.6 < - 127.55 = '$66 - $128' 127.55 < - 229.63 = '$129 - $230' 229.63 < - 16533.16 = '$231 - $16,533' ; VALUE OTHSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.71 - 102.39 = '$1 - $102' 102.39 < - 239.12 = '$103 - $239' 239.12 < - 442.82 = '$240 - $443' 442.82 < - 48220.98 = '$444 - $48,221' ; VALUE OTHTRI 0 = '0' ; VALUE OTHVA 0 = '0' ; VALUE OTHWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 165.44 - 1083.89 = '$165 - $1,084' 1083.89 < - 2146.745 = '$1,085 - $2,147' 2146.745 < - 4383.39 = '$2,148 - $4,383' 4383.39 < - 19908.57 = '$4,384 - $19,909' ; VALUE PHYEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.32 - 163.18 = '$1 - $163' 163.18 < - 425.94 = '$164 - $426' 425.94 < - 1290.33 = '$427 - $1,290' 1290.33 < - 126409 = '$1,291 - $126,409' ; VALUE PHYMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.27 - 89.56 = '$1 - $90' 89.56 < - 218.26 = '$91 - $218' 218.26 < - 601.47 = '$219 - $601' 601.47 < - 60668.97 = '$602 - $60,669' ; VALUE PHYMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.56 - 239.3 = '$1 - $239' 239.3 < - 709.82 = '$240 - $710' 709.82 < - 2017.4 = '$711 - $2,017' 2017.4 < - 94778.99 = '$2,018 - $94,779' ; VALUE PHYOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.23 - 54.27 = '$1 - $54' 54.27 < - 117.77 = '$55 - $118' 117.77 < - 299.7 = '$119 - $300' 299.7 < - 99141.6 = '$301 - $99,142' ; VALUE PHYOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1 - 48.03 = '$1 - $48' 48.03 < - 106.04 = '$49 - $106' 106.04 < - 305.59 = '$107 - $306' 305.59 < - 38989.53 = '$307 - $38,990' ; VALUE PHYPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.78 - 138.5 = '$1 - $139' 138.5 < - 339.78 = '$140 - $340' 339.78 < - 943.63 = '$341 - $944' 943.63 < - 101790.48 = '$945 - $101,790' ; VALUE PHYSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.26 - 25.1 = '$1 - $25' 25.1 < - 62.645 = '$26 - $63' 62.645 < - 160.67 = '$64 - $161' 160.67 < - 35170.81 = '$162 - $35,171' ; VALUE PHYTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.53 - 150.805 = '$6 - $151' 150.805 < - 445.62 = '$152 - $446' 445.62 < - 1138.995 = '$447 - $1,139' 1138.995 < - 109735.54 = '$1,140 - $109,736' ; VALUE PHYVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.37 - 19.78 = '$1 - $20' 19.78 < - 65.33 = '$21 - $65' 65.33 < - 217.28 = '$66 - $217' 217.28 < - 7495.85 = '$218 - $7,496' ; VALUE PHYWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.2 - 225.62 = '$5 - $226' 225.62 < - 572.43 = '$227 - $572' 572.43 < - 1821.38 = '$573 - $1,821' 1821.38 < - 59301.65 = '$1,822 - $59,302' ; 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 - 58.16 = '$1 - $58' 58.16 < - 244.25 = '$59 - $244' 244.25 < - 968.75 = '$245 - $969' 968.75 < - 221283.84 = '$970 - $221,284' ; VALUE RXMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.35 - 35.39 = '$1 - $35' 35.39 < - 113.8 = '$36 - $114' 113.8 < - 482.875 = '$115 - $483' 482.875 < - 193660.68 = '$484 - $193,661' ; VALUE RXMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.97 - 626.34 = '$5 - $626' 626.34 < - 1888.055 = '$627 - $1,888' 1888.055 < - 5072.66 = '$1,889 - $5,073' 5072.66 < - 220285.05 = '$5,074 - $220,285' ; VALUE RXOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.85 - 35.93 = '$3 - $36' 35.93 < - 138.5 = '$37 - $139' 138.5 < - 312.15 = '$140 - $312' 312.15 < - 3614.49 = '$313 - $3,614' ; VALUE RXOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.45 - 45.035 = '$1 - $45' 45.035 < - 224.515 = '$46 - $225' 224.515 < - 856.11 = '$226 - $856' 856.11 < - 35613.5 = '$857 - $35,614' ; VALUE RXPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.56 - 63.17 = '$1 - $63' 63.17 < - 241.91 = '$64 - $242' 241.91 < - 886.47 = '$243 - $886' 886.47 < - 68699.26 = '$887 - $68,699' ; VALUE RXSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.6 - 16.95 = '$1 - $17' 16.95 < - 65.93 = '$18 - $66' 65.93 < - 234.19 = '$67 - $234' 234.19 < - 22143.46 = '$235 - $22,143' ; VALUE RXTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.43 - 24.56 = '$1 - $25' 24.56 < - 116.65 = '$26 - $117' 116.65 < - 490.95 = '$118 - $491' 490.95 < - 17656.01 = '$492 - $17,656' ; VALUE RXVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.59 - 43.21 = '$1 - $43' 43.21 < - 185.98 = '$44 - $186' 185.98 < - 527.69 = '$187 - $528' 527.69 < - 13518.91 = '$529 - $13,519' ; VALUE RXWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.57 - 68.2 = '$1 - $68' 68.2 < - 174.81 = '$69 - $175' 174.81 < - 569.46 = '$176 - $569' 569.46 < - 17865.46 = '$570 - $17,865' ; VALUE SEX 1 = '1 Male' 2 = '2 Female' ; VALUE TOTEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.63 - 368.63 = '$1 - $369' 368.63 < - 1172.72 = '$370 - $1,173' 1172.72 < - 3931.9 = '$1,174 - $3,932' 3931.9 < - 863088.32 = '$3,933 - $863,088' ; VALUE TOTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.68 - 172.29 = '$1 - $172' 172.29 < - 517.035 = '$173 - $517' 517.035 < - 2080.45 = '$518 - $2,080' 2080.45 < - 608127.07 = '$2,081 - $608,127' ; VALUE TOTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.13 - 424.01 = '$1 - $424' 424.01 < - 1667.75 = '$425 - $1,668' 1667.75 < - 6788.61 = '$1,669 - $6,789' 6788.61 < - 242042.47 = '$6,790 - $242,042' ; VALUE TOTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.21 - 69.07 = '$1 - $69' 69.07 < - 165.4 = '$70 - $165' 165.4 < - 442.91 = '$166 - $443' 442.91 < - 99141.6 = '$444 - $99,142' ; VALUE TOTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1 - 65.3 = '$1 - $65' 65.3 < - 204.58 = '$66 - $205' 204.58 < - 767.38 = '$206 - $767' 767.38 < - 57663.86 = '$768 - $57,664' ; VALUE TOTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.29 - 266.23 = '$1 - $266' 266.23 < - 793.91 = '$267 - $794' 793.91 < - 2445.28 = '$795 - $2,445' 2445.28 < - 858293.84 = '$2,446 - $858,294' ; VALUE TOTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.6 - 66.68 = '$1 - $67' 66.68 < - 253.66 = '$68 - $254' 253.66 < - 733.52 = '$255 - $734' 733.52 < - 116291.93 = '$735 - $116,292' ; VALUE TOTTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.71 - 176.41 = '$1 - $176' 176.41 < - 590.81 = '$177 - $591' 590.81 < - 1709.09 = '$592 - $1,709' 1709.09 < - 142442.13 = '$1,710 - $142,442' ; VALUE TOTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.08 - 25.95 = '$1 - $26' 25.95 < - 145.24 = '$27 - $145' 145.24 < - 660.84 = '$146 - $661' 660.84 < - 266885.43 = '$662 - $266,885' ; VALUE TOTWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.14 - 232.27 = '$2 - $232' 232.27 < - 735 = '$233 - $735' 735 < - 2384.98 = '$736 - $2,385' 2384.98 < - 425999.9 = '$2,386 - $426,000' ; VALUE YESNO 0 = '0 No' 1 = '1 Yes' ;