SAS User File for PROJYR09 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 (PROJYR09.SSP) or the ASCII data file (PROJYR09.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\PROJYR09.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.PROJYR09; TITLE "List of Variables in MEPS PROJYR09 SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.PROJYR09 (OBS=20); TITLE "First 20 Observations in MEPS PROJYR09 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) PROJYR09 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 PROJYR09.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file PROJYR09.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 PROJYR09.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 PROJYR09.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\PROJYR09.DAT'; DATA PUFLIB.PROJYR09; INFILE IN1 LRECL=660; 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 (PROJYR09). In the example, after the successful completion of the DATA step, a PC file named PROJYR09.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 (660 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 PROJYR09.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., 660 for PROJYR09.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (662 for PROJYR09.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 (660 for PROJYR09.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 (PROJYR09.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.PROJYR09; 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 PROJYR09.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=660; 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 TOTEXP09 9.2 @28 TOTSLF09 9.2 @37 TOTPHI09 9.2 @46 TOTMCR09 9.2 @55 TOTMCD09 9.2 @64 TOTTRI09 9.2 @73 TOTVA09 9.2 @82 TOTWC09 9.2 @91 TOTOTP09 8.2 @99 TOTOSR09 9.2 @108 HOSEXP09 9.2 @117 HOSSLF09 9.2 @126 HOSPHI09 9.2 @135 HOSMCR09 9.2 @144 HOSMCD09 9.2 @153 HOSTRI09 9.2 @162 HOSVA09 9.2 @171 HOSWC09 9.2 @180 HOSOTP09 8.2 @188 HOSOSR09 8.2 @196 PHYEXP09 9.2 @205 PHYSLF09 8.2 @213 PHYPHI09 9.2 @222 PHYMCR09 8.2 @230 PHYMCD09 8.2 @238 PHYTRI09 9.2 @247 PHYVA09 7.2 @254 PHYWC09 8.2 @262 PHYOTP09 8.2 @270 PHYOSR09 9.2 @279 DVTEXP09 8.2 @287 DVTSLF09 8.2 @295 DVTPHI09 8.2 @303 DVTMCR09 7.2 @310 DVTMCD09 8.2 @318 DVTTRI09 4.2 @322 DVTVA09 6.2 @328 DVTWC09 4.2 @332 DVTOTP09 7.2 @339 DVTOSR09 8.2 @347 OBOEXP09 8.2 @355 OBOSLF09 8.2 @363 OBOPHI09 8.2 @371 OBOMCR09 8.2 @379 OBOMCD09 8.2 @387 OBOTRI09 4.2 @391 OBOVA09 6.2 @397 OBOWC09 8.2 @405 OBOOTP09 7.2 @412 OBOOSR09 8.2 @420 HHCEXP09 9.2 @429 HHCSLF09 8.2 @437 HHCPHI09 9.2 @446 HHCMCR09 8.2 @454 HHCMCD09 9.2 @463 HHCTRI09 7.2 @470 HHCVA09 8.2 @478 HHCWC09 8.2 @486 HHCOTP09 8.2 @494 HHCOSR09 7.2 @501 RXEXP09 9.2 @510 RXSLF09 8.2 @518 RXPHI09 8.2 @526 RXMCR09 9.2 @535 RXMCD09 9.2 @544 RXTRI09 8.2 @552 RXVA09 8.2 @560 RXWC09 8.2 @568 RXOTP09 8.2 @576 RXOSR09 7.2 @583 OTHEXP09 8.2 @591 OTHSLF09 8.2 @599 OTHPHI09 8.2 @607 OTHMCR09 8.2 @615 OTHMCD09 4.2 @619 OTHTRI09 4.2 @623 OTHVA09 4.2 @627 OTHWC09 8.2 @635 OTHOTP09 7.2 @642 OTHOSR09 7.2 @649 WTADJ09 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. TOTEXP09 TOTEXP. TOTSLF09 TOTSLF. TOTPHI09 TOTPHI. TOTMCR09 TOTMCR. TOTMCD09 TOTMCD. TOTTRI09 TOTTRI. TOTVA09 TOTVA. TOTWC09 TOTWC. TOTOTP09 TOTOTP. TOTOSR09 TOTOSR. HOSEXP09 HOSEXP. HOSSLF09 HOSSLF. HOSPHI09 HOSPHI. HOSMCR09 HOSMCR. HOSMCD09 HOSMCD. HOSTRI09 HOSTRI. HOSVA09 HOSVA. HOSWC09 HOSWC. HOSOTP09 HOSOTP. HOSOSR09 HOSOSR. PHYEXP09 PHYEXP. PHYSLF09 PHYSLF. PHYPHI09 PHYPHI. PHYMCR09 PHYMCR. PHYMCD09 PHYMCD. PHYTRI09 PHYTRI. PHYVA09 PHYVA. PHYWC09 PHYWC. PHYOTP09 PHYOTP. PHYOSR09 PHYOSR. DVTEXP09 DVTEXP. DVTSLF09 DVTSLF. DVTPHI09 DVTPHI. DVTMCR09 DVTMCR. DVTMCD09 DVTMCD. DVTTRI09 DVTTRI. DVTVA09 DVTVA. DVTWC09 DVTWC. DVTOTP09 DVTOTP. DVTOSR09 DVTOSR. OBOEXP09 OBOEXP. OBOSLF09 OBOSLF. OBOPHI09 OBOPHI. OBOMCR09 OBOMCR. OBOMCD09 OBOMCD. OBOTRI09 OBOTRI. OBOVA09 OBOVA. OBOWC09 OBOWC. OBOOTP09 OBOOTP. OBOOSR09 OBOOSR. HHCEXP09 HHCEXP. HHCSLF09 HHCSLF. HHCPHI09 HHCPHI. HHCMCR09 HHCMCR. HHCMCD09 HHCMCD. HHCTRI09 HHCTRI. HHCVA09 HHCVA. HHCWC09 HHCWC. HHCOTP09 HHCOTP. HHCOSR09 HHCOSR. RXEXP09 RXEXP. RXSLF09 RXSLF. RXPHI09 RXPHI. RXMCR09 RXMCR. RXMCD09 RXMCD. RXTRI09 RXTRI. RXVA09 RXVA. RXWC09 RXWC. RXOTP09 RXOTP. RXOSR09 RXOSR. OTHEXP09 OTHEXP. OTHSLF09 OTHSLF. OTHPHI09 OTHPHI. OTHMCR09 OTHMCR. OTHMCD09 OTHMCD. OTHTRI09 OTHTRI. OTHVA09 OTHVA. OTHWC09 OTHWC. OTHOTP09 OTHOTP. OTHOSR09 OTHOSR. WTADJ09 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' TOTEXP09='TOTAL, PAID BY TOTAL, 2009' TOTSLF09='TOTAL, PAID BY OUT OF POCKET, 2009' TOTPHI09='TOTAL, PAID BY PRIV INSU, 2009' TOTMCR09='TOTAL, PAID BY MEDICARE, 2009' TOTMCD09='TOTAL, PAID BY MEDICAID, 2009' TOTTRI09='TOTAL, PAID BY TRICARE, 2009' TOTVA09 ='TOTAL, PAID BY VA, 2009' TOTWC09 ='TOTAL, PAID BY WORKERS COMP, 2009' TOTOTP09='TOTAL, PAID BY OTHER PUBLIC, 2009' TOTOSR09='TOTAL, PAID BY OTHER, 2009' HOSEXP09='HOSPITAL, PAID BY TOTAL, 2009' HOSSLF09='HOSPITAL, PAID BY OUT OF POCKET, 2009' HOSPHI09='HOSPITAL, PAID BY PRIV INSU, 2009' HOSMCR09='HOSPITAL, PAID BY MEDICARE, 2009' HOSMCD09='HOSPITAL, PAID BY MEDICAID, 2009' HOSTRI09='HOSPITAL, PAID BY TRICARE, 2009' HOSVA09 ='HOSPITAL, PAID BY VA, 2009' HOSWC09 ='HOSPITAL, PAID BY WORKERS COMP, 2009' HOSOTP09='HOSPITAL, PAID BY OTHER PUBLIC, 2009' HOSOSR09='HOSPITAL, PAID BY OTHER, 2009' PHYEXP09='PHYSICIAN, PAID BY TOTAL, 2009' PHYSLF09='PHYSICIAN, PAID BY OUT OF POCKET, 2009' PHYPHI09='PHYSICIAN, PAID BY PRIV INSU, 2009' PHYMCR09='PHYSICIAN, PAID BY MEDICARE, 2009' PHYMCD09='PHYSICIAN, PAID BY MEDICAID, 2009' PHYTRI09='PHYSICIAN, PAID BY TRICARE, 2009' PHYVA09 ='PHYSICIAN, PAID BY VA, 2009' PHYWC09 ='PHYSICIAN, PAID BY WORKERS COMP, 2009' PHYOTP09='PHYSICIAN, PAID BY OTHER PUBLIC, 2009' PHYOSR09='PHYSICIAN, PAID BY OTHER, 2009' DVTEXP09='DENTAL, PAID BY TOTAL, 2009' DVTSLF09='DENTAL, PAID BY OUT OF POCKET, 2009' DVTPHI09='DENTAL, PAID BY PRIV INSU, 2009' DVTMCR09='DENTAL, PAID BY MEDICARE, 2009' DVTMCD09='DENTAL, PAID BY MEDICAID, 2009' DVTTRI09='DENTAL, PAID BY TRICARE, 2009' DVTVA09 ='DENTAL, PAID BY VA, 2009' DVTWC09 ='DENTAL, PAID BY WORKERS COMP, 2009' DVTOTP09='DENTAL, PAID BY OTHER PUBLIC, 2009' DVTOSR09='DENTAL, PAID BY OTHER, 2009' OBOEXP09='OTHER PROVIDER, PAID BY TOTAL, 2009' OBOSLF09='OTHER PROVIDER, BY OUT OF POCKET, 2009' OBOPHI09='OTHER PROVIDER, PAID BY PRIV INSU, 2009' OBOMCR09='OTHER PROVIDER, PAID BY MEDICARE, 2009' OBOMCD09='OTHER PROVIDER, PAID BY MEDICAID, 2009' OBOTRI09='OTHER PROVIDER, PAID BY TRICARE, 2009' OBOVA09 ='OTHER PROVIDER, PAID BY VA, 2009' OBOWC09 ='OTHER PROVIDER, BY WORKERS COMP, 2009' OBOOTP09='OTHER PROVIDER, BY OTHER PUBLIC, 2009' OBOOSR09='OTHER PROVIDER, PAID BY OTHER, 2009' HHCEXP09='HOME HEALTH, PAID BY TOTAL, 2009' HHCSLF09='HOME HEALTH, PAID BY OUT OF POCKET, 2009' HHCPHI09='HOME HEALTH, PAID BY PRIV INSU, 2009' HHCMCR09='HOME HEALTH, PAID BY MEDICARE, 2009' HHCMCD09='HOME HEALTH, PAID BY MEDICAID, 2009' HHCTRI09='HOME HEALTH, PAID BY TRICARE, 2009' HHCVA09 ='HOME HEALTH, PAID BY VA, 2009' HHCWC09 ='HOME HEALTH, PAID BY WORKERS COMP, 2009' HHCOTP09='HOME HEALTH, PAID BY OTHER PUBLIC, 2009' HHCOSR09='HOME HEALTH, PAID BY OTHER, 2009' RXEXP09 ='RX, PAID BY TOTAL, 2009' RXSLF09 ='RX, PAID BY OUT OF POCKET, 2009' RXPHI09 ='RX, PAID BY PRIV INSU, 2009' RXMCR09 ='RX, PAID BY MEDICARE, 2009' RXMCD09 ='RX, PAID BY MEDICAID, 2009' RXTRI09 ='RX, PAID BY TRICARE, 2009' RXVA09 ='RX, PAID BY VA, 2009' RXWC09 ='RX, PAID BY WORKERS COMP, 2009' RXOTP09 ='RX, PAID BY OTHER PUBLIC, 2009' RXOSR09 ='RX, PAID BY OTHER, 2009' OTHEXP09='OTHER MEDICAL, PAID BY TOTAL, 2009' OTHSLF09='OTHER MEDICAL, BY OUT OF POCKET, 2009' OTHPHI09='OTHER MEDICAL, PAID BY PRIV INSU, 2009' OTHMCR09='OTHER MEDICAL, PAID BY MEDICARE, 2009' OTHMCD09='OTHER MEDICAL, PAID BY MEDICAID, 2009' OTHTRI09='OTHER MEDICAL, PAID BY TRICARE, 2009' OTHVA09 ='OTHER MEDICAL, PAID BY VA, 2009' OTHWC09 ='OTHER MEDICAL, BY WORKERS COMP, 2009' OTHOTP09='OTHER MEDICAL, PAID BY OTHR PUBLIC, 2009' OTHOSR09='OTHER MEDICAL, PAID BY OTHER, 2009' WTADJ09 ='GROWTH/FERTILITY/MORTALITY ADJ WGT,2009' ; * 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.15 - 146.05 = '$1 - $146' 146.05 < - 286.59 = '$147 - $287' 286.59 < - 667.41 = '$288 - $667' 667.41 < - 27026.37 = '$668 - $27,026' ; VALUE DVTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.14 - 94.22 = '$2 - $94' 94.22 < - 166.69 = '$95 - $167' 166.69 < - 346.72 = '$168 - $347' 346.72 < - 14458.71 = '$348 - $14,459' ; VALUE DVTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.35 - 24.89 = '$2 - $25' 24.89 < - 51.26 = '$26 - $51' 51.26 < - 131.79 = '$52 - $132' 131.79 < - 2670.98 = '$133 - $2,671' ; VALUE DVTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.29 - 104.06 = '$1 - $104' 104.06 < - 210.79 = '$105 - $211' 210.79 < - 386.89 = '$212 - $387' 386.89 < - 12776.75 = '$388 - $12,777' ; VALUE DVTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 13.65 - 78.44 = '$13 - $78' 78.44 < - 156.295 = '$79 - $156' 156.295 < - 436.88 = '$157 - $437' 436.88 < - 5463.67 = '$438 - $5,464' ; VALUE DVTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.7 - 158.64 = '$1 - $159' 158.64 < - 281.91 = '$160 - $282' 281.91 < - 581.235 = '$283 - $581' 581.235 < - 24253.69 = '$582 - $24,254' ; VALUE DVTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.33 - 55.82 = '$1 - $56' 55.82 < - 148.98 = '$57 - $149' 148.98 < - 411.07 = '$150 - $411' 411.07 < - 23067.05 = '$412 - $23,067' ; VALUE DVTTRI 0 = '0' ; VALUE DVTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.04 - 1.97 = '$1 - $2' 1.97 < - 4.55 = '$3 - $5' 4.55 < - 16.22 = '$6 - $16' 16.22 < - 179.5 = '$17 - $180' ; VALUE DVTWC 0 = '0' ; VALUE GTZERO 0 = '0' 0 < - HIGH = '>0' ; VALUE HHCEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.19 - 1137.76 = '$7 - $1,138' 1137.76 < - 4532.275 = '$1,139 - $4,532' 4532.275 < - 12372.6 = '$4,533 - $12,373' 12372.6 < - 289721.99 = '$12,374 - $289,722' ; VALUE HHCMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 4.92 - 954.15 = '$4 - $954' 954.15 < - 4373.77 = '$955 - $4,374' 4373.77 < - 14359.75 = '$4,375 - $14,360' 14359.75 < - 224847.5 = '$14,361 - $224,848' ; VALUE HHCMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 18.09 - 2118.01 = '$18 - $2,118' 2118.01 < - 4788.395 = '$2,119 - $4,788' 4788.395 < - 10733.7 = '$4,789 - $10,734' 10733.7 < - 85986.51 = '$10,735 - $85,987' ; VALUE HHCOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 65.33 - 161.2 = '$65 - $161' 161.2 < - 369.78 = '$162 - $370' 369.78 < - 1048.95 = '$371 - $1,049' 1048.95 < - 3149.32 = '$1,050 - $3,149' ; VALUE HHCOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 17.13 - 364.11 = '$17 - $364' 364.11 < - 910.515 = '$365 - $911' 910.515 < - 2370.1 = '$912 - $2,370' 2370.1 < - 17878.74 = '$2,371 - $17,879' ; VALUE HHCPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 38.07 - 798.18 = '$38 - $798' 798.18 < - 2563.3 = '$799 - $2,563' 2563.3 < - 7846.075 = '$2,564 - $7,846' 7846.075 < - 129668.83 = '$7,847 - $129,669' ; VALUE HHCSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.19 - 125.8 = '$7 - $126' 125.8 < - 437.19 = '$127 - $437' 437.19 < - 1468.28 = '$438 - $1,468' 1468.28 < - 85831.82 = '$1,469 - $85,832' ; VALUE HHCTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.52 - 54.165 = '$6 - $54' 54.165 < - 176.33 = '$55 - $176' 176.33 < - 470.28 = '$177 - $470' 470.28 < - 1825.67 = '$471 - $1,826' ; VALUE HHCVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 180.96 - 1725.64 = '$180 - $1,726' 1725.64 < - 4524.11 = '$1,727 - $4,524' 4524.11 < - 10306.89 = '$4,525 - $10,307' 10306.89 < - 47050.78 = '$10,308 - $47,051' ; VALUE HHCWC 0 = '0' 20000 - 40000 = '$20,000 - $40,000' ; VALUE HOSEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.83 - 266.6 = '$2 - $267' 266.6 < - 1010.935 = '$268 - $1,011' 1010.935 < - 4429.795 = '$1,012 - $4,430' 4429.795 < - 838480.72 = '$4,431 - $838,481' ; VALUE HOSMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.59 - 177.47 = '$1 - $177' 177.47 < - 661.95 = '$178 - $662' 661.95 < - 3244.51 = '$663 - $3,245' 3244.51 < - 628430.72 = '$3,246 - $628,431' ; VALUE HOSMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.18 - 214.11 = '$1 - $214' 214.11 < - 1108.7 = '$215 - $1,109' 1108.7 < - 6709.005 = '$1,110 - $6,709' 6709.005 < - 213093.57 = '$6,710 - $213,094' ; VALUE HOSOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.51 - 107.6 = '$2 - $108' 107.6 < - 349.745 = '$109 - $350' 349.745 < - 1312.95 = '$351 - $1,313' 1312.95 < - 70315.89 = '$1,314 - $70,316' ; VALUE HOSOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.66 - 90.77 = '$6 - $91' 90.77 < - 281.39 = '$92 - $281' 281.39 < - 1161.79 = '$282 - $1,162' 1161.79 < - 58527.36 = '$1,163 - $58,527' ; VALUE HOSPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.41 - 239.31 = '$1 - $239' 239.31 < - 872.77 = '$240 - $873' 872.77 < - 2943.66 = '$874 - $2,944' 2943.66 < - 838480.72 = '$2,945 - $838,481' ; VALUE HOSSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.65 - 42.93 = '$1 - $43' 42.93 < - 128.78 = '$44 - $129' 128.78 < - 429.26 = '$130 - $429' 429.26 < - 107415.4 = '$430 - $107,415' ; VALUE HOSTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.76 - 59.3 = '$1 - $59' 59.3 < - 216.015 = '$60 - $216' 216.015 < - 710.665 = '$217 - $711' 710.665 < - 136840.57 = '$712 - $136,841' ; VALUE HOSVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.32 - 179.86 = '$1 - $180' 179.86 < - 716.345 = '$181 - $716' 716.345 < - 2951.805 = '$717 - $2,952' 2951.805 < - 274509.8 = '$2,953 - $274,510' ; VALUE HOSWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.13 - 82.58 = '$2 - $83' 82.58 < - 231.58 = '$84 - $232' 231.58 < - 756.56 = '$233 - $757' 756.56 < - 352526.08 = '$758 - $352,526' ; VALUE $ID 'N0000109' - 'N7338009' = 'N0000109 - N7338009' ; 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 - 18.43 = '$1 - $18' 18.43 < - 67.6 = '$19 - $68' 67.6 < - 268.89 = '$69 - $269' 268.89 < - 80900.26 = '$270 - $80,900' ; VALUE OBOMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.12 - 9.74 = '$1 - $10' 9.74 < - 28.23 = '$11 - $28' 28.23 < - 111.07 = '$29 - $111' 111.07 < - 68087.38 = '$112 - $68,087' ; VALUE OBOMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.13 - 27.15 = '$1 - $27' 27.15 < - 102.47 = '$28 - $102' 102.47 < - 315.92 = '$103 - $316' 315.92 < - 73749.74 = '$317 - $73,750' ; VALUE OBOOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.26 - 39.25 = '$1 - $39' 39.25 < - 108.6 = '$40 - $109' 108.6 < - 354.57 = '$110 - $355' 354.57 < - 13777.23 = '$356 - $13,777' ; VALUE OBOOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2 - 33.14 = '$2 - $33' 33.14 < - 81.16 = '$34 - $81' 81.16 < - 228.85 = '$82 - $229' 228.85 < - 3805.41 = '$230 - $3,805' ; VALUE OBOPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.12 - 12.06 = '$1 - $12' 12.06 < - 39.49 = '$13 - $39' 39.49 < - 161.47 = '$40 - $161' 161.47 < - 68694.16 = '$162 - $68,694' ; VALUE OBOSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.16 - 4.28 = '$1 - $4' 4.28 < - 14.06 = '$5 - $14' 14.06 < - 54.57 = '$15 - $55' 54.57 < - 36090.06 = '$56 - $36,090' ; VALUE OBOTRI 0 = '0' ; VALUE OBOVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.11 - 1.96 = '$1 - $2' 1.96 < - 5.98 = '$3 - $6' 5.98 < - 18.28 = '$7 - $18' 18.28 < - 896.65 = '$19 - $897' ; VALUE OBOWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.1 - 51.63 = '$1 - $52' 51.63 < - 147.28 = '$53 - $147' 147.28 < - 561.49 = '$148 - $561' 561.49 < - 13931.24 = '$562 - $13,931' ; VALUE OTHEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.73 - 138.2 = '$1 - $138' 138.2 < - 283.59 = '$139 - $284' 283.59 < - 515.24 = '$285 - $515' 515.24 < - 58415.99 = '$516 - $58,416' ; VALUE OTHMCD 0 = '0' ; VALUE OTHMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.13 - 693.565 = '$7 - $694' 693.565 < - 1350.765 = '$695 - $1,351' 1350.765 < - 3225.445 = '$1,352 - $3,225' 3225.445 < - 57713.97 = '$3,226 - $57,714' ; VALUE OTHOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.4 - 99.68 = '$6 - $100' 99.68 < - 221.52 = '$101 - $222' 221.52 < - 380.97 = '$223 - $381' 380.97 < - 7470.06 = '$382 - $7,470' ; VALUE OTHOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.42 - 50.04 = '$2 - $50' 50.04 < - 91.12 = '$51 - $91' 91.12 < - 233.51 = '$92 - $234' 233.51 < - 2509.7 = '$235 - $2,510' ; VALUE OTHPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.9 - 65.68 = '$1 - $66' 65.68 < - 129.68 = '$67 - $130' 129.68 < - 233.46 = '$131 - $233' 233.46 < - 16809.07 = '$234 - $16,809' ; VALUE OTHSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.73 - 103.76 = '$1 - $104' 103.76 < - 242.31 = '$105 - $242' 242.31 < - 448.71 = '$243 - $449' 448.71 < - 48863.08 = '$450 - $48,863' ; VALUE OTHTRI 0 = '0' ; VALUE OTHVA 0 = '0' ; VALUE OTHWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 165.8 - 1086.29 = '$165 - $1,086' 1086.29 < - 2151.485 = '$1,087 - $2,151' 2151.485 < - 4393.07 = '$2,152 - $4,393' 4393.07 < - 19952.51 = '$4,394 - $19,953' ; VALUE PHYEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.37 - 170.97 = '$1 - $171' 170.97 < - 445.99 = '$172 - $446' 445.99 < - 1347.46 = '$447 - $1,347' 1347.46 < - 132025.24 = '$1,348 - $132,025' ; VALUE PHYMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.32 - 93.15 = '$1 - $93' 93.15 < - 227.02 = '$94 - $227' 227.02 < - 625.63 = '$228 - $626' 625.63 < - 63105.58 = '$627 - $63,106' ; VALUE PHYMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.6 - 246.1 = '$1 - $246' 246.1 < - 729.99 = '$247 - $730' 729.99 < - 2074.73 = '$731 - $2,075' 2074.73 < - 97472.81 = '$2,076 - $97,473' ; VALUE PHYOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.29 - 56.58 = '$1 - $57' 56.58 < - 122.8 = '$58 - $123' 122.8 < - 312.49 = '$124 - $312' 312.49 < - 103375.48 = '$313 - $103,375' ; VALUE PHYOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1 - 48.09 = '$1 - $48' 48.09 < - 106.19 = '$49 - $106' 106.19 < - 306.02 = '$107 - $306' 306.02 < - 39044.27 = '$307 - $39,044' ; VALUE PHYPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.87 - 145.8 = '$1 - $146' 145.8 < - 357.7 = '$147 - $358' 357.7 < - 993.4 = '$359 - $993' 993.4 < - 107158.57 = '$994 - $107,159' ; VALUE PHYSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.32 - 26.3 = '$1 - $26' 26.3 < - 65.64 = '$27 - $66' 65.64 < - 168.34 = '$67 - $168' 168.34 < - 36851.42 = '$169 - $36,851' ; VALUE PHYTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.88 - 158.925 = '$6 - $159' 158.925 < - 469.615 = '$160 - $470' 469.615 < - 1200.33 = '$471 - $1,200' 1200.33 < - 115644.76 = '$1,201 - $115,645' ; VALUE PHYVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.39 - 20.47 = '$1 - $20' 20.47 < - 67.61 = '$21 - $68' 67.61 < - 224.86 = '$69 - $225' 224.86 < - 7757.08 = '$226 - $7,757' ; VALUE PHYWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.41 - 234.56 = '$5 - $235' 234.56 < - 595.11 = '$236 - $595' 595.11 < - 1893.54 = '$596 - $1,894' 1893.54 < - 61650.94 = '$1,895 - $61,651' ; 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.37 - 60.84 = '$1 - $61' 60.84 < - 254.94 = '$62 - $255' 254.94 < - 1011.75 = '$256 - $1,012' 1011.75 < - 241781.34 = '$1,013 - $241,781' ; VALUE RXMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.37 - 37.315 = '$1 - $37' 37.315 < - 119.99 = '$38 - $120' 119.99 < - 509.14 = '$121 - $509' 509.14 < - 204193.7 = '$510 - $204,194' ; VALUE RXMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.53 - 684.51 = '$6 - $685' 684.51 < - 2063.41 = '$686 - $2,063' 2063.41 < - 5543.79 = '$2,064 - $5,544' 5543.79 < - 240744.46 = '$5,545 - $240,744' ; VALUE RXOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.83 - 35.79 = '$3 - $36' 35.79 < - 137.97 = '$37 - $138' 137.97 < - 310.95 = '$139 - $311' 310.95 < - 3600.57 = '$312 - $3,601' ; VALUE RXOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.5 - 46.425 = '$1 - $46' 46.425 < - 231.435 = '$47 - $231' 231.435 < - 882.48 = '$232 - $882' 882.48 < - 36710.48 = '$883 - $36,710' ; VALUE RXPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.63 - 65.91 = '$1 - $66' 65.91 < - 252.38 = '$67 - $252' 252.38 < - 924.86 = '$253 - $925' 924.86 < - 71675.01 = '$926 - $71,675' ; VALUE RXSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.63 - 17.6 = '$1 - $18' 17.6 < - 68.43 = '$19 - $68' 68.43 < - 243.1 = '$69 - $243' 243.1 < - 22985.78 = '$244 - $22,986' ; VALUE RXTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.45 - 25.59 = '$1 - $26' 25.59 < - 121.57 = '$27 - $122' 121.57 < - 511.68 = '$123 - $512' 511.68 < - 18401.64 = '$513 - $18,402' ; VALUE RXVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.62 - 45.21 = '$1 - $45' 45.21 < - 194.61 = '$46 - $195' 194.61 < - 552.19 = '$196 - $552' 552.19 < - 14146.44 = '$553 - $14,146' ; VALUE RXWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.65 - 71.68 = '$1 - $72' 71.68 < - 183.72 = '$73 - $184' 183.72 < - 598.51 = '$185 - $599' 598.51 < - 18776.91 = '$600 - $18,777' ; VALUE SEX 1 = '1 Male' 2 = '2 Female' ; VALUE TOTEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.65 - 385.58 = '$1 - $386' 385.58 < - 1225.53 = '$387 - $1,226' 1225.53 < - 4113.55 = '$1,227 - $4,114' 4113.55 < - 909849.23 = '$4,115 - $909,849' ; VALUE TOTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.72 - 181.19 = '$1 - $181' 181.19 < - 543.71 = '$182 - $544' 543.71 < - 2184.3 = '$545 - $2,184' 2184.3 < - 637826.44 = '$2,185 - $637,826' ; VALUE TOTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.18 - 436.59 = '$1 - $437' 436.59 < - 1724.015 = '$438 - $1,724' 1724.015 < - 7085.8 = '$1,725 - $7,086' 7085.8 < - 258711.26 = '$7,087 - $258,711' ; VALUE TOTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.26 - 72.02 = '$1 - $72' 72.02 < - 172.21 = '$73 - $172' 172.21 < - 461.82 = '$173 - $462' 461.82 < - 103375.48 = '$463 - $103,375' ; VALUE TOTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1 - 65.36 = '$1 - $65' 65.36 < - 204.72 = '$66 - $205' 204.72 < - 765.9 = '$206 - $766' 765.9 < - 58527.36 = '$767 - $58,527' ; VALUE TOTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.34 - 279.35 = '$1 - $279' 279.35 < - 834 = '$280 - $834' 834 < - 2569.28 = '$835 - $2,569' 2569.28 < - 904821.07 = '$2,570 - $904,821' ; VALUE TOTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.63 - 69.55 = '$1 - $70' 69.55 < - 263.82 = '$71 - $264' 263.82 < - 763.04 = '$265 - $763' 763.04 < - 122844.29 = '$764 - $122,844' ; VALUE TOTTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.76 - 184.71 = '$1 - $185' 184.71 < - 620.98 = '$186 - $621' 620.98 < - 1795.42 = '$622 - $1,795' 1795.42 < - 151538.66 = '$1,796 - $151,539' ; VALUE TOTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.08 - 26.66 = '$1 - $27' 26.66 < - 150.93 = '$28 - $151' 150.93 < - 684.02 = '$152 - $684' 684.02 < - 274724.24 = '$685 - $274,724' ; VALUE TOTWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.13 - 236.46 = '$2 - $236' 236.46 < - 757.94 = '$237 - $758' 757.94 < - 2457.67 = '$759 - $2,458' 2457.67 < - 427687.27 = '$2,459 - $427,687' ; VALUE YESNO 0 = '0 No' 1 = '1 Yes' ;