SAS User File for PROJYR05 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 (PROJYR05.SSP) or the ASCII data file (PROJYR05.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\PROJYR05.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.PROJYR05; TITLE "List of Variables in MEPS PROJYR05 SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.PROJYR05 (OBS=20); TITLE "First 20 Observations in MEPS PROJYR05 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) PROJYR05 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 PROJYR05.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file PROJYR05.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 PROJYR05.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 PROJYR05.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\PROJYR05.DAT'; DATA PUFLIB.PROJYR05; INFILE IN1 LRECL=653; 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 (PROJYR05). In the example, after the successful completion of the DATA step, a PC file named PROJYR05.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 (653 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 PROJYR05.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., 653 for PROJYR05.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (655 for PROJYR05.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 (653 for PROJYR05.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 (PROJYR05.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.PROJYR05; 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 PROJYR05.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=653; 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 TOTEXP05 9.2 @28 TOTSLF05 8.2 @36 TOTPHI05 9.2 @45 TOTMCR05 9.2 @54 TOTMCD05 9.2 @63 TOTTRI05 9.2 @72 TOTVA05 9.2 @81 TOTWC05 9.2 @90 TOTOTP05 8.2 @98 TOTOSR05 8.2 @106 HOSEXP05 9.2 @115 HOSSLF05 8.2 @123 HOSPHI05 9.2 @132 HOSMCR05 9.2 @141 HOSMCD05 9.2 @150 HOSTRI05 9.2 @159 HOSVA05 9.2 @168 HOSWC05 9.2 @177 HOSOTP05 8.2 @185 HOSOSR05 8.2 @193 PHYEXP05 9.2 @202 PHYSLF05 8.2 @210 PHYPHI05 8.2 @218 PHYMCR05 8.2 @226 PHYMCD05 8.2 @234 PHYTRI05 8.2 @242 PHYVA05 7.2 @249 PHYWC05 8.2 @257 PHYOTP05 8.2 @265 PHYOSR05 8.2 @273 DVTEXP05 8.2 @281 DVTSLF05 8.2 @289 DVTPHI05 8.2 @297 DVTMCR05 7.2 @304 DVTMCD05 8.2 @312 DVTTRI05 4.2 @316 DVTVA05 6.2 @322 DVTWC05 4.2 @326 DVTOTP05 7.2 @333 DVTOSR05 8.2 @341 OBOEXP05 8.2 @349 OBOSLF05 8.2 @357 OBOPHI05 8.2 @365 OBOMCR05 8.2 @373 OBOMCD05 8.2 @381 OBOTRI05 4.2 @385 OBOVA05 6.2 @391 OBOWC05 8.2 @399 OBOOTP05 7.2 @406 OBOOSR05 8.2 @414 HHCEXP05 9.2 @423 HHCSLF05 8.2 @431 HHCPHI05 9.2 @440 HHCMCR05 8.2 @448 HHCMCD05 9.2 @457 HHCTRI05 7.2 @464 HHCVA05 8.2 @472 HHCWC05 8.2 @480 HHCOTP05 8.2 @488 HHCOSR05 7.2 @495 RXEXP05 9.2 @504 RXSLF05 8.2 @512 RXPHI05 8.2 @520 RXMCR05 8.2 @528 RXMCD05 9.2 @537 RXTRI05 8.2 @545 RXVA05 8.2 @553 RXWC05 8.2 @561 RXOTP05 8.2 @569 RXOSR05 7.2 @576 OTHEXP05 8.2 @584 OTHSLF05 8.2 @592 OTHPHI05 8.2 @600 OTHMCR05 8.2 @608 OTHMCD05 4.2 @612 OTHTRI05 4.2 @616 OTHVA05 4.2 @620 OTHWC05 8.2 @628 OTHOTP05 7.2 @635 OTHOSR05 7.2 @642 WTADJ05 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. TOTEXP05 TOTEXP. TOTSLF05 TOTSLF. TOTPHI05 TOTPHI. TOTMCR05 TOTMCR. TOTMCD05 TOTMCD. TOTTRI05 TOTTRI. TOTVA05 TOTVA. TOTWC05 TOTWC. TOTOTP05 TOTOTP. TOTOSR05 TOTOSR. HOSEXP05 HOSEXP. HOSSLF05 HOSSLF. HOSPHI05 HOSPHI. HOSMCR05 HOSMCR. HOSMCD05 HOSMCD. HOSTRI05 HOSTRI. HOSVA05 HOSVA. HOSWC05 HOSWC. HOSOTP05 HOSOTP. HOSOSR05 HOSOSR. PHYEXP05 PHYEXP. PHYSLF05 PHYSLF. PHYPHI05 PHYPHI. PHYMCR05 PHYMCR. PHYMCD05 PHYMCD. PHYTRI05 PHYTRI. PHYVA05 PHYVA. PHYWC05 PHYWC. PHYOTP05 PHYOTP. PHYOSR05 PHYOSR. DVTEXP05 DVTEXP. DVTSLF05 DVTSLF. DVTPHI05 DVTPHI. DVTMCR05 DVTMCR. DVTMCD05 DVTMCD. DVTTRI05 DVTTRI. DVTVA05 DVTVA. DVTWC05 DVTWC. DVTOTP05 DVTOTP. DVTOSR05 DVTOSR. OBOEXP05 OBOEXP. OBOSLF05 OBOSLF. OBOPHI05 OBOPHI. OBOMCR05 OBOMCR. OBOMCD05 OBOMCD. OBOTRI05 OBOTRI. OBOVA05 OBOVA. OBOWC05 OBOWC. OBOOTP05 OBOOTP. OBOOSR05 OBOOSR. HHCEXP05 HHCEXP. HHCSLF05 HHCSLF. HHCPHI05 HHCPHI. HHCMCR05 HHCMCR. HHCMCD05 HHCMCD. HHCTRI05 HHCTRI. HHCVA05 HHCVA. HHCWC05 HHCWC. HHCOTP05 HHCOTP. HHCOSR05 HHCOSR. RXEXP05 RXEXP. RXSLF05 RXSLF. RXPHI05 RXPHI. RXMCR05 RXMCR. RXMCD05 RXMCD. RXTRI05 RXTRI. RXVA05 RXVA. RXWC05 RXWC. RXOTP05 RXOTP. RXOSR05 RXOSR. OTHEXP05 OTHEXP. OTHSLF05 OTHSLF. OTHPHI05 OTHPHI. OTHMCR05 OTHMCR. OTHMCD05 OTHMCD. OTHTRI05 OTHTRI. OTHVA05 OTHVA. OTHWC05 OTHWC. OTHOTP05 OTHOTP. OTHOSR05 OTHOSR. WTADJ05 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' TOTEXP05='TOTAL, PAID BY TOTAL, 2005' TOTSLF05='TOTAL, PAID BY OUT OF POCKET, 2005' TOTPHI05='TOTAL, PAID BY PRIV INSU, 2005' TOTMCR05='TOTAL, PAID BY MEDICARE, 2005' TOTMCD05='TOTAL, PAID BY MEDICAID, 2005' TOTTRI05='TOTAL, PAID BY TRICARE, 2005' TOTVA05 ='TOTAL, PAID BY VA, 2005' TOTWC05 ='TOTAL, PAID BY WORKERS COMP, 2005' TOTOTP05='TOTAL, PAID BY OTHER PUBLIC, 2005' TOTOSR05='TOTAL, PAID BY OTHER, 2005' HOSEXP05='HOSPITAL, PAID BY TOTAL, 2005' HOSSLF05='HOSPITAL, PAID BY OUT OF POCKET, 2005' HOSPHI05='HOSPITAL, PAID BY PRIV INSU, 2005' HOSMCR05='HOSPITAL, PAID BY MEDICARE, 2005' HOSMCD05='HOSPITAL, PAID BY MEDICAID, 2005' HOSTRI05='HOSPITAL, PAID BY TRICARE, 2005' HOSVA05 ='HOSPITAL, PAID BY VA, 2005' HOSWC05 ='HOSPITAL, PAID BY WORKERS COMP, 2005' HOSOTP05='HOSPITAL, PAID BY OTHER PUBLIC, 2005' HOSOSR05='HOSPITAL, PAID BY OTHER, 2005' PHYEXP05='PHYSICIAN, PAID BY TOTAL, 2005' PHYSLF05='PHYSICIAN, PAID BY OUT OF POCKET, 2005' PHYPHI05='PHYSICIAN, PAID BY PRIV INSU, 2005' PHYMCR05='PHYSICIAN, PAID BY MEDICARE, 2005' PHYMCD05='PHYSICIAN, PAID BY MEDICAID, 2005' PHYTRI05='PHYSICIAN, PAID BY TRICARE, 2005' PHYVA05 ='PHYSICIAN, PAID BY VA, 2005' PHYWC05 ='PHYSICIAN, PAID BY WORKERS COMP, 2005' PHYOTP05='PHYSICIAN, PAID BY OTHER PUBLIC, 2005' PHYOSR05='PHYSICIAN, PAID BY OTHER, 2005' DVTEXP05='DENTAL, PAID BY TOTAL, 2005' DVTSLF05='DENTAL, PAID BY OUT OF POCKET, 2005' DVTPHI05='DENTAL, PAID BY PRIV INSU, 2005' DVTMCR05='DENTAL, PAID BY MEDICARE, 2005' DVTMCD05='DENTAL, PAID BY MEDICAID, 2005' DVTTRI05='DENTAL, PAID BY TRICARE, 2005' DVTVA05 ='DENTAL, PAID BY VA, 2005' DVTWC05 ='DENTAL, PAID BY WORKERS COMP, 2005' DVTOTP05='DENTAL, PAID BY OTHER PUBLIC, 2005' DVTOSR05='DENTAL, PAID BY OTHER, 2005' OBOEXP05='OTHER PROVIDER, PAID BY TOTAL, 2005' OBOSLF05='OTHER PROVIDER, BY OUT OF POCKET, 2005' OBOPHI05='OTHER PROVIDER, PAID BY PRIV INSU, 2005' OBOMCR05='OTHER PROVIDER, PAID BY MEDICARE, 2005' OBOMCD05='OTHER PROVIDER, PAID BY MEDICAID, 2005' OBOTRI05='OTHER PROVIDER, PAID BY TRICARE, 2005' OBOVA05 ='OTHER PROVIDER, PAID BY VA, 2005' OBOWC05 ='OTHER PROVIDER, BY WORKERS COMP, 2005' OBOOTP05='OTHER PROVIDER, BY OTHER PUBLIC, 2005' OBOOSR05='OTHER PROVIDER, PAID BY OTHER, 2005' HHCEXP05='HOME HEALTH, PAID BY TOTAL, 2005' HHCSLF05='HOME HEALTH, PAID BY OUT OF POCKET, 2005' HHCPHI05='HOME HEALTH, PAID BY PRIV INSU, 2005' HHCMCR05='HOME HEALTH, PAID BY MEDICARE, 2005' HHCMCD05='HOME HEALTH, PAID BY MEDICAID, 2005' HHCTRI05='HOME HEALTH, PAID BY TRICARE, 2005' HHCVA05 ='HOME HEALTH, PAID BY VA, 2005' HHCWC05 ='HOME HEALTH, PAID BY WORKERS COMP, 2005' HHCOTP05='HOME HEALTH, PAID BY OTHER PUBLIC, 2005' HHCOSR05='HOME HEALTH, PAID BY OTHER, 2005' RXEXP05 ='RX, PAID BY TOTAL, 2005' RXSLF05 ='RX, PAID BY OUT OF POCKET, 2005' RXPHI05 ='RX, PAID BY PRIV INSU, 2005' RXMCR05 ='RX, PAID BY MEDICARE, 2005' RXMCD05 ='RX, PAID BY MEDICAID, 2005' RXTRI05 ='RX, PAID BY TRICARE, 2005' RXVA05 ='RX, PAID BY VA, 2005' RXWC05 ='RX, PAID BY WORKERS COMP, 2005' RXOTP05 ='RX, PAID BY OTHER PUBLIC, 2005' RXOSR05 ='RX, PAID BY OTHER, 2005' OTHEXP05='OTHER MEDICAL, PAID BY TOTAL, 2005' OTHSLF05='OTHER MEDICAL, BY OUT OF POCKET, 2005' OTHPHI05='OTHER MEDICAL, PAID BY PRIV INSU, 2005' OTHMCR05='OTHER MEDICAL, PAID BY MEDICARE, 2005' OTHMCD05='OTHER MEDICAL, PAID BY MEDICAID, 2005' OTHTRI05='OTHER MEDICAL, PAID BY TRICARE, 2005' OTHVA05 ='OTHER MEDICAL, PAID BY VA, 2005' OTHWC05 ='OTHER MEDICAL, BY WORKERS COMP, 2005' OTHOTP05='OTHER MEDICAL, PAID BY OTHR PUBLIC, 2005' OTHOSR05='OTHER MEDICAL, PAID BY OTHER, 2005' WTADJ05 ='GROWTH/FERTILITY/MORTALITY ADJ WGT,2005' ; * VALUE STATEMENTS; VALUE AGESTUB 0 - 17 = '0-17' 18 - 64 = '18-64' 65 - HIGH = '65 or older' ; VALUE DVTEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.98 - 120.18 = '$1 - $120' 120.18 < - 235.95 = '$121 - $236' 235.95 < - 551.21 = '$237 - $551' 551.21 < - 22016.72 = '$552 - $22,017' ; VALUE DVTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.78 - 78.41 = '$1 - $78' 78.41 < - 138.72 = '$79 - $139' 138.72 < - 288.54 = '$140 - $289' 288.54 < - 12032.62 = '$290 - $12,033' ; VALUE DVTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.46 - 15.44 = '$1 - $15' 15.44 < - 31.79 = '$16 - $32' 31.79 < - 81.735 = '$33 - $82' 81.735 < - 1656.5 = '$83 - $1,657' ; VALUE DVTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.08 - 87.79 = '$1 - $88' 87.79 < - 177.84 = '$89 - $178' 177.84 < - 326.41 = '$179 - $326' 326.41 < - 10779.35 = '$327 - $10,779' ; VALUE DVTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 11.38 - 65.4 = '$11 - $65' 65.4 < - 130.31 = '$66 - $130' 130.31 < - 364.22 = '$131 - $364' 364.22 < - 4555.02 = '$365 - $4,555' ; VALUE DVTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.38 - 128.77 = '$1 - $129' 128.77 < - 228.83 = '$130 - $229' 228.83 < - 471.795 = '$230 - $472' 471.795 < - 19687.08 = '$473 - $19,687' ; VALUE DVTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.12 - 46.9 = '$1 - $47' 46.9 < - 125.17 = '$48 - $125' 125.17 < - 345.39 = '$126 - $345' 345.39 < - 19381.23 = '$346 - $19,381' ; VALUE DVTTRI 0 = '0' ; VALUE DVTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.03 - 1.68 = '$1 - $2' 1.68 < - 3.875 = '$3 - $4' 3.875 < - 13.83 = '$5 - $14' 13.83 < - 153.06 = '$15 - $153' ; VALUE DVTWC 0 = '0' ; VALUE GTZERO 0 = '0' 0 < - HIGH = '>0' ; VALUE HHCEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.1 - 906.16 = '$6 - $906' 906.16 < - 3534.95 = '$907 - $3,535' 3534.95 < - 9330.25 = '$3,536 - $9,330' 9330.25 < - 215213.29 = '$9,331 - $215,213' ; VALUE HHCMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.44 - 667.02 = '$3 - $667' 667.02 < - 3057.59 = '$668 - $3,058' 3057.59 < - 10038.53 = '$3,059 - $10,039' 10038.53 < - 157185.06 = '$10,040 - $157,185' ; VALUE HHCMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 14.47 - 1693.82 = '$14 - $1,694' 1693.82 < - 3829.38 = '$1,695 - $3,829' 3829.38 < - 8583.97 = '$3,830 - $8,584' 8583.97 < - 68765.22 = '$8,585 - $68,765' ; VALUE HHCOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 54.34 - 134.08 = '$54 - $134' 134.08 < - 307.59 = '$135 - $308' 307.59 < - 872.52 = '$309 - $873' 872.52 < - 2619.6 = '$874 - $2,620' ; VALUE HHCOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 13.91 - 295.68 = '$13 - $296' 295.68 < - 739.395 = '$297 - $739' 739.395 < - 1924.68 = '$740 - $1,925' 1924.68 < - 14518.69 = '$1,926 - $14,519' ; VALUE HHCPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 34.05 - 713.985 = '$34 - $714' 713.985 < - 2292.925 = '$715 - $2,293' 2292.925 < - 7018.47 = '$2,294 - $7,018' 7018.47 < - 115991.39 = '$7,019 - $115,991' ; VALUE HHCSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.1 - 106.78 = '$6 - $107' 106.78 < - 371.09 = '$108 - $371' 371.09 < - 1246.28 = '$372 - $1,246' 1246.28 < - 72854.28 = '$1,247 - $72,854' ; VALUE HHCTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.79 - 48.1 = '$5 - $48' 48.1 < - 156.575 = '$49 - $157' 156.575 < - 417.61 = '$158 - $418' 417.61 < - 1621.2 = '$419 - $1,621' ; VALUE HHCVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 155.8 - 1485.64 = '$155 - $1,486' 1485.64 < - 3894.9 = '$1,487 - $3,895' 3894.9 < - 8873.4 = '$3,896 - $8,873' 8873.4 < - 40506.93 = '$8,874 - $40,507' ; VALUE HHCWC 0 = '0' 20000 - 40000 = '$20,000 - $40,000' ; VALUE HOSEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.25 - 217.58 = '$2 - $218' 217.58 < - 819.355 = '$219 - $819' 819.355 < - 3644.7 = '$820 - $3,645' 3644.7 < - 667171.96 = '$3,646 - $667,172' ; VALUE HOSMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.32 - 146.92 = '$1 - $147' 146.92 < - 548.02 = '$148 - $548' 548.02 < - 2686.085 = '$549 - $2,686' 2686.085 < - 520269.34 = '$2,687 - $520,269' ; VALUE HOSMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.02 - 185.41 = '$1 - $185' 185.41 < - 960.1 = '$186 - $960' 960.1 < - 5809.75 = '$961 - $5,810' 5809.75 < - 184531.18 = '$5,811 - $184,531' ; VALUE HOSOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.1 - 90.05 = '$2 - $90' 90.05 < - 292.69 = '$91 - $293' 292.69 < - 1098.76 = '$294 - $1,099' 1098.76 < - 58844.77 = '$1,100 - $58,845' ; VALUE HOSOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.85 - 79.77 = '$5 - $80' 79.77 < - 247.28 = '$81 - $247' 247.28 < - 1020.97 = '$248 - $1,021' 1020.97 < - 51433.18 = '$1,022 - $51,433' ; VALUE HOSPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.13 - 190.42 = '$1 - $190' 190.42 < - 694.45 = '$191 - $694' 694.45 < - 2342.24 = '$695 - $2,342' 2342.24 < - 667171.96 = '$2,343 - $667,172' ; VALUE HOSSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.29 - 33.58 = '$1 - $34' 33.58 < - 100.74 = '$35 - $101' 100.74 < - 335.8 = '$102 - $336' 335.8 < - 84030.16 = '$337 - $84,030' ; VALUE HOSTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.59 - 46.07 = '$1 - $46' 46.07 < - 167.825 = '$47 - $168' 167.825 < - 552.11 = '$169 - $552' 552.11 < - 106310.6 = '$553 - $106,311' ; VALUE HOSVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.15 - 156.68 = '$1 - $157' 156.68 < - 624.03 = '$158 - $624' 624.03 < - 2571.42 = '$625 - $2,571' 2571.42 < - 239135.24 = '$2,572 - $239,135' ; VALUE HOSWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.93 - 74.76 = '$1 - $75' 74.76 < - 209.64 = '$76 - $210' 209.64 < - 684.87 = '$211 - $685' 684.87 < - 319123.17 = '$686 - $319,123' ; VALUE $ID 'N0000105' - 'N7338005' = 'N0000105 - N7338005' ; 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.1 - 15.74 = '$1 - $16' 15.74 < - 57.74 = '$17 - $58' 57.74 < - 230.94 = '$59 - $231' 230.94 < - 69489.98 = '$232 - $69,490' ; VALUE OBOMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.1 - 8.17 = '$1 - $8' 8.17 < - 23.68 = '$9 - $24' 23.68 < - 93.15 = '$25 - $93' 93.15 < - 57105.53 = '$94 - $57,106' ; VALUE OBOMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.11 - 22.94 = '$1 - $23' 22.94 < - 86.58 = '$24 - $87' 86.58 < - 266.93 = '$88 - $267' 266.93 < - 62315.07 = '$268 - $62,315' ; VALUE OBOOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.1 - 34.11 = '$1 - $34' 34.11 < - 94.37 = '$35 - $94' 94.37 < - 308.12 = '$95 - $308' 308.12 < - 11972.36 = '$309 - $11,972' ; VALUE OBOOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.12 - 35.23 = '$2 - $35' 35.23 < - 86.27 = '$36 - $86' 86.27 < - 243.24 = '$87 - $243' 243.24 < - 4044.81 = '$244 - $4,045' ; VALUE OBOPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.1 - 10.47 = '$1 - $10' 10.47 < - 34.27 = '$11 - $34' 34.27 < - 140.16 = '$35 - $140' 140.16 < - 59625.76 = '$141 - $59,626' ; VALUE OBOSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.14 - 3.59 = '$1 - $4' 3.59 < - 11.8 = '$5 - $12' 11.8 < - 45.82 = '$13 - $46' 45.82 < - 30304.77 = '$47 - $30,305' ; VALUE OBOTRI 0 = '0' ; VALUE OBOVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.12 - 2.06 = '$1 - $2' 2.06 < - 6.29 = '$3 - $6' 6.29 < - 19.22 = '$7 - $19' 19.22 < - 942.88 = '$20 - $943' ; VALUE OBOWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.15 - 53.57 = '$1 - $54' 53.57 < - 152.815 = '$55 - $153' 152.815 < - 582.61 = '$154 - $583' 582.61 < - 14455.1 = '$584 - $14,455' ; VALUE OTHEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.67 - 133.14 = '$1 - $133' 133.14 < - 273.055 = '$134 - $273' 273.055 < - 497.53 = '$274 - $498' 497.53 < - 53145.44 = '$499 - $53,145' ; VALUE OTHMCD 0 = '0' ; VALUE OTHMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.35 - 618.185 = '$6 - $618' 618.185 < - 1203.96 = '$619 - $1,204' 1203.96 < - 2874.895 = '$1,205 - $2,875' 2874.895 < - 51441.42 = '$2,876 - $51,441' ; VALUE OTHOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.94 - 92.46 = '$5 - $92' 92.46 < - 205.46 = '$93 - $205' 205.46 < - 353.35 = '$206 - $353' 353.35 < - 6928.37 = '$354 - $6,928' ; VALUE OTHOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.59 - 53.51 = '$2 - $54' 53.51 < - 97.43 = '$55 - $97' 97.43 < - 249.7 = '$98 - $250' 249.7 < - 2683.64 = '$251 - $2,684' ; VALUE OTHPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.87 - 63.27 = '$1 - $63' 63.27 < - 124.93 = '$64 - $125' 124.93 < - 224.9 = '$126 - $225' 224.9 < - 16192.95 = '$226 - $16,193' ; VALUE OTHSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.67 - 100.36 = '$1 - $100' 100.36 < - 234.36 = '$101 - $234' 234.36 < - 434 = '$235 - $434' 434 < - 47261.05 = '$435 - $47,261' ; VALUE OTHTRI 0 = '0' ; VALUE OTHVA 0 = '0' ; VALUE OTHWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 160.17 - 1049.4 = '$160 - $1,049' 1049.4 < - 2078.435 = '$1,050 - $2,078' 2078.435 < - 4243.91 = '$2,079 - $4,244' 4243.91 < - 19275.06 = '$4,245 - $19,275' ; VALUE PHYEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.19 - 144.4 = '$1 - $144' 144.4 < - 375.53 = '$145 - $376' 375.53 < - 1141.18 = '$377 - $1,141' 1141.18 < - 112029.84 = '$1,142 - $112,030' ; VALUE PHYMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.14 - 80.67 = '$1 - $81' 80.67 < - 196.6 = '$82 - $197' 196.6 < - 541.78 = '$198 - $542' 541.78 < - 54648.23 = '$543 - $54,648' ; VALUE PHYMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.42 - 218.03 = '$1 - $218' 218.03 < - 646.73 = '$219 - $647' 646.73 < - 1838.1 = '$648 - $1,838' 1838.1 < - 86355.44 = '$1,839 - $86,355' ; VALUE PHYOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.1 - 48.24 = '$1 - $48' 48.24 < - 104.69 = '$49 - $105' 104.69 < - 266.42 = '$106 - $266' 266.42 < - 88132.61 = '$267 - $88,133' ; VALUE PHYOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.92 - 44.35 = '$1 - $44' 44.35 < - 97.92 = '$45 - $98' 97.92 < - 282.19 = '$99 - $282' 282.19 < - 36004.8 = '$283 - $36,005' ; VALUE PHYPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.55 - 120.94 = '$1 - $121' 120.94 < - 296.71 = '$122 - $297' 296.71 < - 824 = '$298 - $824' 824 < - 88885.75 = '$825 - $88,886' ; VALUE PHYSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.1 - 21.91 = '$1 - $22' 21.91 < - 54.67 = '$23 - $55' 54.67 < - 140.22 = '$56 - $140' 140.22 < - 30694.52 = '$141 - $30,695' ; VALUE PHYTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.8 - 133.955 = '$5 - $134' 133.955 < - 395.83 = '$135 - $396' 395.83 < - 1011.735 = '$397 - $1,012' 1011.735 < - 97474.28 = '$1,013 - $97,474' ; VALUE PHYVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.33 - 17.56 = '$1 - $18' 17.56 < - 58.01 = '$19 - $58' 58.01 < - 192.91 = '$59 - $193' 192.91 < - 6655.09 = '$194 - $6,655' ; VALUE PHYWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 4.55 - 197.3 = '$4 - $197' 197.3 < - 500.58 = '$198 - $501' 500.58 < - 1592.75 = '$502 - $1,593' 1592.75 < - 51857.71 = '$1,594 - $51,858' ; 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.41 - 66.34 = '$1 - $66' 66.34 < - 258.73 = '$67 - $259' 258.73 < - 945.16 = '$260 - $945' 945.16 < - 339165.89 = '$946 - $339,166' ; VALUE RXMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.61 - 61.575 = '$1 - $62' 61.575 < - 198.015 = '$63 - $198' 198.015 < - 840.215 = '$199 - $840' 840.215 < - 336973.06 = '$841 - $336,973' ; VALUE RXMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.53 - 55.98 = '$1 - $56' 55.98 < - 168.765 = '$57 - $169' 168.765 < - 453.42 = '$170 - $453' 453.42 < - 19690.02 = '$454 - $19,690' ; VALUE RXOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.25 - 30.32 = '$3 - $30' 30.32 < - 116.875 = '$31 - $117' 116.875 < - 263.41 = '$118 - $263' 263.41 < - 3050.11 = '$264 - $3,050' ; VALUE RXOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.24 - 38.515 = '$1 - $39' 38.515 < - 192.01 = '$40 - $192' 192.01 < - 732.15 = '$193 - $732' 732.15 < - 30457.01 = '$733 - $30,457' ; VALUE RXPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.46 - 58.97 = '$1 - $59' 58.97 < - 225.8 = '$60 - $226' 225.8 < - 827.44 = '$227 - $827' 827.44 < - 64124.51 = '$828 - $64,125' ; VALUE RXSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.58 - 16.26 = '$1 - $16' 16.26 < - 63.22 = '$17 - $63' 63.22 < - 224.58 = '$64 - $225' 224.58 < - 21234.69 = '$226 - $21,235' ; VALUE RXTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.41 - 23.16 = '$1 - $23' 23.16 < - 110.02 = '$24 - $110' 110.02 < - 463.08 = '$111 - $463' 463.08 < - 16653.81 = '$464 - $16,654' ; VALUE RXVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.49 - 35.8 = '$1 - $36' 35.8 < - 154.08 = '$37 - $154' 154.08 < - 437.19 = '$155 - $437' 437.19 < - 11200.38 = '$438 - $11,200' ; VALUE RXWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.28 - 55.62 = '$1 - $56' 55.62 < - 142.58 = '$57 - $143' 142.58 < - 464.46 = '$144 - $464' 464.46 < - 14571.46 = '$465 - $14,571' ; VALUE SEX 1 = '1 Male' 2 = '2 Female' ; VALUE TOTEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.6 - 340.75 = '$1 - $341' 340.75 < - 1070.14 = '$342 - $1,070' 1070.14 < - 3519.7 = '$1,071 - $3,520' 3519.7 < - 727293.52 = '$3,521 - $727,294' ; VALUE TOTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.18 - 186.05 = '$1 - $186' 186.05 < - 565.105 = '$187 - $565' 565.105 < - 2385.29 = '$566 - $2,385' 2385.29 < - 530786.24 = '$2,386 - $530,786' ; VALUE TOTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.02 - 337.17 = '$1 - $337' 337.17 < - 1190.305 = '$338 - $1,190' 1190.305 < - 4692.83 = '$1,191 - $4,693' 4692.83 < - 199069.2 = '$4,694 - $199,069' ; VALUE TOTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.08 - 61.4 = '$1 - $61' 61.4 < - 146.79 = '$62 - $147' 146.79 < - 395.67 = '$148 - $396' 395.67 < - 88132.61 = '$397 - $88,133' ; VALUE TOTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.92 - 60.06 = '$1 - $60' 60.06 < - 183.16 = '$61 - $183' 183.16 < - 683.67 = '$184 - $684' 683.67 < - 51433.18 = '$685 - $51,433' ; VALUE TOTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.16 - 234.2 = '$1 - $234' 234.2 < - 700.86 = '$235 - $701' 700.86 < - 2159.71 = '$702 - $2,160' 2159.71 < - 722538.94 = '$2,161 - $722,539' ; VALUE TOTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.58 - 60.97 = '$1 - $61' 60.97 < - 231.12 = '$62 - $231' 231.12 < - 673.23 = '$232 - $673' 673.23 < - 98454.26 = '$674 - $98,454' ; VALUE TOTTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.59 - 157.81 = '$1 - $158' 157.81 < - 539.7 = '$159 - $540' 539.7 < - 1552.42 = '$541 - $1,552' 1552.42 < - 118755.13 = '$1,553 - $118,755' ; VALUE TOTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.07 - 22.39 = '$1 - $22' 22.39 < - 124.33 = '$23 - $124' 124.33 < - 567.6 = '$125 - $568' 567.6 < - 239310.69 = '$569 - $239,311' ; VALUE TOTWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.93 - 211.71 = '$1 - $212' 211.71 < - 659.27 = '$213 - $659' 659.27 < - 2154.07 = '$660 - $2,154' 2154.07 < - 383355.51 = '$2,155 - $383,356' ; VALUE YESNO 0 = '0 No' 1 = '1 Yes' ;