SAS User File for PROJYR04 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 (PROJYR04.SSP) or the ASCII data file (PROJYR04.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\PROJYR04.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.PROJYR04; TITLE "List of Variables in MEPS PROJYR04 SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.PROJYR04 (OBS=20); TITLE "First 20 Observations in MEPS PROJYR04 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) PROJYR04 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 PROJYR04.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file PROJYR04.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 PROJYR04.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 PROJYR04.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\PROJYR04.DAT'; DATA PUFLIB.PROJYR04; INFILE IN1 LRECL=654; 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 (PROJYR04). In the example, after the successful completion of the DATA step, a PC file named PROJYR04.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 (654 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 PROJYR04.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., 654 for PROJYR04.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (656 for PROJYR04.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 (654 for PROJYR04.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 (PROJYR04.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.PROJYR04; 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 PROJYR04.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=654; 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 TOTEXP04 9.2 @28 TOTSLF04 8.2 @36 TOTPHI04 9.2 @45 TOTMCR04 9.2 @54 TOTMCD04 9.2 @63 TOTTRI04 9.2 @72 TOTVA04 9.2 @81 TOTWC04 9.2 @90 TOTOTP04 8.2 @98 TOTOSR04 8.2 @106 HOSEXP04 9.2 @115 HOSSLF04 8.2 @123 HOSPHI04 9.2 @132 HOSMCR04 9.2 @141 HOSMCD04 9.2 @150 HOSTRI04 9.2 @159 HOSVA04 9.2 @168 HOSWC04 9.2 @177 HOSOTP04 8.2 @185 HOSOSR04 8.2 @193 PHYEXP04 9.2 @202 PHYSLF04 8.2 @210 PHYPHI04 8.2 @218 PHYMCR04 8.2 @226 PHYMCD04 8.2 @234 PHYTRI04 8.2 @242 PHYVA04 7.2 @249 PHYWC04 8.2 @257 PHYOTP04 8.2 @265 PHYOSR04 8.2 @273 DVTEXP04 8.2 @281 DVTSLF04 8.2 @289 DVTPHI04 8.2 @297 DVTMCR04 7.2 @304 DVTMCD04 8.2 @312 DVTTRI04 4.2 @316 DVTVA04 6.2 @322 DVTWC04 4.2 @326 DVTOTP04 7.2 @333 DVTOSR04 8.2 @341 OBOEXP04 8.2 @349 OBOSLF04 8.2 @357 OBOPHI04 8.2 @365 OBOMCR04 8.2 @373 OBOMCD04 8.2 @381 OBOTRI04 4.2 @385 OBOVA04 7.2 @392 OBOWC04 8.2 @400 OBOOTP04 7.2 @407 OBOOSR04 8.2 @415 HHCEXP04 9.2 @424 HHCSLF04 8.2 @432 HHCPHI04 9.2 @441 HHCMCR04 8.2 @449 HHCMCD04 9.2 @458 HHCTRI04 7.2 @465 HHCVA04 8.2 @473 HHCWC04 8.2 @481 HHCOTP04 8.2 @489 HHCOSR04 7.2 @496 RXEXP04 9.2 @505 RXSLF04 8.2 @513 RXPHI04 8.2 @521 RXMCR04 8.2 @529 RXMCD04 9.2 @538 RXTRI04 8.2 @546 RXVA04 8.2 @554 RXWC04 8.2 @562 RXOTP04 8.2 @570 RXOSR04 7.2 @577 OTHEXP04 8.2 @585 OTHSLF04 8.2 @593 OTHPHI04 8.2 @601 OTHMCR04 8.2 @609 OTHMCD04 4.2 @613 OTHTRI04 4.2 @617 OTHVA04 4.2 @621 OTHWC04 8.2 @629 OTHOTP04 7.2 @636 OTHOSR04 7.2 @643 WTADJ04 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. TOTEXP04 TOTEXP. TOTSLF04 TOTSLF. TOTPHI04 TOTPHI. TOTMCR04 TOTMCR. TOTMCD04 TOTMCD. TOTTRI04 TOTTRI. TOTVA04 TOTVA. TOTWC04 TOTWC. TOTOTP04 TOTOTP. TOTOSR04 TOTOSR. HOSEXP04 HOSEXP. HOSSLF04 HOSSLF. HOSPHI04 HOSPHI. HOSMCR04 HOSMCR. HOSMCD04 HOSMCD. HOSTRI04 HOSTRI. HOSVA04 HOSVA. HOSWC04 HOSWC. HOSOTP04 HOSOTP. HOSOSR04 HOSOSR. PHYEXP04 PHYEXP. PHYSLF04 PHYSLF. PHYPHI04 PHYPHI. PHYMCR04 PHYMCR. PHYMCD04 PHYMCD. PHYTRI04 PHYTRI. PHYVA04 PHYVA. PHYWC04 PHYWC. PHYOTP04 PHYOTP. PHYOSR04 PHYOSR. DVTEXP04 DVTEXP. DVTSLF04 DVTSLF. DVTPHI04 DVTPHI. DVTMCR04 DVTMCR. DVTMCD04 DVTMCD. DVTTRI04 DVTTRI. DVTVA04 DVTVA. DVTWC04 DVTWC. DVTOTP04 DVTOTP. DVTOSR04 DVTOSR. OBOEXP04 OBOEXP. OBOSLF04 OBOSLF. OBOPHI04 OBOPHI. OBOMCR04 OBOMCR. OBOMCD04 OBOMCD. OBOTRI04 OBOTRI. OBOVA04 OBOVA. OBOWC04 OBOWC. OBOOTP04 OBOOTP. OBOOSR04 OBOOSR. HHCEXP04 HHCEXP. HHCSLF04 HHCSLF. HHCPHI04 HHCPHI. HHCMCR04 HHCMCR. HHCMCD04 HHCMCD. HHCTRI04 HHCTRI. HHCVA04 HHCVA. HHCWC04 HHCWC. HHCOTP04 HHCOTP. HHCOSR04 HHCOSR. RXEXP04 RXEXP. RXSLF04 RXSLF. RXPHI04 RXPHI. RXMCR04 RXMCR. RXMCD04 RXMCD. RXTRI04 RXTRI. RXVA04 RXVA. RXWC04 RXWC. RXOTP04 RXOTP. RXOSR04 RXOSR. OTHEXP04 OTHEXP. OTHSLF04 OTHSLF. OTHPHI04 OTHPHI. OTHMCR04 OTHMCR. OTHMCD04 OTHMCD. OTHTRI04 OTHTRI. OTHVA04 OTHVA. OTHWC04 OTHWC. OTHOTP04 OTHOTP. OTHOSR04 OTHOSR. WTADJ04 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' TOTEXP04='TOTAL, PAID BY TOTAL, 2004' TOTSLF04='TOTAL, PAID BY OUT OF POCKET, 2004' TOTPHI04='TOTAL, PAID BY PRIV INSU, 2004' TOTMCR04='TOTAL, PAID BY MEDICARE, 2004' TOTMCD04='TOTAL, PAID BY MEDICAID, 2004' TOTTRI04='TOTAL, PAID BY TRICARE, 2004' TOTVA04 ='TOTAL, PAID BY VA, 2004' TOTWC04 ='TOTAL, PAID BY WORKERS COMP, 2004' TOTOTP04='TOTAL, PAID BY OTHER PUBLIC, 2004' TOTOSR04='TOTAL, PAID BY OTHER, 2004' HOSEXP04='HOSPITAL, PAID BY TOTAL, 2004' HOSSLF04='HOSPITAL, PAID BY OUT OF POCKET, 2004' HOSPHI04='HOSPITAL, PAID BY PRIV INSU, 2004' HOSMCR04='HOSPITAL, PAID BY MEDICARE, 2004' HOSMCD04='HOSPITAL, PAID BY MEDICAID, 2004' HOSTRI04='HOSPITAL, PAID BY TRICARE, 2004' HOSVA04 ='HOSPITAL, PAID BY VA, 2004' HOSWC04 ='HOSPITAL, PAID BY WORKERS COMP, 2004' HOSOTP04='HOSPITAL, PAID BY OTHER PUBLIC, 2004' HOSOSR04='HOSPITAL, PAID BY OTHER, 2004' PHYEXP04='PHYSICIAN, PAID BY TOTAL, 2004' PHYSLF04='PHYSICIAN, PAID BY OUT OF POCKET, 2004' PHYPHI04='PHYSICIAN, PAID BY PRIV INSU, 2004' PHYMCR04='PHYSICIAN, PAID BY MEDICARE, 2004' PHYMCD04='PHYSICIAN, PAID BY MEDICAID, 2004' PHYTRI04='PHYSICIAN, PAID BY TRICARE, 2004' PHYVA04 ='PHYSICIAN, PAID BY VA, 2004' PHYWC04 ='PHYSICIAN, PAID BY WORKERS COMP, 2004' PHYOTP04='PHYSICIAN, PAID BY OTHER PUBLIC, 2004' PHYOSR04='PHYSICIAN, PAID BY OTHER, 2004' DVTEXP04='DENTAL, PAID BY TOTAL, 2004' DVTSLF04='DENTAL, PAID BY OUT OF POCKET, 2004' DVTPHI04='DENTAL, PAID BY PRIV INSU, 2004' DVTMCR04='DENTAL, PAID BY MEDICARE, 2004' DVTMCD04='DENTAL, PAID BY MEDICAID, 2004' DVTTRI04='DENTAL, PAID BY TRICARE, 2004' DVTVA04 ='DENTAL, PAID BY VA, 2004' DVTWC04 ='DENTAL, PAID BY WORKERS COMP, 2004' DVTOTP04='DENTAL, PAID BY OTHER PUBLIC, 2004' DVTOSR04='DENTAL, PAID BY OTHER, 2004' OBOEXP04='OTHER PROVIDER, PAID BY TOTAL, 2004' OBOSLF04='OTHER PROVIDER, BY OUT OF POCKET, 2004' OBOPHI04='OTHER PROVIDER, PAID BY PRIV INSU, 2004' OBOMCR04='OTHER PROVIDER, PAID BY MEDICARE, 2004' OBOMCD04='OTHER PROVIDER, PAID BY MEDICAID, 2004' OBOTRI04='OTHER PROVIDER, PAID BY TRICARE, 2004' OBOVA04 ='OTHER PROVIDER, PAID BY VA, 2004' OBOWC04 ='OTHER PROVIDER, BY WORKERS COMP, 2004' OBOOTP04='OTHER PROVIDER, BY OTHER PUBLIC, 2004' OBOOSR04='OTHER PROVIDER, PAID BY OTHER, 2004' HHCEXP04='HOME HEALTH, PAID BY TOTAL, 2004' HHCSLF04='HOME HEALTH, PAID BY OUT OF POCKET, 2004' HHCPHI04='HOME HEALTH, PAID BY PRIV INSU, 2004' HHCMCR04='HOME HEALTH, PAID BY MEDICARE, 2004' HHCMCD04='HOME HEALTH, PAID BY MEDICAID, 2004' HHCTRI04='HOME HEALTH, PAID BY TRICARE, 2004' HHCVA04 ='HOME HEALTH, PAID BY VA, 2004' HHCWC04 ='HOME HEALTH, PAID BY WORKERS COMP, 2004' HHCOTP04='HOME HEALTH, PAID BY OTHER PUBLIC, 2004' HHCOSR04='HOME HEALTH, PAID BY OTHER, 2004' RXEXP04 ='RX, PAID BY TOTAL, 2004' RXSLF04 ='RX, PAID BY OUT OF POCKET, 2004' RXPHI04 ='RX, PAID BY PRIV INSU, 2004' RXMCR04 ='RX, PAID BY MEDICARE, 2004' RXMCD04 ='RX, PAID BY MEDICAID, 2004' RXTRI04 ='RX, PAID BY TRICARE, 2004' RXVA04 ='RX, PAID BY VA, 2004' RXWC04 ='RX, PAID BY WORKERS COMP, 2004' RXOTP04 ='RX, PAID BY OTHER PUBLIC, 2004' RXOSR04 ='RX, PAID BY OTHER, 2004' OTHEXP04='OTHER MEDICAL, PAID BY TOTAL, 2004' OTHSLF04='OTHER MEDICAL, BY OUT OF POCKET, 2004' OTHPHI04='OTHER MEDICAL, PAID BY PRIV INSU, 2004' OTHMCR04='OTHER MEDICAL, PAID BY MEDICARE, 2004' OTHMCD04='OTHER MEDICAL, PAID BY MEDICAID, 2004' OTHTRI04='OTHER MEDICAL, PAID BY TRICARE, 2004' OTHVA04 ='OTHER MEDICAL, PAID BY VA, 2004' OTHWC04 ='OTHER MEDICAL, BY WORKERS COMP, 2004' OTHOTP04='OTHER MEDICAL, PAID BY OTHR PUBLIC, 2004' OTHOSR04='OTHER MEDICAL, PAID BY OTHER, 2004' WTADJ04 ='GROWTH/FERTILITY/MORTALITY ADJ WGT,2004' ; * 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.95 - 114.345 = '$1 - $114' 114.345 < - 224.14 = '$115 - $224' 224.14 < - 523.515 = '$225 - $524' 523.515 < - 20881.67 = '$525 - $20,882' ; VALUE DVTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.73 - 76.02 = '$1 - $76' 76.02 < - 134.49 = '$77 - $134' 134.49 < - 279.73 = '$135 - $280' 279.73 < - 11665.1 = '$281 - $11,665' ; VALUE DVTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.21 - 12.83 = '$1 - $13' 12.83 < - 26.41 = '$14 - $26' 26.41 < - 67.9 = '$27 - $68' 67.9 < - 1376.15 = '$69 - $1,376' ; VALUE DVTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.03 - 83.44 = '$1 - $83' 83.44 < - 169.03 = '$84 - $169' 169.03 < - 310.24 = '$170 - $310' 310.24 < - 10245.45 = '$311 - $10,245' ; VALUE DVTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 11.07 - 63.62 = '$11 - $64' 63.62 < - 126.765 = '$65 - $127' 126.765 < - 354.33 = '$128 - $354' 354.33 < - 4431.32 = '$355 - $4,431' ; VALUE DVTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.31 - 122.15 = '$1 - $122' 122.15 < - 217.08 = '$123 - $217' 217.08 < - 447.565 = '$218 - $448' 447.565 < - 18676.04 = '$449 - $18,676' ; VALUE DVTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.06 - 44.4 = '$1 - $44' 44.4 < - 118.51 = '$45 - $119' 118.51 < - 327 = '$120 - $327' 327 < - 18349.51 = '$328 - $18,350' ; VALUE DVTTRI 0 = '0' ; VALUE DVTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.03 - 1.64 = '$1 - $2' 1.64 < - 3.785 = '$3 - $4' 3.785 < - 13.5 = '$5 - $14' 13.5 < - 149.35 = '$15 - $149' ; VALUE DVTWC 0 = '0' ; VALUE GTZERO 0 = '0' 0 < - HIGH = '>0' ; VALUE HHCEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.95 - 842.61 = '$5 - $843' 842.61 < - 3300.68 = '$844 - $3,301' 3300.68 < - 8543.43 = '$3,302 - $8,543' 8543.43 < - 201549.16 = '$8,544 - $201,549' ; VALUE HHCMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.12 - 605.94 = '$3 - $606' 605.94 < - 2777.59 = '$607 - $2,778' 2777.59 < - 9119.26 = '$2,779 - $9,119' 9119.26 < - 142791.03 = '$9,120 - $142,791' ; VALUE HHCMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 12.75 - 1492.88 = '$12 - $1,493' 1492.88 < - 3375.09 = '$1,494 - $3,375' 3375.09 < - 7565.63 = '$3,376 - $7,566' 7565.63 < - 60607.42 = '$7,567 - $60,607' ; VALUE HHCOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 50.27 - 124.05 = '$50 - $124' 124.05 < - 284.57 = '$125 - $285' 284.57 < - 807.23 = '$286 - $807' 807.23 < - 2423.6 = '$808 - $2,424' ; VALUE HHCOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 13.72 - 291.56 = '$13 - $292' 291.56 < - 729.095 = '$293 - $729' 729.095 < - 1897.86 = '$730 - $1,898' 1897.86 < - 14316.43 = '$1,899 - $14,316' ; VALUE HHCPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 34.48 - 722.98 = '$34 - $723' 722.98 < - 2321.8 = '$724 - $2,322' 2321.8 < - 7106.855 = '$2,323 - $7,107' 7106.855 < - 117452.08 = '$7,108 - $117,452' ; VALUE HHCSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.95 - 104.18 = '$5 - $104' 104.18 < - 362.05 = '$105 - $362' 362.05 < - 1215.93 = '$363 - $1,216' 1215.93 < - 71080.34 = '$1,217 - $71,080' ; VALUE HHCTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.79 - 48.095 = '$5 - $48' 48.095 < - 156.555 = '$49 - $157' 156.555 < - 417.555 = '$158 - $418' 417.555 < - 1621.01 = '$419 - $1,621' ; VALUE HHCVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 158.54 - 1511.82 = '$158 - $1,512' 1511.82 < - 3963.54 = '$1,513 - $3,964' 3963.54 < - 9029.79 = '$3,965 - $9,030' 9029.79 < - 41220.83 = '$9,031 - $41,221' ; VALUE HHCWC 0 = '0' 20000 - 40000 = '$20,000 - $40,000' ; VALUE HOSEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.15 - 209.83 = '$2 - $210' 209.83 < - 786.31 = '$211 - $786' 786.31 < - 3500.92 = '$787 - $3,501' 3500.92 < - 638307.88 = '$3,502 - $638,308' ; VALUE HOSMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.3 - 144.46 = '$1 - $144' 144.46 < - 538.83 = '$145 - $539' 538.83 < - 2641.025 = '$540 - $2,641' 2641.025 < - 511541.12 = '$2,642 - $511,541' ; VALUE HOSMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.96 - 175.5 = '$1 - $176' 175.5 < - 908.76 = '$177 - $909' 908.76 < - 5499.11 = '$910 - $5,499' 5499.11 < - 174664.38 = '$5,500 - $174,664' ; VALUE HOSOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 2 - 85.61 = '$2 - $86' 85.61 < - 278.265 = '$87 - $278' 278.265 < - 1044.63 = '$279 - $1,045' 1044.63 < - 55945.52 = '$1,046 - $55,946' ; VALUE HOSOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.81 - 79.25 = '$5 - $79' 79.25 < - 245.665 = '$80 - $246' 245.665 < - 1014.29 = '$247 - $1,014' 1014.29 < - 51096.65 = '$1,015 - $51,097' ; VALUE HOSPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.08 - 182.18 = '$1 - $182' 182.18 < - 664.41 = '$183 - $664' 664.41 < - 2240.91 = '$665 - $2,241' 2240.91 < - 638307.88 = '$2,242 - $638,308' ; VALUE HOSSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.24 - 32.18 = '$1 - $32' 32.18 < - 96.54 = '$33 - $97' 96.54 < - 321.79 = '$98 - $322' 321.79 < - 80522.2 = '$323 - $80,522' ; VALUE HOSTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.57 - 44.15 = '$1 - $44' 44.15 < - 160.84 = '$45 - $161' 160.84 < - 529.145 = '$162 - $529' 529.145 < - 101887.89 = '$530 - $101,888' ; VALUE HOSVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.14 - 154.89 = '$1 - $155' 154.89 < - 616.92 = '$156 - $617' 616.92 < - 2542.1 = '$618 - $2,542' 2542.1 < - 236408.5 = '$2,543 - $236,409' ; VALUE HOSWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.88 - 73.08 = '$1 - $73' 73.08 < - 204.93 = '$74 - $205' 204.93 < - 669.49 = '$206 - $669' 669.49 < - 311954.41 = '$670 - $311,954' ; VALUE $ID 'N0000104' - 'N7338004' = 'N0000104 - N7338004' ; 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.09 - 14.76 = '$1 - $15' 14.76 < - 54.33 = '$16 - $54' 54.33 < - 216.7 = '$55 - $217' 216.7 < - 64136.64 = '$218 - $64,137' ; VALUE OBOMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.09 - 7.4 = '$1 - $7' 7.4 < - 21.44 = '$8 - $21' 21.44 < - 84.35 = '$22 - $84' 84.35 < - 51711.85 = '$85 - $51,712' ; VALUE OBOMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.09 - 20.4 = '$1 - $20' 20.4 < - 76.98 = '$21 - $77' 76.98 < - 237.33 = '$78 - $237' 237.33 < - 55403.64 = '$238 - $55,404' ; VALUE OBOOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.03 - 32.22 = '$1 - $32' 32.22 < - 89.14 = '$33 - $89' 89.14 < - 291.04 = '$90 - $291' 291.04 < - 11308.64 = '$292 - $11,309' ; VALUE OBOOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.42 - 40.22 = '$2 - $40' 40.22 < - 98.48 = '$41 - $98' 98.48 < - 277.69 = '$99 - $278' 277.69 < - 4617.66 = '$279 - $4,618' ; VALUE OBOPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.1 - 9.88 = '$1 - $10' 9.88 < - 32.36 = '$11 - $32' 32.36 < - 132.34 = '$33 - $132' 132.34 < - 56299.98 = '$133 - $56,300' ; VALUE OBOSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.13 - 3.46 = '$1 - $3' 3.46 < - 11.37 = '$4 - $11' 11.37 < - 44.13 = '$12 - $44' 44.13 < - 29182.97 = '$45 - $29,183' ; VALUE OBOTRI 0 = '0' ; VALUE OBOVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.13 - 2.29 = '$1 - $2' 2.29 < - 7 = '$3 - $7' 7 < - 21.42 = '$8 - $21' 21.42 < - 1050.64 = '$22 - $1,051' ; VALUE OBOWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.27 - 59.19 = '$1 - $59' 59.19 < - 168.87 = '$60 - $169' 168.87 < - 643.81 = '$170 - $644' 643.81 < - 15973.6 = '$645 - $15,974' ; VALUE OTHEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.67 - 133.42 = '$1 - $133' 133.42 < - 273.45 = '$134 - $273' 273.45 < - 498.01 = '$274 - $498' 498.01 < - 53091.67 = '$499 - $53,092' ; VALUE OTHMCD 0 = '0' ; VALUE OTHMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.28 - 610.575 = '$6 - $611' 610.575 < - 1189.135 = '$612 - $1,189' 1189.135 < - 2839.49 = '$1,190 - $2,839' 2839.49 < - 50808 = '$2,840 - $50,808' ; VALUE OTHOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.87 - 91.32 = '$5 - $91' 91.32 < - 202.93 = '$92 - $203' 202.93 < - 349 = '$204 - $349' 349 < - 6843.1 = '$350 - $6,843' ; VALUE OTHOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.67 - 55.34 = '$2 - $55' 55.34 < - 100.775 = '$56 - $101' 100.775 < - 258.26 = '$102 - $258' 258.26 < - 2775.7 = '$259 - $2,776' ; VALUE OTHPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.87 - 63.4 = '$1 - $63' 63.4 < - 125.19 = '$64 - $125' 125.19 < - 225.37 = '$126 - $225' 225.37 < - 16226.64 = '$226 - $16,227' ; VALUE OTHSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.67 - 100.37 = '$1 - $100' 100.37 < - 234.4 = '$101 - $234' 234.4 < - 434.08 = '$235 - $434' 434.08 < - 47269.57 = '$435 - $47,270' ; VALUE OTHTRI 0 = '0' ; VALUE OTHVA 0 = '0' ; VALUE OTHWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 162.59 - 1065.23 = '$162 - $1,065' 1065.23 < - 2109.77 = '$1,066 - $2,110' 2109.77 < - 4307.9 = '$2,111 - $4,308' 4307.9 < - 19565.68 = '$4,309 - $19,566' ; VALUE PHYEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.15 - 136.56 = '$1 - $137' 136.56 < - 354.69 = '$138 - $355' 354.69 < - 1080.31 = '$356 - $1,080' 1080.31 < - 106150.29 = '$1,081 - $106,150' ; VALUE PHYMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.1 - 77.99 = '$1 - $78' 77.99 < - 190.05 = '$79 - $190' 190.05 < - 523.75 = '$191 - $524' 523.75 < - 52829.63 = '$525 - $52,830' ; VALUE PHYMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.37 - 209.88 = '$1 - $210' 209.88 < - 622.55 = '$211 - $623' 622.55 < - 1769.36 = '$624 - $1,769' 1769.36 < - 83126.27 = '$1,770 - $83,126' ; VALUE PHYOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.04 - 45.84 = '$1 - $46' 45.84 < - 99.48 = '$47 - $99' 99.48 < - 253.17 = '$100 - $253' 253.17 < - 83750.03 = '$254 - $83,750' ; VALUE PHYOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.95 - 45.51 = '$1 - $46' 45.51 < - 100.49 = '$47 - $100' 100.49 < - 289.59 = '$101 - $290' 289.59 < - 36948.06 = '$291 - $36,948' ; VALUE PHYPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.45 - 113.07 = '$1 - $113' 113.07 < - 277.4 = '$114 - $277' 277.4 < - 770.4 = '$278 - $770' 770.4 < - 83103.3 = '$771 - $83,103' ; VALUE PHYSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.02 - 20.48 = '$1 - $20' 20.48 < - 51.12 = '$21 - $51' 51.12 < - 131.1 = '$52 - $131' 131.1 < - 28698.53 = '$132 - $28,699' ; VALUE PHYTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.46 - 126.09 = '$5 - $126' 126.09 < - 372.6 = '$127 - $373' 372.6 < - 952.36 = '$374 - $952' 952.36 < - 91754.4 = '$953 - $91,754' ; VALUE PHYVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.33 - 17.6 = '$1 - $18' 17.6 < - 58.11 = '$19 - $58' 58.11 < - 193.25 = '$59 - $193' 193.25 < - 6666.84 = '$194 - $6,667' ; VALUE PHYWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 4.56 - 197.68 = '$4 - $198' 197.68 < - 501.54 = '$199 - $502' 501.54 < - 1595.82 = '$503 - $1,596' 1595.82 < - 51957.56 = '$1,597 - $51,958' ; 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.39 - 64.76 = '$1 - $65' 64.76 < - 250.6 = '$66 - $251' 250.6 < - 909.68 = '$252 - $910' 909.68 < - 342751.73 = '$911 - $342,752' ; VALUE RXMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.61 - 62.245 = '$1 - $62' 62.245 < - 200.17 = '$63 - $200' 200.17 < - 849.36 = '$201 - $849' 849.36 < - 340641.4 = '$850 - $340,641' ; VALUE RXMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.46 - 48.56 = '$1 - $49' 48.56 < - 146.395 = '$50 - $146' 146.395 < - 393.32 = '$147 - $393' 393.32 < - 17080.11 = '$394 - $17,080' ; VALUE RXOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.15 - 29.44 = '$3 - $29' 29.44 < - 113.485 = '$30 - $113' 113.485 < - 255.765 = '$114 - $256' 255.765 < - 2961.57 = '$257 - $2,962' ; VALUE RXOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.18 - 36.55 = '$1 - $37' 36.55 < - 182.205 = '$38 - $182' 182.205 < - 694.76 = '$183 - $695' 694.76 < - 28901.7 = '$696 - $28,902' ; VALUE RXPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.39 - 56.24 = '$1 - $56' 56.24 < - 215.36 = '$57 - $215' 215.36 < - 789.21 = '$216 - $789' 789.21 < - 61161.87 = '$790 - $61,162' ; VALUE RXSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.56 - 15.64 = '$1 - $16' 15.64 < - 60.84 = '$17 - $61' 60.84 < - 216.13 = '$62 - $216' 216.13 < - 20435.75 = '$217 - $20,436' ; VALUE RXTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.39 - 22.13 = '$1 - $22' 22.13 < - 105.1 = '$23 - $105' 105.1 < - 442.35 = '$106 - $442' 442.35 < - 15908.22 = '$443 - $15,908' ; VALUE RXVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.46 - 33.53 = '$1 - $34' 33.53 < - 144.325 = '$35 - $144' 144.325 < - 409.5 = '$145 - $410' 409.5 < - 10490.86 = '$411 - $10,491' ; VALUE RXWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.19 - 51.89 = '$1 - $52' 51.89 < - 133.01 = '$53 - $133' 133.01 < - 433.29 = '$134 - $433' 433.29 < - 13593.6 = '$434 - $13,594' ; VALUE SEX 1 = '1 Male' 2 = '2 Female' ; VALUE TOTEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.58 - 327.07 = '$1 - $327' 327.07 < - 1024.61 = '$328 - $1,025' 1024.61 < - 3360.95 = '$1,026 - $3,361' 3360.95 < - 694748.65 = '$3,362 - $694,749' ; VALUE TOTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.2 - 182.28 = '$1 - $182' 182.28 < - 554.56 = '$183 - $555' 554.56 < - 2358.8 = '$556 - $2,359' 2358.8 < - 521890.92 = '$2,360 - $521,891' ; VALUE TOTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.93 - 318.36 = '$1 - $318' 318.36 < - 1118.22 = '$319 - $1,118' 1118.22 < - 4427.2 = '$1,119 - $4,427' 4427.2 < - 188564.36 = '$4,428 - $188,564' ; VALUE TOTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.03 - 58.39 = '$1 - $58' 58.39 < - 139.61 = '$59 - $140' 139.61 < - 375.23 = '$141 - $375' 375.23 < - 83750.03 = '$376 - $83,750' ; VALUE TOTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.95 - 62.36 = '$1 - $62' 62.36 < - 186.97 = '$63 - $187' 186.97 < - 680.32 = '$188 - $680' 680.32 < - 51096.65 = '$681 - $51,097' ; VALUE TOTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.09 - 221.5 = '$1 - $222' 221.5 < - 662.83 = '$223 - $663' 662.83 < - 2046.56 = '$664 - $2,047' 2046.56 < - 690145.38 = '$2,048 - $690,145' ; VALUE TOTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.56 - 58.06 = '$1 - $58' 58.06 < - 220.675 = '$59 - $221' 220.675 < - 646.63 = '$222 - $647' 646.63 < - 94720.73 = '$648 - $94,721' ; VALUE TOTTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.57 - 148.69 = '$1 - $149' 148.69 < - 508.73 = '$150 - $509' 508.73 < - 1468.07 = '$510 - $1,468' 1468.07 < - 113613.48 = '$1,469 - $113,613' ; VALUE TOTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.07 - 22.08 = '$1 - $22' 22.08 < - 119.955 = '$23 - $120' 119.955 < - 549.49 = '$121 - $549' 549.49 < - 236577.61 = '$550 - $236,578' ; VALUE TOTWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.88 - 213.03 = '$1 - $213' 213.03 < - 668.31 = '$214 - $668' 668.31 < - 2168.24 = '$669 - $2,168' 2168.24 < - 376586.13 = '$2,169 - $376,586' ; VALUE YESNO 0 = '0 No' 1 = '1 Yes' ;