SAS User File for PROJYR06 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 (PROJYR06.SSP) or the ASCII data file (PROJYR06.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\PROJYR06.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.PROJYR06; TITLE "List of Variables in MEPS PROJYR06 SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.PROJYR06 (OBS=20); TITLE "First 20 Observations in MEPS PROJYR06 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) PROJYR06 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 PROJYR06.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file PROJYR06.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 PROJYR06.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 PROJYR06.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\PROJYR06.DAT'; DATA PUFLIB.PROJYR06; INFILE IN1 LRECL=656; 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 (PROJYR06). In the example, after the successful completion of the DATA step, a PC file named PROJYR06.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 (656 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 PROJYR06.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., 656 for PROJYR06.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (658 for PROJYR06.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 (656 for PROJYR06.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 (PROJYR06.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.PROJYR06; 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 PROJYR06.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=656; 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 TOTEXP06 9.2 @28 TOTSLF06 9.2 @37 TOTPHI06 9.2 @46 TOTMCR06 9.2 @55 TOTMCD06 9.2 @64 TOTTRI06 9.2 @73 TOTVA06 9.2 @82 TOTWC06 9.2 @91 TOTOTP06 8.2 @99 TOTOSR06 8.2 @107 HOSEXP06 9.2 @116 HOSSLF06 8.2 @124 HOSPHI06 9.2 @133 HOSMCR06 9.2 @142 HOSMCD06 9.2 @151 HOSTRI06 9.2 @160 HOSVA06 9.2 @169 HOSWC06 9.2 @178 HOSOTP06 8.2 @186 HOSOSR06 8.2 @194 PHYEXP06 9.2 @203 PHYSLF06 8.2 @211 PHYPHI06 8.2 @219 PHYMCR06 8.2 @227 PHYMCD06 8.2 @235 PHYTRI06 9.2 @244 PHYVA06 7.2 @251 PHYWC06 8.2 @259 PHYOTP06 8.2 @267 PHYOSR06 8.2 @275 DVTEXP06 8.2 @283 DVTSLF06 8.2 @291 DVTPHI06 8.2 @299 DVTMCR06 7.2 @306 DVTMCD06 8.2 @314 DVTTRI06 4.2 @318 DVTVA06 6.2 @324 DVTWC06 4.2 @328 DVTOTP06 7.2 @335 DVTOSR06 8.2 @343 OBOEXP06 8.2 @351 OBOSLF06 8.2 @359 OBOPHI06 8.2 @367 OBOMCR06 8.2 @375 OBOMCD06 8.2 @383 OBOTRI06 4.2 @387 OBOVA06 6.2 @393 OBOWC06 8.2 @401 OBOOTP06 7.2 @408 OBOOSR06 8.2 @416 HHCEXP06 9.2 @425 HHCSLF06 8.2 @433 HHCPHI06 9.2 @442 HHCMCR06 8.2 @450 HHCMCD06 9.2 @459 HHCTRI06 7.2 @466 HHCVA06 8.2 @474 HHCWC06 8.2 @482 HHCOTP06 8.2 @490 HHCOSR06 7.2 @497 RXEXP06 9.2 @506 RXSLF06 8.2 @514 RXPHI06 8.2 @522 RXMCR06 9.2 @531 RXMCD06 9.2 @540 RXTRI06 8.2 @548 RXVA06 8.2 @556 RXWC06 8.2 @564 RXOTP06 8.2 @572 RXOSR06 7.2 @579 OTHEXP06 8.2 @587 OTHSLF06 8.2 @595 OTHPHI06 8.2 @603 OTHMCR06 8.2 @611 OTHMCD06 4.2 @615 OTHTRI06 4.2 @619 OTHVA06 4.2 @623 OTHWC06 8.2 @631 OTHOTP06 7.2 @638 OTHOSR06 7.2 @645 WTADJ06 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. TOTEXP06 TOTEXP. TOTSLF06 TOTSLF. TOTPHI06 TOTPHI. TOTMCR06 TOTMCR. TOTMCD06 TOTMCD. TOTTRI06 TOTTRI. TOTVA06 TOTVA. TOTWC06 TOTWC. TOTOTP06 TOTOTP. TOTOSR06 TOTOSR. HOSEXP06 HOSEXP. HOSSLF06 HOSSLF. HOSPHI06 HOSPHI. HOSMCR06 HOSMCR. HOSMCD06 HOSMCD. HOSTRI06 HOSTRI. HOSVA06 HOSVA. HOSWC06 HOSWC. HOSOTP06 HOSOTP. HOSOSR06 HOSOSR. PHYEXP06 PHYEXP. PHYSLF06 PHYSLF. PHYPHI06 PHYPHI. PHYMCR06 PHYMCR. PHYMCD06 PHYMCD. PHYTRI06 PHYTRI. PHYVA06 PHYVA. PHYWC06 PHYWC. PHYOTP06 PHYOTP. PHYOSR06 PHYOSR. DVTEXP06 DVTEXP. DVTSLF06 DVTSLF. DVTPHI06 DVTPHI. DVTMCR06 DVTMCR. DVTMCD06 DVTMCD. DVTTRI06 DVTTRI. DVTVA06 DVTVA. DVTWC06 DVTWC. DVTOTP06 DVTOTP. DVTOSR06 DVTOSR. OBOEXP06 OBOEXP. OBOSLF06 OBOSLF. OBOPHI06 OBOPHI. OBOMCR06 OBOMCR. OBOMCD06 OBOMCD. OBOTRI06 OBOTRI. OBOVA06 OBOVA. OBOWC06 OBOWC. OBOOTP06 OBOOTP. OBOOSR06 OBOOSR. HHCEXP06 HHCEXP. HHCSLF06 HHCSLF. HHCPHI06 HHCPHI. HHCMCR06 HHCMCR. HHCMCD06 HHCMCD. HHCTRI06 HHCTRI. HHCVA06 HHCVA. HHCWC06 HHCWC. HHCOTP06 HHCOTP. HHCOSR06 HHCOSR. RXEXP06 RXEXP. RXSLF06 RXSLF. RXPHI06 RXPHI. RXMCR06 RXMCR. RXMCD06 RXMCD. RXTRI06 RXTRI. RXVA06 RXVA. RXWC06 RXWC. RXOTP06 RXOTP. RXOSR06 RXOSR. OTHEXP06 OTHEXP. OTHSLF06 OTHSLF. OTHPHI06 OTHPHI. OTHMCR06 OTHMCR. OTHMCD06 OTHMCD. OTHTRI06 OTHTRI. OTHVA06 OTHVA. OTHWC06 OTHWC. OTHOTP06 OTHOTP. OTHOSR06 OTHOSR. WTADJ06 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' TOTEXP06='TOTAL, PAID BY TOTAL, 2006' TOTSLF06='TOTAL, PAID BY OUT OF POCKET, 2006' TOTPHI06='TOTAL, PAID BY PRIV INSU, 2006' TOTMCR06='TOTAL, PAID BY MEDICARE, 2006' TOTMCD06='TOTAL, PAID BY MEDICAID, 2006' TOTTRI06='TOTAL, PAID BY TRICARE, 2006' TOTVA06 ='TOTAL, PAID BY VA, 2006' TOTWC06 ='TOTAL, PAID BY WORKERS COMP, 2006' TOTOTP06='TOTAL, PAID BY OTHER PUBLIC, 2006' TOTOSR06='TOTAL, PAID BY OTHER, 2006' HOSEXP06='HOSPITAL, PAID BY TOTAL, 2006' HOSSLF06='HOSPITAL, PAID BY OUT OF POCKET, 2006' HOSPHI06='HOSPITAL, PAID BY PRIV INSU, 2006' HOSMCR06='HOSPITAL, PAID BY MEDICARE, 2006' HOSMCD06='HOSPITAL, PAID BY MEDICAID, 2006' HOSTRI06='HOSPITAL, PAID BY TRICARE, 2006' HOSVA06 ='HOSPITAL, PAID BY VA, 2006' HOSWC06 ='HOSPITAL, PAID BY WORKERS COMP, 2006' HOSOTP06='HOSPITAL, PAID BY OTHER PUBLIC, 2006' HOSOSR06='HOSPITAL, PAID BY OTHER, 2006' PHYEXP06='PHYSICIAN, PAID BY TOTAL, 2006' PHYSLF06='PHYSICIAN, PAID BY OUT OF POCKET, 2006' PHYPHI06='PHYSICIAN, PAID BY PRIV INSU, 2006' PHYMCR06='PHYSICIAN, PAID BY MEDICARE, 2006' PHYMCD06='PHYSICIAN, PAID BY MEDICAID, 2006' PHYTRI06='PHYSICIAN, PAID BY TRICARE, 2006' PHYVA06 ='PHYSICIAN, PAID BY VA, 2006' PHYWC06 ='PHYSICIAN, PAID BY WORKERS COMP, 2006' PHYOTP06='PHYSICIAN, PAID BY OTHER PUBLIC, 2006' PHYOSR06='PHYSICIAN, PAID BY OTHER, 2006' DVTEXP06='DENTAL, PAID BY TOTAL, 2006' DVTSLF06='DENTAL, PAID BY OUT OF POCKET, 2006' DVTPHI06='DENTAL, PAID BY PRIV INSU, 2006' DVTMCR06='DENTAL, PAID BY MEDICARE, 2006' DVTMCD06='DENTAL, PAID BY MEDICAID, 2006' DVTTRI06='DENTAL, PAID BY TRICARE, 2006' DVTVA06 ='DENTAL, PAID BY VA, 2006' DVTWC06 ='DENTAL, PAID BY WORKERS COMP, 2006' DVTOTP06='DENTAL, PAID BY OTHER PUBLIC, 2006' DVTOSR06='DENTAL, PAID BY OTHER, 2006' OBOEXP06='OTHER PROVIDER, PAID BY TOTAL, 2006' OBOSLF06='OTHER PROVIDER, BY OUT OF POCKET, 2006' OBOPHI06='OTHER PROVIDER, PAID BY PRIV INSU, 2006' OBOMCR06='OTHER PROVIDER, PAID BY MEDICARE, 2006' OBOMCD06='OTHER PROVIDER, PAID BY MEDICAID, 2006' OBOTRI06='OTHER PROVIDER, PAID BY TRICARE, 2006' OBOVA06 ='OTHER PROVIDER, PAID BY VA, 2006' OBOWC06 ='OTHER PROVIDER, BY WORKERS COMP, 2006' OBOOTP06='OTHER PROVIDER, BY OTHER PUBLIC, 2006' OBOOSR06='OTHER PROVIDER, PAID BY OTHER, 2006' HHCEXP06='HOME HEALTH, PAID BY TOTAL, 2006' HHCSLF06='HOME HEALTH, PAID BY OUT OF POCKET, 2006' HHCPHI06='HOME HEALTH, PAID BY PRIV INSU, 2006' HHCMCR06='HOME HEALTH, PAID BY MEDICARE, 2006' HHCMCD06='HOME HEALTH, PAID BY MEDICAID, 2006' HHCTRI06='HOME HEALTH, PAID BY TRICARE, 2006' HHCVA06 ='HOME HEALTH, PAID BY VA, 2006' HHCWC06 ='HOME HEALTH, PAID BY WORKERS COMP, 2006' HHCOTP06='HOME HEALTH, PAID BY OTHER PUBLIC, 2006' HHCOSR06='HOME HEALTH, PAID BY OTHER, 2006' RXEXP06 ='RX, PAID BY TOTAL, 2006' RXSLF06 ='RX, PAID BY OUT OF POCKET, 2006' RXPHI06 ='RX, PAID BY PRIV INSU, 2006' RXMCR06 ='RX, PAID BY MEDICARE, 2006' RXMCD06 ='RX, PAID BY MEDICAID, 2006' RXTRI06 ='RX, PAID BY TRICARE, 2006' RXVA06 ='RX, PAID BY VA, 2006' RXWC06 ='RX, PAID BY WORKERS COMP, 2006' RXOTP06 ='RX, PAID BY OTHER PUBLIC, 2006' RXOSR06 ='RX, PAID BY OTHER, 2006' OTHEXP06='OTHER MEDICAL, PAID BY TOTAL, 2006' OTHSLF06='OTHER MEDICAL, BY OUT OF POCKET, 2006' OTHPHI06='OTHER MEDICAL, PAID BY PRIV INSU, 2006' OTHMCR06='OTHER MEDICAL, PAID BY MEDICARE, 2006' OTHMCD06='OTHER MEDICAL, PAID BY MEDICAID, 2006' OTHTRI06='OTHER MEDICAL, PAID BY TRICARE, 2006' OTHVA06 ='OTHER MEDICAL, PAID BY VA, 2006' OTHWC06 ='OTHER MEDICAL, BY WORKERS COMP, 2006' OTHOTP06='OTHER MEDICAL, PAID BY OTHR PUBLIC, 2006' OTHOSR06='OTHER MEDICAL, PAID BY OTHER, 2006' WTADJ06 ='GROWTH/FERTILITY/MORTALITY ADJ WGT,2006' ; * 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.1 - 125.53 = '$1 - $126' 125.53 < - 246.72 = '$127 - $247' 246.72 < - 577.135 = '$248 - $577' 577.135 < - 23048.25 = '$578 - $23,048' ; VALUE DVTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.82 - 80.29 = '$1 - $80' 80.29 < - 142.04 = '$81 - $142' 142.04 < - 295.45 = '$143 - $295' 295.45 < - 12320.58 = '$296 - $12,321' ; VALUE DVTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.66 - 17.53 = '$1 - $18' 17.53 < - 36.09 = '$19 - $36' 36.09 < - 92.795 = '$37 - $93' 92.795 < - 1880.58 = '$94 - $1,881' ; VALUE DVTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.12 - 91.06 = '$1 - $91' 91.06 < - 184.46 = '$92 - $184' 184.46 < - 338.56 = '$185 - $339' 338.56 < - 11180.71 = '$340 - $11,181' ; VALUE DVTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 12.89 - 74.08 = '$12 - $74' 74.08 < - 147.615 = '$75 - $148' 147.615 < - 412.6 = '$149 - $413' 412.6 < - 5160.11 = '$414 - $5,160' ; VALUE DVTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.44 - 134.78 = '$1 - $135' 134.78 < - 239.51 = '$136 - $240' 239.51 < - 493.81 = '$241 - $494' 493.81 < - 20605.82 = '$495 - $20,606' ; VALUE DVTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.17 - 49.17 = '$1 - $49' 49.17 < - 131.23 = '$50 - $131' 131.23 < - 362.11 = '$132 - $362' 362.11 < - 20319.5 = '$363 - $20,320' ; VALUE DVTTRI 0 = '0' ; VALUE DVTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.04 - 1.89 = '$1 - $2' 1.89 < - 4.36 = '$3 - $4' 4.36 < - 15.55 = '$5 - $16' 15.55 < - 172.1 = '$17 - $172' ; VALUE DVTWC 0 = '0' ; VALUE GTZERO 0 = '0' 0 < - HIGH = '>0' ; VALUE HHCEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.55 - 975.3 = '$6 - $975' 975.3 < - 3866.225 = '$976 - $3,866' 3866.225 < - 10028.05 = '$3,867 - $10,028' 10028.05 < - 234913.86 = '$10,029 - $234,914' ; VALUE HHCMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.79 - 736.04 = '$3 - $736' 736.04 < - 3373.96 = '$737 - $3,374' 3373.96 < - 11077.23 = '$3,375 - $11,077' 11077.23 < - 173449.2 = '$11,078 - $173,449' ; VALUE HHCMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 15.39 - 1801.51 = '$15 - $1,802' 1801.51 < - 4072.86 = '$1,803 - $4,073' 4072.86 < - 9129.74 = '$4,074 - $9,130' 9129.74 < - 73137.36 = '$9,131 - $73,137' ; VALUE HHCOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 57.85 - 142.74 = '$57 - $143' 142.74 < - 327.45 = '$144 - $327' 327.45 < - 928.87 = '$328 - $929' 928.87 < - 2788.8 = '$930 - $2,789' ; VALUE HHCOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 15.63 - 332.09 = '$15 - $332' 332.09 < - 830.46 = '$333 - $830' 830.46 < - 2161.72 = '$831 - $2,162' 2161.72 < - 16306.79 = '$2,163 - $16,307' ; VALUE HHCPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 36.07 - 756.245 = '$36 - $756' 756.245 < - 2428.63 = '$757 - $2,429' 2428.63 < - 7433.85 = '$2,430 - $7,434' 7433.85 < - 122856.21 = '$7,435 - $122,856' ; VALUE HHCSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.55 - 114.58 = '$6 - $115' 114.58 < - 398.23 = '$116 - $398' 398.23 < - 1337.41 = '$399 - $1,337' 1337.41 < - 78181.49 = '$1,338 - $78,181' ; VALUE HHCTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.1 - 50.62 = '$6 - $51' 50.62 < - 164.79 = '$52 - $165' 164.79 < - 439.51 = '$166 - $440' 439.51 < - 1706.22 = '$441 - $1,706' ; VALUE HHCVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 171.72 - 1637.49 = '$171 - $1,637' 1637.49 < - 4293.02 = '$1,638 - $4,293' 4293.02 < - 9780.41 = '$4,294 - $9,780' 9780.41 < - 44647.41 = '$9,781 - $44,647' ; VALUE HHCWC 0 = '0' 20000 - 40000 = '$20,000 - $40,000' ; VALUE HOSEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.4 - 227.57 = '$2 - $228' 227.57 < - 861.37 = '$229 - $861' 861.37 < - 3801.465 = '$862 - $3,801' 3801.465 < - 709966.92 = '$3,802 - $709,967' ; VALUE HOSMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.33 - 148.8 = '$1 - $149' 148.8 < - 555.02 = '$150 - $555' 555.02 < - 2720.42 = '$556 - $2,720' 2720.42 < - 526919.89 = '$2,721 - $526,920' ; VALUE HOSMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.04 - 189.86 = '$1 - $190' 189.86 < - 983.11 = '$191 - $983' 983.11 < - 5949.01 = '$984 - $5,949' 5949.01 < - 188954.41 = '$5,950 - $188,954' ; VALUE HOSOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.2 - 94.32 = '$2 - $94' 94.32 < - 306.595 = '$95 - $307' 306.595 < - 1150.96 = '$308 - $1,151' 1150.96 < - 61640.32 = '$1,152 - $61,640' ; VALUE HOSOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.29 - 85.84 = '$6 - $86' 85.84 < - 266.095 = '$87 - $266' 266.095 < - 1098.65 = '$267 - $1,099' 1098.65 < - 55346.12 = '$1,100 - $55,346' ; VALUE HOSPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.2 - 202.63 = '$1 - $203' 202.63 < - 739 = '$204 - $739' 739 < - 2492.48 = '$740 - $2,492' 2492.48 < - 709966.92 = '$2,493 - $709,967' ; VALUE HOSSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.38 - 35.88 = '$1 - $36' 35.88 < - 107.65 = '$37 - $108' 107.65 < - 358.84 = '$109 - $359' 358.84 < - 89793.74 = '$360 - $89,794' ; VALUE HOSTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.63 - 49.03 = '$1 - $49' 49.03 < - 178.6 = '$50 - $179' 178.6 < - 587.57 = '$180 - $588' 587.57 < - 113138.18 = '$589 - $113,138' ; VALUE HOSVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.22 - 165.7 = '$1 - $166' 165.7 < - 659.95 = '$167 - $660' 659.95 < - 2719.41 = '$661 - $2,719' 2719.41 < - 252897.9 = '$2,720 - $252,898' ; VALUE HOSWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.09 - 80.88 = '$2 - $81' 80.88 < - 226.81 = '$82 - $227' 226.81 < - 740.99 = '$228 - $741' 740.99 < - 345269.81 = '$742 - $345,270' ; VALUE $ID 'N0000106' - 'N7338006' = 'N0000106 - N7338006' ; VALUE INSCOV_A 1 = '1 Any Private, employment related or TRICARE' 2 = '2 Any Private, not employment related' 3 = '3 Any Public (Medicaid, SCHIP, Medicare)' 4 = '4 Uninsured for entire year' 5 = '5 Age 65 or older' ; VALUE INSCOV_B -1 = '-1 Inapplicable (under age 65)' 1 = '1 Held Medicaid and Medicare at same time' 2 = '2 Held Mcare & Priv via emplymnt at same time' 3 = '3 Held Mcare & Priv-nonemplmnt at same time' 4 = '4 Held Medicare alone during the year' 5 = '5 Held no Medicare during the year' ; VALUE OBOEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.1 - 16.21 = '$1 - $16' 16.21 < - 59.73 = '$17 - $60' 59.73 < - 238.99 = '$61 - $239' 238.99 < - 73114.2 = '$240 - $73,114' ; VALUE OBOMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.1 - 8.07 = '$1 - $8' 8.07 < - 23.38 = '$9 - $23' 23.38 < - 91.99 = '$24 - $92' 91.99 < - 56395.62 = '$93 - $56,396' ; VALUE OBOMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.11 - 24.37 = '$1 - $24' 24.37 < - 91.97 = '$25 - $92' 91.97 < - 283.55 = '$93 - $284' 283.55 < - 66193.75 = '$285 - $66,194' ; VALUE OBOOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.13 - 35.27 = '$1 - $35' 35.27 < - 97.58 = '$36 - $98' 97.58 < - 318.59 = '$99 - $319' 318.59 < - 12379.27 = '$320 - $12,379' ; VALUE OBOOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.02 - 33.54 = '$2 - $34' 33.54 < - 82.14 = '$35 - $82' 82.14 < - 231.6 = '$83 - $232' 231.6 < - 3851.15 = '$233 - $3,851' ; VALUE OBOPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.11 - 10.95 = '$1 - $11' 10.95 < - 35.84 = '$12 - $36' 35.84 < - 146.58 = '$37 - $147' 146.58 < - 62357.97 = '$148 - $62,358' ; VALUE OBOSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.14 - 3.72 = '$1 - $4' 3.72 < - 12.23 = '$5 - $12' 12.23 < - 47.48 = '$13 - $47' 47.48 < - 31399.44 = '$48 - $31,399' ; VALUE OBOTRI 0 = '0' ; VALUE OBOVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.11 - 1.93 = '$1 - $2' 1.93 < - 5.89 = '$3 - $6' 5.89 < - 18 = '$7 - $18' 18 < - 882.97 = '$19 - $883' ; VALUE OBOWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.08 - 50.45 = '$1 - $50' 50.45 < - 143.915 = '$51 - $144' 143.915 < - 548.66 = '$145 - $549' 548.66 < - 13612.88 = '$550 - $13,613' ; VALUE OTHEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.68 - 132.74 = '$1 - $133' 132.74 < - 273.8 = '$134 - $274' 273.8 < - 498.77 = '$275 - $499' 498.77 < - 53476.42 = '$500 - $53,476' ; VALUE OTHMCD 0 = '0' ; VALUE OTHMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.5 - 632.28 = '$6 - $632' 632.28 < - 1231.41 = '$633 - $1,231' 1231.41 < - 2940.435 = '$1,232 - $2,940' 2940.435 < - 52614.28 = '$2,941 - $52,614' ; VALUE OTHOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.01 - 93.53 = '$6 - $94' 93.53 < - 207.85 = '$95 - $208' 207.85 < - 357.47 = '$209 - $357' 357.47 < - 7009.12 = '$358 - $7,009' ; VALUE OTHOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.6 - 53.83 = '$2 - $54' 53.83 < - 98.025 = '$55 - $98' 98.025 < - 251.21 = '$99 - $251' 251.21 < - 2699.95 = '$252 - $2,700' ; VALUE OTHPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.86 - 62.98 = '$1 - $63' 62.98 < - 124.345 = '$64 - $124' 124.345 < - 223.85 = '$125 - $224' 223.85 < - 16117.06 = '$225 - $16,117' ; VALUE OTHSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.68 - 100.82 = '$1 - $101' 100.82 < - 235.43 = '$102 - $235' 235.43 < - 435.99 = '$236 - $436' 435.99 < - 47477.29 = '$437 - $47,477' ; VALUE OTHTRI 0 = '0' ; VALUE OTHVA 0 = '0' ; VALUE OTHWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 161.95 - 1061.02 = '$161 - $1,061' 1061.02 < - 2101.435 = '$1,062 - $2,101' 2101.435 < - 4290.88 = '$2,102 - $4,291' 4290.88 < - 19488.39 = '$4,292 - $19,488' ; VALUE PHYEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.22 - 150.48 = '$1 - $150' 150.48 < - 392.22 = '$151 - $392' 392.22 < - 1190.47 = '$393 - $1,190' 1190.47 < - 116674.61 = '$1,191 - $116,675' ; VALUE PHYMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.18 - 83.2 = '$1 - $83' 83.2 < - 202.76 = '$84 - $203' 202.76 < - 558.77 = '$204 - $559' 558.77 < - 56361.83 = '$560 - $56,362' ; VALUE PHYMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.48 - 227.13 = '$1 - $227' 227.13 < - 673.72 = '$228 - $674' 673.72 < - 1914.81 = '$675 - $1,915' 1914.81 < - 89959.35 = '$1,916 - $89,959' ; VALUE PHYOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.14 - 50.19 = '$1 - $50' 50.19 < - 108.93 = '$51 - $109' 108.93 < - 277.21 = '$110 - $277' 277.21 < - 91703.69 = '$278 - $91,704' ; VALUE PHYOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.98 - 47.18 = '$1 - $47' 47.18 < - 104.18 = '$48 - $104' 104.18 < - 300.23 = '$105 - $300' 300.23 < - 38306.25 = '$301 - $38,306' ; VALUE PHYPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.62 - 126.41 = '$1 - $126' 126.41 < - 310.13 = '$127 - $310' 310.13 < - 861.28 = '$311 - $861' 861.28 < - 92906.52 = '$862 - $92,907' ; VALUE PHYSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.15 - 23.07 = '$1 - $23' 23.07 < - 57.575 = '$24 - $58' 57.575 < - 147.66 = '$59 - $148' 147.66 < - 32323.62 = '$149 - $32,324' ; VALUE PHYTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.01 - 138.78 = '$6 - $139' 138.78 < - 410.095 = '$140 - $410' 410.095 < - 1048.205 = '$411 - $1,048' 1048.205 < - 100987.95 = '$1,049 - $100,988' ; VALUE PHYVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.34 - 18.24 = '$1 - $18' 18.24 < - 60.24 = '$19 - $60' 60.24 < - 200.34 = '$61 - $200' 200.34 < - 6911.38 = '$201 - $6,911' ; VALUE PHYWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 4.76 - 206.24 = '$4 - $206' 206.24 < - 523.25 = '$207 - $523' 523.25 < - 1664.89 = '$524 - $1,665' 1664.89 < - 54206.3 = '$1,666 - $54,206' ; 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.31 - 52.81 = '$1 - $53' 52.81 < - 222.08 = '$54 - $222' 222.08 < - 880.7 = '$223 - $881' 880.7 < - 196392.38 = '$882 - $196,392' ; VALUE RXMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.31 - 31.56 = '$1 - $32' 31.56 < - 101.495 = '$33 - $101' 101.495 < - 430.655 = '$102 - $431' 430.655 < - 172715.43 = '$432 - $172,715' ; VALUE RXMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.3 - 555.79 = '$5 - $556' 555.79 < - 1675.4 = '$557 - $1,675' 1675.4 < - 4501.31 = '$1,676 - $4,501' 4501.31 < - 195473.56 = '$4,502 - $195,474' ; VALUE RXOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.52 - 32.83 = '$3 - $33' 32.83 < - 126.56 = '$34 - $127' 126.56 < - 285.24 = '$128 - $285' 285.24 < - 3302.9 = '$286 - $3,303' ; VALUE RXOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.36 - 42.09 = '$1 - $42' 42.09 < - 209.83 = '$43 - $210' 209.83 < - 800.09 = '$211 - $800' 800.09 < - 33283.3 = '$801 - $33,283' ; VALUE RXPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.43 - 57.71 = '$1 - $58' 57.71 < - 220.98 = '$59 - $221' 220.98 < - 809.8 = '$222 - $810' 809.8 < - 62757.76 = '$811 - $62,758' ; VALUE RXSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.56 - 15.6 = '$1 - $16' 15.6 < - 60.66 = '$17 - $61' 60.66 < - 215.48 = '$62 - $215' 215.48 < - 20374.24 = '$216 - $20,374' ; VALUE RXTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.39 - 22.55 = '$1 - $23' 22.55 < - 107.09 = '$24 - $107' 107.09 < - 450.73 = '$108 - $451' 450.73 < - 16209.71 = '$452 - $16,210' ; VALUE RXVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.53 - 38.77 = '$1 - $39' 38.77 < - 166.875 = '$40 - $167' 166.875 < - 473.49 = '$168 - $473' 473.49 < - 12130.26 = '$474 - $12,130' ; VALUE RXWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.39 - 60.58 = '$1 - $61' 60.58 < - 155.27 = '$62 - $155' 155.27 < - 505.81 = '$156 - $506' 505.81 < - 15868.74 = '$507 - $15,869' ; VALUE SEX 1 = '1 Male' 2 = '2 Female' ; VALUE TOTEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.58 - 337.69 = '$1 - $338' 337.69 < - 1074.76 = '$339 - $1,075' 1074.76 < - 3590.57 = '$1,076 - $3,591' 3590.57 < - 772158.39 = '$3,592 - $772,158' ; VALUE TOTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.61 - 156.53 = '$1 - $157' 156.53 < - 468.845 = '$158 - $469' 468.845 < - 1871.97 = '$470 - $1,872' 1871.97 < - 535054.6 = '$1,873 - $535,055' ; VALUE TOTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.04 - 399.47 = '$1 - $399' 399.47 < - 1556.445 = '$400 - $1,556' 1556.445 < - 6274.66 = '$1,557 - $6,275' 6274.66 < - 219147.34 = '$6,276 - $219,147' ; VALUE TOTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.12 - 63.88 = '$1 - $64' 63.88 < - 152.64 = '$65 - $153' 152.64 < - 409.68 = '$154 - $410' 409.68 < - 91703.69 = '$411 - $91,704' ; VALUE TOTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.98 - 63.9 = '$1 - $64' 63.9 < - 197.94 = '$65 - $198' 197.94 < - 737.25 = '$199 - $737' 737.25 < - 55346.12 = '$738 - $55,346' ; VALUE TOTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.21 - 242.58 = '$1 - $243' 242.58 < - 723.17 = '$244 - $723' 723.17 < - 2227.97 = '$724 - $2,228' 2227.97 < - 767815 = '$2,229 - $767,815' ; VALUE TOTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.56 - 61.37 = '$1 - $61' 61.37 < - 234.15 = '$62 - $234' 234.15 < - 680.69 = '$235 - $681' 680.69 < - 104323.22 = '$682 - $104,323' ; VALUE TOTTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.63 - 159.9 = '$1 - $160' 159.9 < - 543.31 = '$161 - $543' 543.31 < - 1569.86 = '$544 - $1,570' 1569.86 < - 125980.29 = '$1,571 - $125,980' ; VALUE TOTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.08 - 23.75 = '$1 - $24' 23.75 < - 131.975 = '$25 - $132' 131.975 < - 608.63 = '$133 - $609' 608.63 < - 253084.64 = '$610 - $253,085' ; VALUE TOTWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.09 - 220.56 = '$2 - $221' 220.56 < - 692.855 = '$222 - $693' 692.855 < - 2253.25 = '$694 - $2,253' 2253.25 < - 411833.11 = '$2,254 - $411,833' ; VALUE YESNO 0 = '0 No' 1 = '1 Yes' ;