SAS User File for PROJYR10 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 (PROJYR10.SSP) or the ASCII data file (PROJYR10.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\PROJYR10.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.PROJYR10; TITLE "List of Variables in MEPS PROJYR10 SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.PROJYR10 (OBS=20); TITLE "First 20 Observations in MEPS PROJYR10 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) PROJYR10 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 PROJYR10.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file PROJYR10.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 PROJYR10.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 PROJYR10.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\PROJYR10.DAT'; DATA PUFLIB.PROJYR10; INFILE IN1 LRECL=660; INPUT .....; * to user: insert the complete INPUT statement that is provided in Section D; LABEL .....; * to user: insert the complete LABEL statement that is provided in Section D; RUN; Here is an explanation of the SAS statements used in the program above. LIBNAME statement: This tells SAS the location (directory name) of the permanent SAS dataset. FILENAME statement: This tells SAS the location of the input ASCII data file. DATA statement: This signifies the beginning of a SAS DATA step and specifies the output SAS dataset, referencing the LIBNAME entry (PUFLIB) and assigning an internal SAS dataset name (PROJYR10). In the example, after the successful completion of the DATA step, a PC file named PROJYR10.SAS7BDAT would have been created in the C:\MEPS\SASDATA directory. INFILE statement: This tells SAS the location (directory and file name) of the input ASCII data file. Also provided is the logical record length (660 bytes), with the default of RECFM=V implied when this parameter is omitted. LRECL and RECFM are optional parameters in the INFILE statement. With regard to these options, please note the following: the ASCII data file PROJYR10.DAT contains a 2-byte carriage return/line feed at the end of each record. When converting to a PC-SAS file, the LRECL option should be used to specify the record length to avoid use of a default record length by PC-SAS. If the RECFM=V option is used, the LRECL option must be specified as the logical record length (e.g., 660 for PROJYR10.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (662 for PROJYR10.DAT). Note that if the RECFM option is omitted, then the default option of RECFM=V is automatically used, and LRECL should be specified as the logical record (660 for PROJYR10.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 (PROJYR10.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.PROJYR10; 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 PROJYR10.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=660; INPUT @1 DUPERIDX $8.0 @9 AGESTUB 2.0 @11 SEX 1.0 @12 RACE7P 1.0 @13 INSCOV_A 1.0 @14 INSCOV_B 2.0 @16 MCDHMO 1.0 @17 PRVHMO 1.0 @18 POVCAT 1.0 @19 TOTEXP10 9.2 @28 TOTSLF10 9.2 @37 TOTPHI10 9.2 @46 TOTMCR10 9.2 @55 TOTMCD10 9.2 @64 TOTTRI10 9.2 @73 TOTVA10 9.2 @82 TOTWC10 9.2 @91 TOTOTP10 8.2 @99 TOTOSR10 9.2 @108 HOSEXP10 9.2 @117 HOSSLF10 9.2 @126 HOSPHI10 9.2 @135 HOSMCR10 9.2 @144 HOSMCD10 9.2 @153 HOSTRI10 9.2 @162 HOSVA10 9.2 @171 HOSWC10 9.2 @180 HOSOTP10 8.2 @188 HOSOSR10 8.2 @196 PHYEXP10 9.2 @205 PHYSLF10 8.2 @213 PHYPHI10 9.2 @222 PHYMCR10 8.2 @230 PHYMCD10 8.2 @238 PHYTRI10 9.2 @247 PHYVA10 7.2 @254 PHYWC10 8.2 @262 PHYOTP10 8.2 @270 PHYOSR10 9.2 @279 DVTEXP10 8.2 @287 DVTSLF10 8.2 @295 DVTPHI10 8.2 @303 DVTMCR10 7.2 @310 DVTMCD10 8.2 @318 DVTTRI10 4.2 @322 DVTVA10 6.2 @328 DVTWC10 4.2 @332 DVTOTP10 7.2 @339 DVTOSR10 8.2 @347 OBOEXP10 8.2 @355 OBOSLF10 8.2 @363 OBOPHI10 8.2 @371 OBOMCR10 8.2 @379 OBOMCD10 8.2 @387 OBOTRI10 4.2 @391 OBOVA10 6.2 @397 OBOWC10 8.2 @405 OBOOTP10 7.2 @412 OBOOSR10 8.2 @420 HHCEXP10 9.2 @429 HHCSLF10 8.2 @437 HHCPHI10 9.2 @446 HHCMCR10 8.2 @454 HHCMCD10 9.2 @463 HHCTRI10 7.2 @470 HHCVA10 8.2 @478 HHCWC10 8.2 @486 HHCOTP10 8.2 @494 HHCOSR10 7.2 @501 RXEXP10 9.2 @510 RXSLF10 8.2 @518 RXPHI10 8.2 @526 RXMCR10 9.2 @535 RXMCD10 9.2 @544 RXTRI10 8.2 @552 RXVA10 8.2 @560 RXWC10 8.2 @568 RXOTP10 8.2 @576 RXOSR10 7.2 @583 OTHEXP10 8.2 @591 OTHSLF10 8.2 @599 OTHPHI10 8.2 @607 OTHMCR10 8.2 @615 OTHMCD10 4.2 @619 OTHTRI10 4.2 @623 OTHVA10 4.2 @627 OTHWC10 8.2 @635 OTHOTP10 7.2 @642 OTHOSR10 7.2 @649 WTADJ10 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. TOTEXP10 TOTEXP. TOTSLF10 TOTSLF. TOTPHI10 TOTPHI. TOTMCR10 TOTMCR. TOTMCD10 TOTMCD. TOTTRI10 TOTTRI. TOTVA10 TOTVA. TOTWC10 TOTWC. TOTOTP10 TOTOTP. TOTOSR10 TOTOSR. HOSEXP10 HOSEXP. HOSSLF10 HOSSLF. HOSPHI10 HOSPHI. HOSMCR10 HOSMCR. HOSMCD10 HOSMCD. HOSTRI10 HOSTRI. HOSVA10 HOSVA. HOSWC10 HOSWC. HOSOTP10 HOSOTP. HOSOSR10 HOSOSR. PHYEXP10 PHYEXP. PHYSLF10 PHYSLF. PHYPHI10 PHYPHI. PHYMCR10 PHYMCR. PHYMCD10 PHYMCD. PHYTRI10 PHYTRI. PHYVA10 PHYVA. PHYWC10 PHYWC. PHYOTP10 PHYOTP. PHYOSR10 PHYOSR. DVTEXP10 DVTEXP. DVTSLF10 DVTSLF. DVTPHI10 DVTPHI. DVTMCR10 DVTMCR. DVTMCD10 DVTMCD. DVTTRI10 DVTTRI. DVTVA10 DVTVA. DVTWC10 DVTWC. DVTOTP10 DVTOTP. DVTOSR10 DVTOSR. OBOEXP10 OBOEXP. OBOSLF10 OBOSLF. OBOPHI10 OBOPHI. OBOMCR10 OBOMCR. OBOMCD10 OBOMCD. OBOTRI10 OBOTRI. OBOVA10 OBOVA. OBOWC10 OBOWC. OBOOTP10 OBOOTP. OBOOSR10 OBOOSR. HHCEXP10 HHCEXP. HHCSLF10 HHCSLF. HHCPHI10 HHCPHI. HHCMCR10 HHCMCR. HHCMCD10 HHCMCD. HHCTRI10 HHCTRI. HHCVA10 HHCVA. HHCWC10 HHCWC. HHCOTP10 HHCOTP. HHCOSR10 HHCOSR. RXEXP10 RXEXP. RXSLF10 RXSLF. RXPHI10 RXPHI. RXMCR10 RXMCR. RXMCD10 RXMCD. RXTRI10 RXTRI. RXVA10 RXVA. RXWC10 RXWC. RXOTP10 RXOTP. RXOSR10 RXOSR. OTHEXP10 OTHEXP. OTHSLF10 OTHSLF. OTHPHI10 OTHPHI. OTHMCR10 OTHMCR. OTHMCD10 OTHMCD. OTHTRI10 OTHTRI. OTHVA10 OTHVA. OTHWC10 OTHWC. OTHOTP10 OTHOTP. OTHOSR10 OTHOSR. WTADJ10 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' TOTEXP10='TOTAL, PAID BY TOTAL, 2010' TOTSLF10='TOTAL, PAID BY OUT OF POCKET, 2010' TOTPHI10='TOTAL, PAID BY PRIV INSU, 2010' TOTMCR10='TOTAL, PAID BY MEDICARE, 2010' TOTMCD10='TOTAL, PAID BY MEDICAID, 2010' TOTTRI10='TOTAL, PAID BY TRICARE, 2010' TOTVA10 ='TOTAL, PAID BY VA, 2010' TOTWC10 ='TOTAL, PAID BY WORKERS COMP, 2010' TOTOTP10='TOTAL, PAID BY OTHER PUBLIC, 2010' TOTOSR10='TOTAL, PAID BY OTHER, 2010' HOSEXP10='HOSPITAL, PAID BY TOTAL, 2010' HOSSLF10='HOSPITAL, PAID BY OUT OF POCKET, 2010' HOSPHI10='HOSPITAL, PAID BY PRIV INSU, 2010' HOSMCR10='HOSPITAL, PAID BY MEDICARE, 2010' HOSMCD10='HOSPITAL, PAID BY MEDICAID, 2010' HOSTRI10='HOSPITAL, PAID BY TRICARE, 2010' HOSVA10 ='HOSPITAL, PAID BY VA, 2010' HOSWC10 ='HOSPITAL, PAID BY WORKERS COMP, 2010' HOSOTP10='HOSPITAL, PAID BY OTHER PUBLIC, 2010' HOSOSR10='HOSPITAL, PAID BY OTHER, 2010' PHYEXP10='PHYSICIAN, PAID BY TOTAL, 2010' PHYSLF10='PHYSICIAN, PAID BY OUT OF POCKET, 2010' PHYPHI10='PHYSICIAN, PAID BY PRIV INSU, 2010' PHYMCR10='PHYSICIAN, PAID BY MEDICARE, 2010' PHYMCD10='PHYSICIAN, PAID BY MEDICAID, 2010' PHYTRI10='PHYSICIAN, PAID BY TRICARE, 2010' PHYVA10 ='PHYSICIAN, PAID BY VA, 2010' PHYWC10 ='PHYSICIAN, PAID BY WORKERS COMP, 2010' PHYOTP10='PHYSICIAN, PAID BY OTHER PUBLIC, 2010' PHYOSR10='PHYSICIAN, PAID BY OTHER, 2010' DVTEXP10='DENTAL, PAID BY TOTAL, 2010' DVTSLF10='DENTAL, PAID BY OUT OF POCKET, 2010' DVTPHI10='DENTAL, PAID BY PRIV INSU, 2010' DVTMCR10='DENTAL, PAID BY MEDICARE, 2010' DVTMCD10='DENTAL, PAID BY MEDICAID, 2010' DVTTRI10='DENTAL, PAID BY TRICARE, 2010' DVTVA10 ='DENTAL, PAID BY VA, 2010' DVTWC10 ='DENTAL, PAID BY WORKERS COMP, 2010' DVTOTP10='DENTAL, PAID BY OTHER PUBLIC, 2010' DVTOSR10='DENTAL, PAID BY OTHER, 2010' OBOEXP10='OTHER PROVIDER, PAID BY TOTAL, 2010' OBOSLF10='OTHER PROVIDER, BY OUT OF POCKET, 2010' OBOPHI10='OTHER PROVIDER, PAID BY PRIV INSU, 2010' OBOMCR10='OTHER PROVIDER, PAID BY MEDICARE, 2010' OBOMCD10='OTHER PROVIDER, PAID BY MEDICAID, 2010' OBOTRI10='OTHER PROVIDER, PAID BY TRICARE, 2010' OBOVA10 ='OTHER PROVIDER, PAID BY VA, 2010' OBOWC10 ='OTHER PROVIDER, BY WORKERS COMP, 2010' OBOOTP10='OTHER PROVIDER, BY OTHER PUBLIC, 2010' OBOOSR10='OTHER PROVIDER, PAID BY OTHER, 2010' HHCEXP10='HOME HEALTH, PAID BY TOTAL, 2010' HHCSLF10='HOME HEALTH, PAID BY OUT OF POCKET, 2010' HHCPHI10='HOME HEALTH, PAID BY PRIV INSU, 2010' HHCMCR10='HOME HEALTH, PAID BY MEDICARE, 2010' HHCMCD10='HOME HEALTH, PAID BY MEDICAID, 2010' HHCTRI10='HOME HEALTH, PAID BY TRICARE, 2010' HHCVA10 ='HOME HEALTH, PAID BY VA, 2010' HHCWC10 ='HOME HEALTH, PAID BY WORKERS COMP, 2010' HHCOTP10='HOME HEALTH, PAID BY OTHER PUBLIC, 2010' HHCOSR10='HOME HEALTH, PAID BY OTHER, 2010' RXEXP10 ='RX, PAID BY TOTAL, 2010' RXSLF10 ='RX, PAID BY OUT OF POCKET, 2010' RXPHI10 ='RX, PAID BY PRIV INSU, 2010' RXMCR10 ='RX, PAID BY MEDICARE, 2010' RXMCD10 ='RX, PAID BY MEDICAID, 2010' RXTRI10 ='RX, PAID BY TRICARE, 2010' RXVA10 ='RX, PAID BY VA, 2010' RXWC10 ='RX, PAID BY WORKERS COMP, 2010' RXOTP10 ='RX, PAID BY OTHER PUBLIC, 2010' RXOSR10 ='RX, PAID BY OTHER, 2010' OTHEXP10='OTHER MEDICAL, PAID BY TOTAL, 2010' OTHSLF10='OTHER MEDICAL, BY OUT OF POCKET, 2010' OTHPHI10='OTHER MEDICAL, PAID BY PRIV INSU, 2010' OTHMCR10='OTHER MEDICAL, PAID BY MEDICARE, 2010' OTHMCD10='OTHER MEDICAL, PAID BY MEDICAID, 2010' OTHTRI10='OTHER MEDICAL, PAID BY TRICARE, 2010' OTHVA10 ='OTHER MEDICAL, PAID BY VA, 2010' OTHWC10 ='OTHER MEDICAL, BY WORKERS COMP, 2010' OTHOTP10='OTHER MEDICAL, PAID BY OTHR PUBLIC, 2010' OTHOSR10='OTHER MEDICAL, PAID BY OTHER, 2010' WTADJ10 ='GROWTH/FERTILITY/MORTALITY ADJ WGT,2010' ; * VALUE STATEMENTS; VALUE AGESTUB 0 - 17 = '0-17' 18 - 64 = '18-64' 65 - HIGH = '65 or older' ; VALUE DVTEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.13 - 153.39 = '$1 - $153' 153.39 < - 301.135 = '$154 - $301' 301.135 < - 701.19 = '$302 - $701' 701.19 < - 28371.32 = '$702 - $28,371' ; VALUE DVTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.29 - 100.79 = '$2 - $101' 100.79 < - 178.31 = '$102 - $178' 178.31 < - 370.89 = '$179 - $371' 370.89 < - 15466.72 = '$372 - $15,467' ; VALUE DVTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.59 - 27.46 = '$2 - $27' 27.46 < - 56.54 = '$28 - $57' 56.54 < - 145.37 = '$58 - $145' 145.37 < - 2946.14 = '$146 - $2,946' ; VALUE DVTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.34 - 108.88 = '$1 - $109' 108.88 < - 220.55 = '$110 - $221' 220.55 < - 404.8 = '$222 - $405' 404.8 < - 13368.19 = '$406 - $13,368' ; VALUE DVTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 13.45 - 77.29 = '$13 - $77' 77.29 < - 154.015 = '$78 - $154' 154.015 < - 430.49 = '$155 - $430' 430.49 < - 5383.79 = '$431 - $5,384' ; VALUE DVTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.78 - 166.6 = '$1 - $167' 166.6 < - 296.07 = '$168 - $296' 296.07 < - 610.425 = '$297 - $610' 610.425 < - 25472.03 = '$611 - $25,472' ; VALUE DVTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.39 - 58.37 = '$1 - $58' 58.37 < - 155.78 = '$59 - $156' 155.78 < - 429.84 = '$157 - $430' 429.84 < - 24120.36 = '$431 - $24,120' ; VALUE DVTTRI 0 = '0' ; VALUE DVTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.04 - 1.95 = '$1 - $2' 1.95 < - 4.49 = '$3 - $4' 4.49 < - 16.01 = '$5 - $16' 16.01 < - 177.16 = '$17 - $177' ; VALUE DVTWC 0 = '0' ; VALUE GTZERO 0 = '0' 0 < - HIGH = '>0' ; VALUE HHCEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.35 - 1192.41 = '$7 - $1,192' 1192.41 < - 4757.42 = '$1,193 - $4,757' 4757.42 < - 13044.93 = '$4,758 - $13,045' 13044.93 < - 308897.9 = '$13,046 - $308,898' ; VALUE HHCMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.32 - 1032.72 = '$5 - $1,033' 1032.72 < - 4733.92 = '$1,034 - $4,734' 4733.92 < - 15542.19 = '$4,735 - $15,542' 15542.19 < - 243362.34 = '$15,543 - $243,362' ; VALUE HHCMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 18.96 - 2219.89 = '$18 - $2,220' 2219.89 < - 5018.71 = '$2,221 - $5,019' 5018.71 < - 11249.98 = '$5,020 - $11,250' 11249.98 < - 90122.34 = '$11,251 - $90,122' ; VALUE HHCOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 67.2 - 165.8 = '$67 - $166' 165.8 < - 380.35 = '$167 - $380' 380.35 < - 1078.94 = '$381 - $1,079' 1078.94 < - 3239.34 = '$1,080 - $3,239' ; VALUE HHCOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 17.61 - 374.32 = '$17 - $374' 374.32 < - 936.065 = '$375 - $936' 936.065 < - 2436.6 = '$937 - $2,437' 2436.6 < - 18380.38 = '$2,438 - $18,380' ; VALUE HHCPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 38.46 - 806.305 = '$38 - $806' 806.305 < - 2589.395 = '$807 - $2,589' 2589.395 < - 7925.94 = '$2,590 - $7,926' 7925.94 < - 130988.72 = '$7,927 - $130,989' ; VALUE HHCSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.35 - 128.63 = '$7 - $129' 128.63 < - 447.03 = '$130 - $447' 447.03 < - 1501.3 = '$448 - $1,501' 1501.3 < - 87762.11 = '$1,502 - $87,762' ; VALUE HHCTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.75 - 56.075 = '$6 - $56' 56.075 < - 182.55 = '$57 - $183' 182.55 < - 486.895 = '$184 - $487' 486.895 < - 1890.16 = '$488 - $1,890' ; VALUE HHCVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 185.49 - 1768.81 = '$185 - $1,769' 1768.81 < - 4637.29 = '$1,770 - $4,637' 4637.29 < - 10564.72 = '$4,638 - $10,565' 10564.72 < - 48227.78 = '$10,566 - $48,228' ; VALUE HHCWC 0 = '0' 20000 - 40000 = '$20,000 - $40,000' ; VALUE HOSEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.97 - 279.24 = '$2 - $279' 279.24 < - 1059.83 = '$280 - $1,060' 1059.83 < - 4647.455 = '$1,061 - $4,647' 4647.455 < - 881084.78 = '$4,648 - $881,085' ; VALUE HOSMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.66 - 185.495 = '$1 - $185' 185.495 < - 691.89 = '$186 - $692' 691.89 < - 3391.275 = '$693 - $3,391' 3391.275 < - 656858.47 = '$3,392 - $656,858' ; VALUE HOSMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.23 - 224.04 = '$1 - $224' 224.04 < - 1160.1 = '$225 - $1,160' 1160.1 < - 7020.015 = '$1,161 - $7,020' 7020.015 < - 222971.88 = '$7,021 - $222,972' ; VALUE HOSOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.62 - 112.22 = '$2 - $112' 112.22 < - 364.775 = '$113 - $365' 364.775 < - 1369.39 = '$366 - $1,369' 1369.39 < - 73338.36 = '$1,370 - $73,338' ; VALUE HOSOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.71 - 91.52 = '$6 - $92' 91.52 < - 283.72 = '$93 - $284' 283.72 < - 1171.42 = '$285 - $1,171' 1171.42 < - 59012.04 = '$1,172 - $59,012' ; VALUE HOSPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.49 - 251.47 = '$1 - $251' 251.47 < - 917.11 = '$252 - $917' 917.11 < - 3093.23 = '$918 - $3,093' 3093.23 < - 881084.78 = '$3,094 - $881,085' ; VALUE HOSSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.75 - 45.43 = '$1 - $45' 45.43 < - 136.29 = '$46 - $136' 136.29 < - 454.3 = '$137 - $454' 454.3 < - 113682.1 = '$455 - $113,682' ; VALUE HOSTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.8 - 62.33 = '$1 - $62' 62.33 < - 227.06 = '$63 - $227' 227.06 < - 746.99 = '$228 - $747' 746.99 < - 143834.97 = '$748 - $143,835' ; VALUE HOSVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.37 - 185.87 = '$1 - $186' 185.87 < - 740.305 = '$187 - $740' 740.305 < - 3050.525 = '$741 - $3,051' 3050.525 < - 283690.94 = '$3,052 - $283,691' ; VALUE HOSWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.13 - 82.72 = '$2 - $83' 82.72 < - 231.97 = '$84 - $232' 231.97 < - 757.84 = '$233 - $758' 757.84 < - 353122.01 = '$759 - $353,122' ; VALUE $ID 'N0000110' - 'N7338010' = 'N0000110 - N7338010' ; 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.13 - 19.32 = '$1 - $19' 19.32 < - 70.62 = '$20 - $71' 70.62 < - 280.49 = '$72 - $280' 280.49 < - 83787.08 = '$281 - $83,787' ; VALUE OBOMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.13 - 10.42 = '$1 - $10' 10.42 < - 30.21 = '$11 - $30' 30.21 < - 118.85 = '$31 - $119' 118.85 < - 72856.58 = '$120 - $72,857' ; VALUE OBOMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.13 - 28.13 = '$1 - $28' 28.13 < - 106.15 = '$29 - $106' 106.15 < - 327.26 = '$107 - $327' 327.26 < - 76398.87 = '$328 - $76,399' ; VALUE OBOOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.32 - 40.97 = '$1 - $41' 40.97 < - 113.34 = '$42 - $113' 113.34 < - 370.08 = '$114 - $370' 370.08 < - 14379.76 = '$371 - $14,380' ; VALUE OBOOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.01 - 33.34 = '$2 - $33' 33.34 < - 81.65 = '$34 - $82' 81.65 < - 230.23 = '$83 - $230' 230.23 < - 3828.37 = '$231 - $3,828' ; VALUE OBOPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.12 - 12.49 = '$1 - $12' 12.49 < - 40.89 = '$13 - $41' 40.89 < - 167.21 = '$42 - $167' 167.21 < - 71134.95 = '$168 - $71,135' ; VALUE OBOSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.17 - 4.5 = '$1 - $5' 4.5 < - 14.78 = '$6 - $15' 14.78 < - 57.37 = '$16 - $57' 57.37 < - 37937.89 = '$58 - $37,938' ; VALUE OBOTRI 0 = '0' ; VALUE OBOVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.11 - 1.97 = '$1 - $2' 1.97 < - 6.02 = '$3 - $6' 6.02 < - 18.41 = '$7 - $18' 18.41 < - 903.09 = '$19 - $903' ; VALUE OBOWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.12 - 52.54 = '$1 - $53' 52.54 < - 149.875 = '$54 - $150' 149.875 < - 571.39 = '$151 - $571' 571.39 < - 14176.72 = '$572 - $14,177' ; VALUE OTHEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.75 - 140.01 = '$1 - $140' 140.01 < - 287.425 = '$141 - $287' 287.425 < - 523.18 = '$288 - $523' 523.18 < - 61405.18 = '$524 - $61,405' ; VALUE OTHMCD 0 = '0' ; VALUE OTHMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.5 - 729.35 = '$7 - $729' 729.35 < - 1420.455 = '$730 - $1,420' 1420.455 < - 3391.855 = '$1,421 - $3,392' 3391.855 < - 60691.58 = '$3,393 - $60,692' ; VALUE OTHOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.59 - 102.67 = '$6 - $103' 102.67 < - 228.16 = '$104 - $228' 228.16 < - 392.4 = '$229 - $392' 392.4 < - 7694.09 = '$393 - $7,694' ; VALUE OTHOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.37 - 48.95 = '$2 - $49' 48.95 < - 89.135 = '$50 - $89' 89.135 < - 228.43 = '$90 - $228' 228.43 < - 2455.09 = '$229 - $2,455' ; VALUE OTHPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.92 - 66.92 = '$1 - $67' 66.92 < - 132.12 = '$68 - $132' 132.12 < - 237.85 = '$133 - $238' 237.85 < - 17125.15 = '$239 - $17,125' ; VALUE OTHSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.75 - 105.11 = '$1 - $105' 105.11 < - 245.47 = '$106 - $245' 245.47 < - 454.58 = '$246 - $455' 454.58 < - 49501.43 = '$456 - $49,501' ; VALUE OTHTRI 0 = '0' ; VALUE OTHVA 0 = '0' ; VALUE OTHWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 166.05 - 1087.91 = '$166 - $1,088' 1087.91 < - 2154.695 = '$1,089 - $2,155' 2154.695 < - 4399.63 = '$2,156 - $4,400' 4399.63 < - 19982.3 = '$4,401 - $19,982' ; VALUE PHYEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.43 - 179.38 = '$1 - $179' 179.38 < - 467.9 = '$180 - $468' 467.9 < - 1409.34 = '$469 - $1,409' 1409.34 < - 137579.79 = '$1,410 - $137,580' ; VALUE PHYMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.38 - 97.39 = '$1 - $97' 97.39 < - 237.34 = '$98 - $237' 237.34 < - 654.06 = '$238 - $654' 654.06 < - 65973.34 = '$655 - $65,973' ; VALUE PHYMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.64 - 251.91 = '$1 - $252' 251.91 < - 747.21 = '$253 - $747' 747.21 < - 2123.69 = '$748 - $2,124' 2123.69 < - 99772.63 = '$2,125 - $99,773' ; VALUE PHYOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.34 - 58.8 = '$1 - $59' 58.8 < - 127.6 = '$60 - $128' 127.6 < - 324.72 = '$129 - $325' 324.72 < - 107420.45 = '$326 - $107,420' ; VALUE PHYOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1 - 48.17 = '$1 - $48' 48.17 < - 106.35 = '$49 - $106' 106.35 < - 306.48 = '$107 - $306' 306.48 < - 39104 = '$307 - $39,104' ; VALUE PHYPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.98 - 153.86 = '$1 - $154' 153.86 < - 377.48 = '$155 - $377' 377.48 < - 1048.33 = '$378 - $1,048' 1048.33 < - 113083.85 = '$1,049 - $113,084' ; VALUE PHYSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.38 - 27.66 = '$1 - $28' 27.66 < - 69.025 = '$29 - $69' 69.025 < - 177.03 = '$70 - $177' 177.03 < - 38753.95 = '$178 - $38,754' ; VALUE PHYTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.22 - 166.62 = '$7 - $167' 166.62 < - 492.365 = '$168 - $492' 492.365 < - 1258.49 = '$493 - $1,258' 1258.49 < - 121247.87 = '$1,259 - $121,248' ; VALUE PHYVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.4 - 21.31 = '$1 - $21' 21.31 < - 70.38 = '$22 - $70' 70.38 < - 234.06 = '$71 - $234' 234.06 < - 8074.45 = '$235 - $8,074' ; VALUE PHYWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.63 - 244.25 = '$5 - $244' 244.25 < - 619.7 = '$245 - $620' 619.7 < - 1971.76 = '$621 - $1,972' 1971.76 < - 64197.81 = '$1,973 - $64,198' ; 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.11 = '$1 - $64' 64.11 < - 268.01 = '$65 - $268' 268.01 < - 1063.08 = '$269 - $1,063' 1063.08 < - 262479.06 = '$1,064 - $262,479' ; VALUE RXMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.39 - 39.765 = '$1 - $40' 39.765 < - 127.875 = '$41 - $128' 127.875 < - 542.6 = '$129 - $543' 542.6 < - 217613.82 = '$544 - $217,614' ; VALUE RXMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.09 - 743.24 = '$7 - $743' 743.24 < - 2240.44 = '$744 - $2,240' 2240.44 < - 6019.41 = '$2,241 - $6,019' 6019.41 < - 261398.51 = '$6,020 - $261,399' ; VALUE RXOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 4.11 - 38.33 = '$4 - $38' 38.33 < - 147.77 = '$39 - $148' 147.77 < - 333.03 = '$149 - $333' 333.03 < - 3856.28 = '$334 - $3,856' ; VALUE RXOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.52 - 47.125 = '$1 - $47' 47.125 < - 234.915 = '$48 - $235' 234.915 < - 895.74 = '$236 - $896' 895.74 < - 37262.16 = '$897 - $37,262' ; VALUE RXPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.71 - 69.24 = '$1 - $69' 69.24 < - 265.14 = '$70 - $265' 265.14 < - 971.59 = '$266 - $972' 971.59 < - 75296.54 = '$973 - $75,297' ; VALUE RXSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.65 - 18.34 = '$1 - $18' 18.34 < - 71.31 = '$19 - $71' 71.31 < - 253.3 = '$72 - $253' 253.3 < - 23950.37 = '$254 - $23,950' ; VALUE RXTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.47 - 26.86 = '$1 - $27' 26.86 < - 127.6 = '$28 - $128' 127.6 < - 537.06 = '$129 - $537' 537.06 < - 19314.37 = '$538 - $19,314' ; VALUE RXVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.65 - 47.28 = '$1 - $47' 47.28 < - 203.525 = '$48 - $204' 203.525 < - 577.48 = '$205 - $577' 577.48 < - 14794.42 = '$578 - $14,794' ; VALUE RXWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.73 - 75.19 = '$1 - $75' 75.19 < - 192.74 = '$76 - $193' 192.74 < - 627.87 = '$194 - $628' 627.87 < - 19697.9 = '$629 - $19,698' ; VALUE SEX 1 = '1 Male' 2 = '2 Female' ; VALUE TOTEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.68 - 404.17 = '$1 - $404' 404.17 < - 1283.73 = '$405 - $1,284' 1283.73 < - 4312.93 = '$1,285 - $4,313' 4312.93 < - 956231.37 = '$4,314 - $956,231' ; VALUE TOTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.76 - 191.16 = '$1 - $191' 191.16 < - 574.44 = '$192 - $574' 574.44 < - 2306.64 = '$575 - $2,307' 2306.64 < - 666780.26 = '$2,308 - $666,780' ; VALUE TOTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.23 - 448.3 = '$1 - $448' 448.3 < - 1787.5 = '$449 - $1,788' 1787.5 < - 7408.85 = '$1,789 - $7,409' 7408.85 < - 276012.92 = '$7,410 - $276,013' ; VALUE TOTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.32 - 74.83 = '$1 - $75' 74.83 < - 179.06 = '$76 - $179' 179.06 < - 480.24 = '$180 - $480' 480.24 < - 107420.45 = '$481 - $107,420' ; VALUE TOTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1 - 65.23 = '$1 - $65' 65.23 < - 204.69 = '$66 - $205' 204.69 < - 774.96 = '$206 - $775' 774.96 < - 59012.04 = '$776 - $59,012' ; VALUE TOTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.38 - 293.86 = '$1 - $294' 293.86 < - 875.43 = '$295 - $875' 875.43 < - 2698.56 = '$876 - $2,699' 2698.56 < - 950932.63 = '$2,700 - $950,933' ; VALUE TOTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.65 - 72.73 = '$1 - $73' 72.73 < - 275.195 = '$74 - $275' 275.195 < - 795.32 = '$276 - $795' 795.32 < - 129487.97 = '$796 - $129,488' ; VALUE TOTTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.8 - 193.84 = '$1 - $194' 193.84 < - 651.22 = '$195 - $651' 651.22 < - 1882.54 = '$652 - $1,883' 1882.54 < - 159246.24 = '$1,884 - $159,246' ; VALUE TOTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.08 - 27.655 = '$1 - $28' 27.655 < - 157.475 = '$29 - $157' 157.475 < - 709.755 = '$158 - $710' 709.755 < - 283914.78 = '$711 - $283,915' ; VALUE TOTWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.13 - 237.83 = '$2 - $238' 237.83 < - 780.85 = '$239 - $781' 780.85 < - 2539.8 = '$782 - $2,540' 2539.8 < - 431264.59 = '$2,541 - $431,265' ; VALUE YESNO 0 = '0 No' 1 = '1 Yes' ;