SAS User File for PROJYR03 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 (PROJYR03.SSP) or the ASCII data file (PROJYR03.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\PROJYR03.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.PROJYR03; TITLE "List of Variables in MEPS PROJYR03 SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.PROJYR03 (OBS=20); TITLE "First 20 Observations in MEPS PROJYR03 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) PROJYR03 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 PROJYR03.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file PROJYR03.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 PROJYR03.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 PROJYR03.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\PROJYR03.DAT'; DATA PUFLIB.PROJYR03; INFILE IN1 LRECL=651; 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 (PROJYR03). In the example, after the successful completion of the DATA step, a PC file named PROJYR03.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 (651 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 PROJYR03.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., 651 for PROJYR03.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (653 for PROJYR03.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 (651 for PROJYR03.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 (PROJYR03.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.PROJYR03; 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 PROJYR03.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=651; 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 TOTEXP03 9.2 @28 TOTSLF03 8.2 @36 TOTPHI03 9.2 @45 TOTMCR03 9.2 @54 TOTMCD03 9.2 @63 TOTTRI03 9.2 @72 TOTVA03 9.2 @81 TOTWC03 9.2 @90 TOTOTP03 8.2 @98 TOTOSR03 8.2 @106 HOSEXP03 9.2 @115 HOSSLF03 8.2 @123 HOSPHI03 9.2 @132 HOSMCR03 9.2 @141 HOSMCD03 9.2 @150 HOSTRI03 8.2 @158 HOSVA03 9.2 @167 HOSWC03 9.2 @176 HOSOTP03 8.2 @184 HOSOSR03 8.2 @192 PHYEXP03 9.2 @201 PHYSLF03 8.2 @209 PHYPHI03 8.2 @217 PHYMCR03 8.2 @225 PHYMCD03 8.2 @233 PHYTRI03 8.2 @241 PHYVA03 7.2 @248 PHYWC03 8.2 @256 PHYOTP03 8.2 @264 PHYOSR03 8.2 @272 DVTEXP03 8.2 @280 DVTSLF03 8.2 @288 DVTPHI03 8.2 @296 DVTMCR03 7.2 @303 DVTMCD03 8.2 @311 DVTTRI03 4.2 @315 DVTVA03 6.2 @321 DVTWC03 4.2 @325 DVTOTP03 7.2 @332 DVTOSR03 7.2 @339 OBOEXP03 8.2 @347 OBOSLF03 8.2 @355 OBOPHI03 8.2 @363 OBOMCR03 8.2 @371 OBOMCD03 8.2 @379 OBOTRI03 4.2 @383 OBOVA03 7.2 @390 OBOWC03 8.2 @398 OBOOTP03 7.2 @405 OBOOSR03 8.2 @413 HHCEXP03 9.2 @422 HHCSLF03 8.2 @430 HHCPHI03 9.2 @439 HHCMCR03 8.2 @447 HHCMCD03 9.2 @456 HHCTRI03 7.2 @463 HHCVA03 8.2 @471 HHCWC03 8.2 @479 HHCOTP03 8.2 @487 HHCOSR03 7.2 @494 RXEXP03 9.2 @503 RXSLF03 8.2 @511 RXPHI03 8.2 @519 RXMCR03 8.2 @527 RXMCD03 9.2 @536 RXTRI03 8.2 @544 RXVA03 7.2 @551 RXWC03 8.2 @559 RXOTP03 8.2 @567 RXOSR03 7.2 @574 OTHEXP03 8.2 @582 OTHSLF03 8.2 @590 OTHPHI03 8.2 @598 OTHMCR03 8.2 @606 OTHMCD03 4.2 @610 OTHTRI03 4.2 @614 OTHVA03 4.2 @618 OTHWC03 8.2 @626 OTHOTP03 7.2 @633 OTHOSR03 7.2 @640 WTADJ03 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. TOTEXP03 TOTEXP. TOTSLF03 TOTSLF. TOTPHI03 TOTPHI. TOTMCR03 TOTMCR. TOTMCD03 TOTMCD. TOTTRI03 TOTTRI. TOTVA03 TOTVA. TOTWC03 TOTWC. TOTOTP03 TOTOTP. TOTOSR03 TOTOSR. HOSEXP03 HOSEXP. HOSSLF03 HOSSLF. HOSPHI03 HOSPHI. HOSMCR03 HOSMCR. HOSMCD03 HOSMCD. HOSTRI03 HOSTRI. HOSVA03 HOSVA. HOSWC03 HOSWC. HOSOTP03 HOSOTP. HOSOSR03 HOSOSR. PHYEXP03 PHYEXP. PHYSLF03 PHYSLF. PHYPHI03 PHYPHI. PHYMCR03 PHYMCR. PHYMCD03 PHYMCD. PHYTRI03 PHYTRI. PHYVA03 PHYVA. PHYWC03 PHYWC. PHYOTP03 PHYOTP. PHYOSR03 PHYOSR. DVTEXP03 DVTEXP. DVTSLF03 DVTSLF. DVTPHI03 DVTPHI. DVTMCR03 DVTMCR. DVTMCD03 DVTMCD. DVTTRI03 DVTTRI. DVTVA03 DVTVA. DVTWC03 DVTWC. DVTOTP03 DVTOTP. DVTOSR03 DVTOSR. OBOEXP03 OBOEXP. OBOSLF03 OBOSLF. OBOPHI03 OBOPHI. OBOMCR03 OBOMCR. OBOMCD03 OBOMCD. OBOTRI03 OBOTRI. OBOVA03 OBOVA. OBOWC03 OBOWC. OBOOTP03 OBOOTP. OBOOSR03 OBOOSR. HHCEXP03 HHCEXP. HHCSLF03 HHCSLF. HHCPHI03 HHCPHI. HHCMCR03 HHCMCR. HHCMCD03 HHCMCD. HHCTRI03 HHCTRI. HHCVA03 HHCVA. HHCWC03 HHCWC. HHCOTP03 HHCOTP. HHCOSR03 HHCOSR. RXEXP03 RXEXP. RXSLF03 RXSLF. RXPHI03 RXPHI. RXMCR03 RXMCR. RXMCD03 RXMCD. RXTRI03 RXTRI. RXVA03 RXVA. RXWC03 RXWC. RXOTP03 RXOTP. RXOSR03 RXOSR. OTHEXP03 OTHEXP. OTHSLF03 OTHSLF. OTHPHI03 OTHPHI. OTHMCR03 OTHMCR. OTHMCD03 OTHMCD. OTHTRI03 OTHTRI. OTHVA03 OTHVA. OTHWC03 OTHWC. OTHOTP03 OTHOTP. OTHOSR03 OTHOSR. WTADJ03 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' TOTEXP03='TOTAL, PAID BY TOTAL, 2003' TOTSLF03='TOTAL, PAID BY OUT OF POCKET, 2003' TOTPHI03='TOTAL, PAID BY PRIV INSU, 2003' TOTMCR03='TOTAL, PAID BY MEDICARE, 2003' TOTMCD03='TOTAL, PAID BY MEDICAID, 2003' TOTTRI03='TOTAL, PAID BY TRICARE, 2003' TOTVA03 ='TOTAL, PAID BY VA, 2003' TOTWC03 ='TOTAL, PAID BY WORKERS COMP, 2003' TOTOTP03='TOTAL, PAID BY OTHER PUBLIC, 2003' TOTOSR03='TOTAL, PAID BY OTHER, 2003' HOSEXP03='HOSPITAL, PAID BY TOTAL, 2003' HOSSLF03='HOSPITAL, PAID BY OUT OF POCKET, 2003' HOSPHI03='HOSPITAL, PAID BY PRIV INSU, 2003' HOSMCR03='HOSPITAL, PAID BY MEDICARE, 2003' HOSMCD03='HOSPITAL, PAID BY MEDICAID, 2003' HOSTRI03='HOSPITAL, PAID BY TRICARE, 2003' HOSVA03 ='HOSPITAL, PAID BY VA, 2003' HOSWC03 ='HOSPITAL, PAID BY WORKERS COMP, 2003' HOSOTP03='HOSPITAL, PAID BY OTHER PUBLIC, 2003' HOSOSR03='HOSPITAL, PAID BY OTHER, 2003' PHYEXP03='PHYSICIAN, PAID BY TOTAL, 2003' PHYSLF03='PHYSICIAN, PAID BY OUT OF POCKET, 2003' PHYPHI03='PHYSICIAN, PAID BY PRIV INSU, 2003' PHYMCR03='PHYSICIAN, PAID BY MEDICARE, 2003' PHYMCD03='PHYSICIAN, PAID BY MEDICAID, 2003' PHYTRI03='PHYSICIAN, PAID BY TRICARE, 2003' PHYVA03 ='PHYSICIAN, PAID BY VA, 2003' PHYWC03 ='PHYSICIAN, PAID BY WORKERS COMP, 2003' PHYOTP03='PHYSICIAN, PAID BY OTHER PUBLIC, 2003' PHYOSR03='PHYSICIAN, PAID BY OTHER, 2003' DVTEXP03='DENTAL, PAID BY TOTAL, 2003' DVTSLF03='DENTAL, PAID BY OUT OF POCKET, 2003' DVTPHI03='DENTAL, PAID BY PRIV INSU, 2003' DVTMCR03='DENTAL, PAID BY MEDICARE, 2003' DVTMCD03='DENTAL, PAID BY MEDICAID, 2003' DVTTRI03='DENTAL, PAID BY TRICARE, 2003' DVTVA03 ='DENTAL, PAID BY VA, 2003' DVTWC03 ='DENTAL, PAID BY WORKERS COMP, 2003' DVTOTP03='DENTAL, PAID BY OTHER PUBLIC, 2003' DVTOSR03='DENTAL, PAID BY OTHER, 2003' OBOEXP03='OTHER PROVIDER, PAID BY TOTAL, 2003' OBOSLF03='OTHER PROVIDER, BY OUT OF POCKET, 2003' OBOPHI03='OTHER PROVIDER, PAID BY PRIV INSU, 2003' OBOMCR03='OTHER PROVIDER, PAID BY MEDICARE, 2003' OBOMCD03='OTHER PROVIDER, PAID BY MEDICAID, 2003' OBOTRI03='OTHER PROVIDER, PAID BY TRICARE, 2003' OBOVA03 ='OTHER PROVIDER, PAID BY VA, 2003' OBOWC03 ='OTHER PROVIDER, BY WORKERS COMP, 2003' OBOOTP03='OTHER PROVIDER, BY OTHER PUBLIC, 2003' OBOOSR03='OTHER PROVIDER, PAID BY OTHER, 2003' HHCEXP03='HOME HEALTH, PAID BY TOTAL, 2003' HHCSLF03='HOME HEALTH, PAID BY OUT OF POCKET, 2003' HHCPHI03='HOME HEALTH, PAID BY PRIV INSU, 2003' HHCMCR03='HOME HEALTH, PAID BY MEDICARE, 2003' HHCMCD03='HOME HEALTH, PAID BY MEDICAID, 2003' HHCTRI03='HOME HEALTH, PAID BY TRICARE, 2003' HHCVA03 ='HOME HEALTH, PAID BY VA, 2003' HHCWC03 ='HOME HEALTH, PAID BY WORKERS COMP, 2003' HHCOTP03='HOME HEALTH, PAID BY OTHER PUBLIC, 2003' HHCOSR03='HOME HEALTH, PAID BY OTHER, 2003' RXEXP03 ='RX, PAID BY TOTAL, 2003' RXSLF03 ='RX, PAID BY OUT OF POCKET, 2003' RXPHI03 ='RX, PAID BY PRIV INSU, 2003' RXMCR03 ='RX, PAID BY MEDICARE, 2003' RXMCD03 ='RX, PAID BY MEDICAID, 2003' RXTRI03 ='RX, PAID BY TRICARE, 2003' RXVA03 ='RX, PAID BY VA, 2003' RXWC03 ='RX, PAID BY WORKERS COMP, 2003' RXOTP03 ='RX, PAID BY OTHER PUBLIC, 2003' RXOSR03 ='RX, PAID BY OTHER, 2003' OTHEXP03='OTHER MEDICAL, PAID BY TOTAL, 2003' OTHSLF03='OTHER MEDICAL, BY OUT OF POCKET, 2003' OTHPHI03='OTHER MEDICAL, PAID BY PRIV INSU, 2003' OTHMCR03='OTHER MEDICAL, PAID BY MEDICARE, 2003' OTHMCD03='OTHER MEDICAL, PAID BY MEDICAID, 2003' OTHTRI03='OTHER MEDICAL, PAID BY TRICARE, 2003' OTHVA03 ='OTHER MEDICAL, PAID BY VA, 2003' OTHWC03 ='OTHER MEDICAL, BY WORKERS COMP, 2003' OTHOTP03='OTHER MEDICAL, PAID BY OTHR PUBLIC, 2003' OTHOSR03='OTHER MEDICAL, PAID BY OTHER, 2003' WTADJ03 ='GROWTH/FERTILITY/MORTALITY ADJ WGT,2003' ; * 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.97 - 108.84 = '$1 - $109' 108.84 < - 212.835 = '$110 - $213' 212.835 < - 498.28 = '$214 - $498' 498.28 < - 19731.76 = '$499 - $19,732' ; VALUE DVTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.65 - 72.75 = '$1 - $73' 72.75 < - 128.71 = '$74 - $129' 128.71 < - 267.72 = '$130 - $268' 267.72 < - 11164.42 = '$269 - $11,164' ; VALUE DVTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.2 - 12.7 = '$1 - $13' 12.7 < - 26.16 = '$14 - $26' 26.16 < - 67.255 = '$27 - $67' 67.255 < - 1363.03 = '$68 - $1,363' ; VALUE DVTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.98 - 79.29 = '$1 - $79' 79.29 < - 160.62 = '$80 - $161' 160.62 < - 294.81 = '$162 - $295' 294.81 < - 9735.87 = '$296 - $9,736' ; VALUE DVTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 11.24 - 64.58 = '$11 - $65' 64.58 < - 128.69 = '$66 - $129' 128.69 < - 359.7 = '$130 - $360' 359.7 < - 4498.49 = '$361 - $4,498' ; VALUE DVTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.23 - 115.24 = '$1 - $115' 115.24 < - 204.8 = '$116 - $205' 204.8 < - 422.245 = '$206 - $422' 422.245 < - 17619.51 = '$423 - $17,620' ; VALUE DVTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.01 - 42.52 = '$1 - $43' 42.52 < - 113.49 = '$44 - $113' 113.49 < - 313.16 = '$114 - $313' 313.16 < - 17572.64 = '$314 - $17,573' ; VALUE DVTTRI 0 = '0' ; VALUE DVTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.03 - 1.67 = '$1 - $2' 1.67 < - 3.855 = '$3 - $4' 3.855 < - 13.75 = '$5 - $14' 13.75 < - 152.18 = '$15 - $152' ; VALUE DVTWC 0 = '0' ; VALUE GTZERO 0 = '0' 0 < - HIGH = '>0' ; VALUE HHCEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.71 - 795.84 = '$5 - $796' 795.84 < - 3013.195 = '$797 - $3,013' 3013.195 < - 7740.51 = '$3,014 - $7,741' 7740.51 < - 186445.99 = '$7,742 - $186,446' ; VALUE HHCMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.78 - 538.83 = '$2 - $539' 538.83 < - 2469.99 = '$540 - $2,470' 2469.99 < - 8109.34 = '$2,471 - $8,109' 8109.34 < - 126977.53 = '$8,110 - $126,978' ; VALUE HHCMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 11.2 - 1311.56 = '$11 - $1,312' 1311.56 < - 2965.165 = '$1,313 - $2,965' 2965.165 < - 6646.73 = '$2,966 - $6,647' 6646.73 < - 53246.21 = '$6,648 - $53,246' ; VALUE HHCOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 46.31 - 114.26 = '$46 - $114' 114.26 < - 262.12 = '$115 - $262' 262.12 < - 743.55 = '$263 - $744' 743.55 < - 2232.4 = '$745 - $2,232' ; VALUE HHCOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 13.34 - 283.57 = '$13 - $284' 283.57 < - 709.115 = '$285 - $709' 709.115 < - 1845.85 = '$710 - $1,846' 1845.85 < - 13924.07 = '$1,847 - $13,924' ; VALUE HHCPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 34.9 - 731.735 = '$34 - $732' 731.735 < - 2349.92 = '$733 - $2,350' 2349.92 < - 7192.92 = '$2,351 - $7,193' 7192.92 < - 118874.5 = '$7,194 - $118,875' ; VALUE HHCSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.71 - 99.98 = '$5 - $100' 99.98 < - 347.46 = '$101 - $347' 347.46 < - 1166.91 = '$348 - $1,167' 1166.91 < - 68214.95 = '$1,168 - $68,215' ; VALUE HHCTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.77 - 47.87 = '$5 - $48' 47.87 < - 155.83 = '$49 - $156' 155.83 < - 415.61 = '$157 - $416' 415.61 < - 1613.44 = '$417 - $1,613' ; VALUE HHCVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 155.8 - 1485.7 = '$155 - $1,486' 1485.7 < - 3895.07 = '$1,487 - $3,895' 3895.07 < - 8873.79 = '$3,896 - $8,874' 8873.79 < - 40508.69 = '$8,875 - $40,509' ; VALUE HHCWC 0 = '0' 20000 - 40000 = '$20,000 - $40,000' ; VALUE HOSEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.02 - 198.98 = '$2 - $199' 198.98 < - 742.125 = '$200 - $742' 742.125 < - 3307.565 = '$743 - $3,308' 3307.565 < - 599040.2 = '$3,309 - $599,040' ; VALUE HOSMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.23 - 136.985 = '$1 - $137' 136.985 < - 510.95 = '$138 - $511' 510.95 < - 2504.41 = '$512 - $2,504' 2504.41 < - 485080.75 = '$2,505 - $485,081' ; VALUE HOSMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.93 - 168.57 = '$1 - $169' 168.57 < - 872.89 = '$170 - $873' 872.89 < - 5282.065 = '$874 - $5,282' 5282.065 < - 167770.57 = '$5,283 - $167,771' ; VALUE HOSOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.91 - 81.84 = '$1 - $82' 81.84 < - 266.005 = '$83 - $266' 266.005 < - 998.6 = '$267 - $999' 998.6 < - 53480.4 = '$1,000 - $53,480' ; VALUE HOSOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.62 - 76.63 = '$5 - $77' 76.63 < - 237.54 = '$78 - $238' 237.54 < - 980.75 = '$239 - $981' 980.75 < - 49407.01 = '$982 - $49,407' ; VALUE HOSPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.01 - 170.97 = '$1 - $171' 170.97 < - 623.54 = '$172 - $624' 623.54 < - 2103.05 = '$625 - $2,103' 2103.05 < - 599040.2 = '$2,104 - $599,040' ; VALUE HOSSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.15 - 29.97 = '$1 - $30' 29.97 < - 89.91 = '$31 - $90' 89.91 < - 299.7 = '$91 - $300' 299.7 < - 74994.54 = '$301 - $74,995' ; VALUE HOSTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.53 - 41.34 = '$1 - $41' 41.34 < - 150.585 = '$42 - $151' 150.585 < - 495.4 = '$152 - $495' 495.4 < - 95391.5 = '$496 - $95,392' ; VALUE HOSVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.1 - 149.53 = '$1 - $150' 149.53 < - 595.56 = '$151 - $596' 595.56 < - 2454.085 = '$597 - $2,454' 2454.085 < - 228223.37 = '$2,455 - $228,223' ; VALUE HOSWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.79 - 69.45 = '$1 - $69' 69.45 < - 194.76 = '$70 - $195' 194.76 < - 636.27 = '$196 - $636' 636.27 < - 296477.48 = '$637 - $296,477' ; VALUE $ID 'N0000103' - 'N7338003' = 'N0000103 - N7338003' ; 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.08 - 13.54 = '$1 - $14' 13.54 < - 50.26 = '$15 - $50' 50.26 < - 201.22 = '$51 - $201' 201.22 < - 59682.63 = '$202 - $59,683' ; VALUE OBOMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.08 - 6.32 = '$1 - $6' 6.32 < - 18.31 = '$7 - $18' 18.31 < - 72.06 = '$19 - $72' 72.06 < - 44175.42 = '$73 - $44,175' ; VALUE OBOMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.09 - 18.73 = '$1 - $19' 18.73 < - 70.68 = '$20 - $71' 70.68 < - 217.91 = '$72 - $218' 217.91 < - 50871.3 = '$219 - $50,871' ; VALUE OBOOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.98 - 30.61 = '$1 - $31' 30.61 < - 84.69 = '$32 - $85' 84.69 < - 276.5 = '$86 - $277' 276.5 < - 10743.78 = '$278 - $10,744' ; VALUE OBOOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.71 - 45.05 = '$2 - $45' 45.05 < - 110.31 = '$46 - $110' 110.31 < - 311.05 = '$111 - $311' 311.05 < - 5172.37 = '$312 - $5,172' ; VALUE OBOPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.09 - 9.27 = '$1 - $9' 9.27 < - 30.35 = '$10 - $30' 30.35 < - 124.12 = '$31 - $124' 124.12 < - 52801.45 = '$125 - $52,801' ; VALUE OBOSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.13 - 3.27 = '$1 - $3' 3.27 < - 10.73 = '$4 - $11' 10.73 < - 41.65 = '$12 - $42' 41.65 < - 27546.86 = '$43 - $27,547' ; VALUE OBOTRI 0 = '0' ; VALUE OBOVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.14 - 2.54 = '$1 - $3' 2.54 < - 7.75 = '$4 - $8' 7.75 < - 23.7 = '$9 - $24' 23.7 < - 1162.92 = '$25 - $1,163' ; VALUE OBOWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.4 - 65.59 = '$1 - $66' 65.59 < - 187.125 = '$67 - $187' 187.125 < - 713.4 = '$188 - $713' 713.4 < - 17700.09 = '$714 - $17,700' ; VALUE OTHEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.68 - 132.73 = '$1 - $133' 132.73 < - 273.18 = '$134 - $273' 273.18 < - 497.5 = '$274 - $498' 497.5 < - 53158.78 = '$499 - $53,159' ; VALUE OTHMCD 0 = '0' ; VALUE OTHMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.26 - 608.81 = '$6 - $609' 608.81 < - 1185.7 = '$610 - $1,186' 1185.7 < - 2831.295 = '$1,187 - $2,831' 2831.295 < - 50661.26 = '$2,832 - $50,661' ; VALUE OTHOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.8 - 90.26 = '$5 - $90' 90.26 < - 200.57 = '$91 - $201' 200.57 < - 344.95 = '$202 - $345' 344.95 < - 6763.68 = '$346 - $6,764' ; VALUE OTHOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.78 - 57.53 = '$2 - $58' 57.53 < - 104.755 = '$59 - $105' 104.755 < - 268.47 = '$106 - $268' 268.47 < - 2885.41 = '$269 - $2,885' ; VALUE OTHPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.86 - 63.08 = '$1 - $63' 63.08 < - 124.545 = '$64 - $125' 124.545 < - 224.21 = '$126 - $224' 224.21 < - 16142.93 = '$225 - $16,143' ; VALUE OTHSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.68 - 100.56 = '$1 - $101' 100.56 < - 234.83 = '$102 - $235' 234.83 < - 434.87 = '$236 - $435' 434.87 < - 47355.1 = '$436 - $47,355' ; VALUE OTHTRI 0 = '0' ; VALUE OTHVA 0 = '0' ; VALUE OTHWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 165.28 - 1082.87 = '$165 - $1,083' 1082.87 < - 2144.71 = '$1,084 - $2,145' 2144.71 < - 4379.24 = '$2,146 - $4,379' 4379.24 < - 19889.72 = '$4,380 - $19,890' ; VALUE PHYEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.07 - 128.57 = '$1 - $129' 128.57 < - 334.38 = '$130 - $334' 334.38 < - 1017.69 = '$335 - $1,018' 1017.69 < - 100505.39 = '$1,019 - $100,505' ; VALUE PHYMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.04 - 73.1 = '$1 - $73' 73.1 < - 178.14 = '$74 - $178' 178.14 < - 490.91 = '$179 - $491' 490.91 < - 49517.29 = '$492 - $49,517' ; VALUE PHYMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.28 - 196.26 = '$1 - $196' 196.26 < - 582.15 = '$197 - $582' 582.15 < - 1654.57 = '$583 - $1,655' 1654.57 < - 77732.88 = '$1,656 - $77,733' ; VALUE PHYOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.99 - 43.47 = '$1 - $43' 43.47 < - 94.35 = '$44 - $94' 94.35 < - 240.1 = '$95 - $240' 240.1 < - 79426.28 = '$241 - $79,426' ; VALUE PHYOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.96 - 46.01 = '$1 - $46' 46.01 < - 101.59 = '$47 - $102' 101.59 < - 292.76 = '$103 - $293' 292.76 < - 37352.4 = '$294 - $37,352' ; VALUE PHYPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.37 - 106.47 = '$1 - $106' 106.47 < - 261.2 = '$107 - $261' 261.2 < - 725.41 = '$262 - $725' 725.41 < - 78250.21 = '$726 - $78,250' ; VALUE PHYSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.97 - 19.45 = '$1 - $19' 19.45 < - 48.53 = '$20 - $49' 48.53 < - 124.46 = '$50 - $124' 124.46 < - 27244.75 = '$125 - $27,245' ; VALUE PHYTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.14 - 118.785 = '$5 - $119' 118.785 < - 351 = '$120 - $351' 351 < - 897.15 = '$352 - $897' 897.15 < - 86434.82 = '$898 - $86,435' ; VALUE PHYVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.33 - 17.28 = '$1 - $17' 17.28 < - 57.07 = '$18 - $57' 57.07 < - 189.81 = '$58 - $190' 189.81 < - 6548.1 = '$191 - $6,548' ; VALUE PHYWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 4.47 - 193.81 = '$4 - $194' 193.81 < - 491.72 = '$195 - $492' 491.72 < - 1564.55 = '$493 - $1,565' 1564.55 < - 50939.64 = '$1,566 - $50,940' ; 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.36 - 61.12 = '$1 - $61' 61.12 < - 236.35 = '$62 - $236' 236.35 < - 857.03 = '$237 - $857' 857.03 < - 317896.09 = '$858 - $317,896' ; VALUE RXMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.57 - 57.715 = '$1 - $58' 57.715 < - 185.605 = '$59 - $186' 185.605 < - 787.55 = '$187 - $788' 787.55 < - 315852.52 = '$789 - $315,853' ; VALUE RXMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.34 - 35.44 = '$1 - $35' 35.44 < - 106.83 = '$36 - $107' 106.83 < - 287.03 = '$108 - $287' 287.03 < - 12464.41 = '$288 - $12,464' ; VALUE RXOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.02 - 28.23 = '$3 - $28' 28.23 < - 108.815 = '$29 - $109' 108.815 < - 245.255 = '$110 - $245' 245.255 < - 2839.87 = '$246 - $2,840' ; VALUE RXOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.1 - 34.055 = '$1 - $34' 34.055 < - 169.765 = '$35 - $170' 169.765 < - 647.33 = '$171 - $647' 647.33 < - 26928.55 = '$648 - $26,929' ; VALUE RXPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.31 - 52.89 = '$1 - $53' 52.89 < - 202.54 = '$54 - $203' 202.54 < - 742.19 = '$204 - $742' 742.19 < - 57518.4 = '$743 - $57,518' ; VALUE RXSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.54 - 15.15 = '$1 - $15' 15.15 < - 58.92 = '$16 - $59' 58.92 < - 209.29 = '$60 - $209' 209.29 < - 19789.21 = '$210 - $19,789' ; VALUE RXTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.36 - 20.71 = '$1 - $21' 20.71 < - 98.38 = '$22 - $98' 98.38 < - 414.09 = '$99 - $414' 414.09 < - 14891.94 = '$415 - $14,892' ; VALUE RXVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.42 - 30.79 = '$1 - $31' 30.79 < - 132.545 = '$32 - $133' 132.545 < - 376.08 = '$134 - $376' 376.08 < - 9634.83 = '$377 - $9,635' ; VALUE RXWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.09 - 47.46 = '$1 - $47' 47.46 < - 121.65 = '$48 - $122' 121.65 < - 396.29 = '$123 - $396' 396.29 < - 12432.79 = '$397 - $12,433' ; VALUE SEX 1 = '1 Male' 2 = '2 Female' ; VALUE TOTEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.56 - 310.38 = '$1 - $310' 310.38 < - 968.69 = '$311 - $969' 968.69 < - 3174.11 = '$970 - $3,174' 3174.11 < - 652117.13 = '$3,175 - $652,117' ; VALUE TOTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.11 - 169.69 = '$1 - $170' 169.69 < - 514.905 = '$171 - $515' 514.905 < - 2200.38 = '$516 - $2,200' 2200.38 < - 494679.89 = '$2,201 - $494,680' ; VALUE TOTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.68 - 292.32 = '$1 - $292' 292.32 < - 1031.985 = '$293 - $1,032' 1031.985 < - 4144.75 = '$1,033 - $4,145' 4144.75 < - 180714.18 = '$4,146 - $180,714' ; VALUE TOTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.98 - 55.38 = '$1 - $55' 55.38 < - 132.4 = '$56 - $132' 132.4 < - 355.85 = '$133 - $356' 355.85 < - 79426.28 = '$357 - $79,426' ; VALUE TOTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.96 - 62.3 = '$1 - $62' 62.3 < - 188.59 = '$63 - $189' 188.59 < - 673.24 = '$190 - $673' 673.24 < - 49407.01 = '$674 - $49,407' ; VALUE TOTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.03 - 208.6 = '$1 - $209' 208.6 < - 624.46 = '$210 - $624' 624.46 < - 1927.8 = '$625 - $1,928' 1927.8 < - 647825.4 = '$1,929 - $647,825' ; VALUE TOTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.54 - 55.7 = '$1 - $56' 55.7 < - 212.145 = '$57 - $212' 212.145 < - 624.03 = '$213 - $624' 624.03 < - 89032.42 = '$625 - $89,032' ; VALUE TOTTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.53 - 140.02 = '$1 - $140' 140.02 < - 479.04 = '$141 - $479' 479.04 < - 1377.84 = '$480 - $1,378' 1377.84 < - 106432.69 = '$1,379 - $106,433' ; VALUE TOTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.07 - 21.145 = '$1 - $21' 21.145 < - 112.795 = '$22 - $113' 112.795 < - 521.12 = '$114 - $521' 521.12 < - 228383.38 = '$522 - $228,383' ; VALUE TOTWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.79 - 209.03 = '$1 - $209' 209.03 < - 664.85 = '$210 - $665' 664.85 < - 2225.27 = '$666 - $2,225' 2225.27 < - 360609.43 = '$2,226 - $360,609' ; VALUE YESNO 0 = '0 No' 1 = '1 Yes' ;