SAS User File for PROJYR13 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 (PROJYR13.SSP) or the ASCII data file (PROJYR13.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\PROJYR13.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.PROJYR13; TITLE "List of Variables in MEPS PROJYR13 SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.PROJYR13 (OBS=20); TITLE "First 20 Observations in MEPS PROJYR13 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) PROJYR13 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 PROJYR13.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file PROJYR13.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 PROJYR13.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 PROJYR13.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\PROJYR13.DAT'; DATA PUFLIB.PROJYR13; INFILE IN1 LRECL=666; 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 (PROJYR13). In the example, after the successful completion of the DATA step, a PC file named PROJYR13.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 (666 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 PROJYR13.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., 666 for PROJYR13.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (668 for PROJYR13.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 (666 for PROJYR13.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 (PROJYR13.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.PROJYR13; 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 PROJYR13.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=666; 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 TOTEXP13 10.2 @29 TOTSLF13 9.2 @38 TOTPHI13 10.2 @48 TOTMCR13 9.2 @57 TOTMCD13 9.2 @66 TOTTRI13 9.2 @75 TOTVA13 9.2 @84 TOTWC13 9.2 @93 TOTOTP13 8.2 @101 TOTOSR13 9.2 @110 HOSEXP13 10.2 @120 HOSSLF13 9.2 @129 HOSPHI13 10.2 @139 HOSMCR13 9.2 @148 HOSMCD13 9.2 @157 HOSTRI13 9.2 @166 HOSVA13 9.2 @175 HOSWC13 9.2 @184 HOSOTP13 8.2 @192 HOSOSR13 8.2 @200 PHYEXP13 9.2 @209 PHYSLF13 8.2 @217 PHYPHI13 9.2 @226 PHYMCR13 9.2 @235 PHYMCD13 8.2 @243 PHYTRI13 9.2 @252 PHYVA13 7.2 @259 PHYWC13 8.2 @267 PHYOTP13 8.2 @275 PHYOSR13 9.2 @284 DVTEXP13 8.2 @292 DVTSLF13 8.2 @300 DVTPHI13 8.2 @308 DVTMCR13 7.2 @315 DVTMCD13 8.2 @323 DVTTRI13 4.2 @327 DVTVA13 6.2 @333 DVTWC13 4.2 @337 DVTOTP13 7.2 @344 DVTOSR13 8.2 @352 OBOEXP13 8.2 @360 OBOSLF13 8.2 @368 OBOPHI13 8.2 @376 OBOMCR13 8.2 @384 OBOMCD13 8.2 @392 OBOTRI13 4.2 @396 OBOVA13 6.2 @402 OBOWC13 8.2 @410 OBOOTP13 7.2 @417 OBOOSR13 8.2 @425 HHCEXP13 9.2 @434 HHCSLF13 8.2 @442 HHCPHI13 9.2 @451 HHCMCR13 9.2 @460 HHCMCD13 9.2 @469 HHCTRI13 7.2 @476 HHCVA13 8.2 @484 HHCWC13 8.2 @492 HHCOTP13 8.2 @500 HHCOSR13 7.2 @507 RXEXP13 9.2 @516 RXSLF13 8.2 @524 RXPHI13 8.2 @532 RXMCR13 9.2 @541 RXMCD13 9.2 @550 RXTRI13 8.2 @558 RXVA13 8.2 @566 RXWC13 8.2 @574 RXOTP13 8.2 @582 RXOSR13 7.2 @589 OTHEXP13 8.2 @597 OTHSLF13 8.2 @605 OTHPHI13 8.2 @613 OTHMCR13 8.2 @621 OTHMCD13 4.2 @625 OTHTRI13 4.2 @629 OTHVA13 4.2 @633 OTHWC13 8.2 @641 OTHOTP13 7.2 @648 OTHOSR13 7.2 @655 WTADJ13 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. TOTEXP13 TOTEXP. TOTSLF13 TOTSLF. TOTPHI13 TOTPHI. TOTMCR13 TOTMCR. TOTMCD13 TOTMCD. TOTTRI13 TOTTRI. TOTVA13 TOTVA. TOTWC13 TOTWC. TOTOTP13 TOTOTP. TOTOSR13 TOTOSR. HOSEXP13 HOSEXP. HOSSLF13 HOSSLF. HOSPHI13 HOSPHI. HOSMCR13 HOSMCR. HOSMCD13 HOSMCD. HOSTRI13 HOSTRI. HOSVA13 HOSVA. HOSWC13 HOSWC. HOSOTP13 HOSOTP. HOSOSR13 HOSOSR. PHYEXP13 PHYEXP. PHYSLF13 PHYSLF. PHYPHI13 PHYPHI. PHYMCR13 PHYMCR. PHYMCD13 PHYMCD. PHYTRI13 PHYTRI. PHYVA13 PHYVA. PHYWC13 PHYWC. PHYOTP13 PHYOTP. PHYOSR13 PHYOSR. DVTEXP13 DVTEXP. DVTSLF13 DVTSLF. DVTPHI13 DVTPHI. DVTMCR13 DVTMCR. DVTMCD13 DVTMCD. DVTTRI13 DVTTRI. DVTVA13 DVTVA. DVTWC13 DVTWC. DVTOTP13 DVTOTP. DVTOSR13 DVTOSR. OBOEXP13 OBOEXP. OBOSLF13 OBOSLF. OBOPHI13 OBOPHI. OBOMCR13 OBOMCR. OBOMCD13 OBOMCD. OBOTRI13 OBOTRI. OBOVA13 OBOVA. OBOWC13 OBOWC. OBOOTP13 OBOOTP. OBOOSR13 OBOOSR. HHCEXP13 HHCEXP. HHCSLF13 HHCSLF. HHCPHI13 HHCPHI. HHCMCR13 HHCMCR. HHCMCD13 HHCMCD. HHCTRI13 HHCTRI. HHCVA13 HHCVA. HHCWC13 HHCWC. HHCOTP13 HHCOTP. HHCOSR13 HHCOSR. RXEXP13 RXEXP. RXSLF13 RXSLF. RXPHI13 RXPHI. RXMCR13 RXMCR. RXMCD13 RXMCD. RXTRI13 RXTRI. RXVA13 RXVA. RXWC13 RXWC. RXOTP13 RXOTP. RXOSR13 RXOSR. OTHEXP13 OTHEXP. OTHSLF13 OTHSLF. OTHPHI13 OTHPHI. OTHMCR13 OTHMCR. OTHMCD13 OTHMCD. OTHTRI13 OTHTRI. OTHVA13 OTHVA. OTHWC13 OTHWC. OTHOTP13 OTHOTP. OTHOSR13 OTHOSR. WTADJ13 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' TOTEXP13='TOTAL, PAID BY TOTAL, 2013' TOTSLF13='TOTAL, PAID BY OUT OF POCKET, 2013' TOTPHI13='TOTAL, PAID BY PRIV INSU, 2013' TOTMCR13='TOTAL, PAID BY MEDICARE, 2013' TOTMCD13='TOTAL, PAID BY MEDICAID, 2013' TOTTRI13='TOTAL, PAID BY TRICARE, 2013' TOTVA13 ='TOTAL, PAID BY VA, 2013' TOTWC13 ='TOTAL, PAID BY WORKERS COMP, 2013' TOTOTP13='TOTAL, PAID BY OTHER PUBLIC, 2013' TOTOSR13='TOTAL, PAID BY OTHER, 2013' HOSEXP13='HOSPITAL, PAID BY TOTAL, 2013' HOSSLF13='HOSPITAL, PAID BY OUT OF POCKET, 2013' HOSPHI13='HOSPITAL, PAID BY PRIV INSU, 2013' HOSMCR13='HOSPITAL, PAID BY MEDICARE, 2013' HOSMCD13='HOSPITAL, PAID BY MEDICAID, 2013' HOSTRI13='HOSPITAL, PAID BY TRICARE, 2013' HOSVA13 ='HOSPITAL, PAID BY VA, 2013' HOSWC13 ='HOSPITAL, PAID BY WORKERS COMP, 2013' HOSOTP13='HOSPITAL, PAID BY OTHER PUBLIC, 2013' HOSOSR13='HOSPITAL, PAID BY OTHER, 2013' PHYEXP13='PHYSICIAN, PAID BY TOTAL, 2013' PHYSLF13='PHYSICIAN, PAID BY OUT OF POCKET, 2013' PHYPHI13='PHYSICIAN, PAID BY PRIV INSU, 2013' PHYMCR13='PHYSICIAN, PAID BY MEDICARE, 2013' PHYMCD13='PHYSICIAN, PAID BY MEDICAID, 2013' PHYTRI13='PHYSICIAN, PAID BY TRICARE, 2013' PHYVA13 ='PHYSICIAN, PAID BY VA, 2013' PHYWC13 ='PHYSICIAN, PAID BY WORKERS COMP, 2013' PHYOTP13='PHYSICIAN, PAID BY OTHER PUBLIC, 2013' PHYOSR13='PHYSICIAN, PAID BY OTHER, 2013' DVTEXP13='DENTAL, PAID BY TOTAL, 2013' DVTSLF13='DENTAL, PAID BY OUT OF POCKET, 2013' DVTPHI13='DENTAL, PAID BY PRIV INSU, 2013' DVTMCR13='DENTAL, PAID BY MEDICARE, 2013' DVTMCD13='DENTAL, PAID BY MEDICAID, 2013' DVTTRI13='DENTAL, PAID BY TRICARE, 2013' DVTVA13 ='DENTAL, PAID BY VA, 2013' DVTWC13 ='DENTAL, PAID BY WORKERS COMP, 2013' DVTOTP13='DENTAL, PAID BY OTHER PUBLIC, 2013' DVTOSR13='DENTAL, PAID BY OTHER, 2013' OBOEXP13='OTHER PROVIDER, PAID BY TOTAL, 2013' OBOSLF13='OTHER PROVIDER, BY OUT OF POCKET, 2013' OBOPHI13='OTHER PROVIDER, PAID BY PRIV INSU, 2013' OBOMCR13='OTHER PROVIDER, PAID BY MEDICARE, 2013' OBOMCD13='OTHER PROVIDER, PAID BY MEDICAID, 2013' OBOTRI13='OTHER PROVIDER, PAID BY TRICARE, 2013' OBOVA13 ='OTHER PROVIDER, PAID BY VA, 2013' OBOWC13 ='OTHER PROVIDER, BY WORKERS COMP, 2013' OBOOTP13='OTHER PROVIDER, BY OTHER PUBLIC, 2013' OBOOSR13='OTHER PROVIDER, PAID BY OTHER, 2013' HHCEXP13='HOME HEALTH, PAID BY TOTAL, 2013' HHCSLF13='HOME HEALTH, PAID BY OUT OF POCKET, 2013' HHCPHI13='HOME HEALTH, PAID BY PRIV INSU, 2013' HHCMCR13='HOME HEALTH, PAID BY MEDICARE, 2013' HHCMCD13='HOME HEALTH, PAID BY MEDICAID, 2013' HHCTRI13='HOME HEALTH, PAID BY TRICARE, 2013' HHCVA13 ='HOME HEALTH, PAID BY VA, 2013' HHCWC13 ='HOME HEALTH, PAID BY WORKERS COMP, 2013' HHCOTP13='HOME HEALTH, PAID BY OTHER PUBLIC, 2013' HHCOSR13='HOME HEALTH, PAID BY OTHER, 2013' RXEXP13 ='RX, PAID BY TOTAL, 2013' RXSLF13 ='RX, PAID BY OUT OF POCKET, 2013' RXPHI13 ='RX, PAID BY PRIV INSU, 2013' RXMCR13 ='RX, PAID BY MEDICARE, 2013' RXMCD13 ='RX, PAID BY MEDICAID, 2013' RXTRI13 ='RX, PAID BY TRICARE, 2013' RXVA13 ='RX, PAID BY VA, 2013' RXWC13 ='RX, PAID BY WORKERS COMP, 2013' RXOTP13 ='RX, PAID BY OTHER PUBLIC, 2013' RXOSR13 ='RX, PAID BY OTHER, 2013' OTHEXP13='OTHER MEDICAL, PAID BY TOTAL, 2013' OTHSLF13='OTHER MEDICAL, BY OUT OF POCKET, 2013' OTHPHI13='OTHER MEDICAL, PAID BY PRIV INSU, 2013' OTHMCR13='OTHER MEDICAL, PAID BY MEDICARE, 2013' OTHMCD13='OTHER MEDICAL, PAID BY MEDICAID, 2013' OTHTRI13='OTHER MEDICAL, PAID BY TRICARE, 2013' OTHVA13 ='OTHER MEDICAL, PAID BY VA, 2013' OTHWC13 ='OTHER MEDICAL, BY WORKERS COMP, 2013' OTHOTP13='OTHER MEDICAL, PAID BY OTHR PUBLIC, 2013' OTHOSR13='OTHER MEDICAL, PAID BY OTHER, 2013' WTADJ13 ='GROWTH/FERTILITY/MORTALITY ADJ WGT,2013' ; * 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.09 - 177.62 = '$1 - $178' 177.62 < - 347.38 = '$179 - $347' 347.38 < - 810.25 = '$348 - $810' 810.25 < - 32615.89 = '$811 - $32,616' ; VALUE DVTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.82 - 124.04 = '$2 - $124' 124.04 < - 219.44 = '$125 - $219' 219.44 < - 456.44 = '$220 - $456' 456.44 < - 19033.9 = '$457 - $19,034' ; VALUE DVTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.1 - 32.79 = '$3 - $33' 32.79 < - 67.52 = '$34 - $68' 67.52 < - 173.59 = '$69 - $174' 173.59 < - 3518.11 = '$175 - $3,518' ; VALUE DVTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.53 - 123.8 = '$1 - $124' 123.8 < - 250.77 = '$125 - $251' 250.77 < - 460.27 = '$252 - $460' 460.27 < - 15199.88 = '$461 - $15,200' ; VALUE DVTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 12.9 - 74.17 = '$12 - $74' 74.17 < - 147.785 = '$75 - $148' 147.785 < - 413.08 = '$149 - $413' 413.08 < - 5166.05 = '$414 - $5,166' ; VALUE DVTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.05 - 191.79 = '$2 - $192' 191.79 < - 340.82 = '$193 - $341' 340.82 < - 702.695 = '$342 - $703' 702.695 < - 29322.1 = '$704 - $29,322' ; VALUE DVTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.58 - 66.31 = '$1 - $66' 66.31 < - 176.98 = '$67 - $177' 176.98 < - 488.33 = '$178 - $488' 488.33 < - 27402.39 = '$489 - $27,402' ; VALUE DVTTRI 0 = '0' ; VALUE DVTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.04 - 1.88 = '$1 - $2' 1.88 < - 4.34 = '$3 - $4' 4.34 < - 15.48 = '$5 - $15' 15.48 < - 171.29 = '$16 - $171' ; VALUE DVTWC 0 = '0' ; VALUE GTZERO 0 = '0' 0 < - HIGH = '>0' ; VALUE HHCEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 8.01 - 1337.76 = '$8 - $1,338' 1337.76 < - 5357.055 = '$1,339 - $5,357' 5357.055 < - 15108.45 = '$5,358 - $15,108' 15108.45 < - 369128.15 = '$15,109 - $369,128' ; VALUE HHCMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.59 - 1279.26 = '$6 - $1,279' 1279.26 < - 5864.07 = '$1,280 - $5,864' 5864.07 < - 19252.65 = '$5,865 - $19,253' 19252.65 < - 301461.52 = '$19,254 - $301,462' ; VALUE HHCMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 21.15 - 2475.91 = '$21 - $2,476' 2475.91 < - 5597.525 = '$2,477 - $5,598' 5597.525 < - 12547.46 = '$5,599 - $12,547' 12547.46 < - 100516.28 = '$12,548 - $100,516' ; VALUE HHCOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 73.17 - 180.55 = '$73 - $181' 180.55 < - 414.18 = '$182 - $414' 414.18 < - 1174.9 = '$415 - $1,175' 1174.9 < - 3527.46 = '$1,176 - $3,527' ; VALUE HHCOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 18.77 - 398.96 = '$18 - $399' 398.96 < - 997.665 = '$400 - $998' 997.665 < - 2596.95 = '$999 - $2,597' 2596.95 < - 19589.97 = '$2,598 - $19,590' ; VALUE HHCPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 39.71 - 832.51 = '$39 - $833' 832.51 < - 2673.54 = '$834 - $2,674' 2673.54 < - 8183.505 = '$2,675 - $8,184' 8183.505 < - 135245.44 = '$8,185 - $135,245' ; VALUE HHCSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 8.01 - 140.25 = '$8 - $140' 140.25 < - 487.42 = '$141 - $487' 487.42 < - 1636.97 = '$488 - $1,637' 1636.97 < - 95693.11 = '$1,638 - $95,693' ; VALUE HHCTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.93 - 57.555 = '$6 - $58' 57.555 < - 187.36 = '$59 - $187' 187.36 < - 499.71 = '$188 - $500' 499.71 < - 1939.93 = '$501 - $1,940' ; VALUE HHCVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 193.91 - 1849.09 = '$193 - $1,849' 1849.09 < - 4847.76 = '$1,850 - $4,848' 4847.76 < - 11044.22 = '$4,849 - $11,044' 11044.22 < - 50416.69 = '$11,045 - $50,417' ; VALUE HHCWC 0 = '0' 20000 - 40000 = '$20,000 - $40,000' ; VALUE HOSEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.48 - 322.1 = '$3 - $322' 322.1 < - 1227.045 = '$323 - $1,227' 1227.045 < - 5387.225 = '$1,228 - $5,387' 5387.225 < - 1030215.27 = '$5,388 - $1,030,215' ; VALUE HOSMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.92 - 213.705 = '$1 - $214' 213.705 < - 797.11 = '$215 - $797' 797.11 < - 3907 = '$798 - $3,907' 3907 < - 756749.1 = '$3,908 - $756,749' ; VALUE HOSMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.38 - 251.31 = '$1 - $251' 251.31 < - 1301.32 = '$252 - $1,301' 1301.32 < - 7874.56 = '$1,302 - $7,875' 7874.56 < - 250114.17 = '$7,876 - $250,114' ; VALUE HOSOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.95 - 126.47 = '$2 - $126' 126.47 < - 411.08 = '$127 - $411' 411.08 < - 1543.21 = '$412 - $1,543' 1543.21 < - 82647.58 = '$1,544 - $82,648' ; VALUE HOSOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.05 - 96.1 = '$7 - $96' 96.1 < - 297.92 = '$97 - $298' 297.92 < - 1230.03 = '$299 - $1,230' 1230.03 < - 61964.94 = '$1,231 - $61,965' ; VALUE HOSPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.74 - 294.03 = '$1 - $294' 294.03 < - 1072.34 = '$295 - $1,072' 1072.34 < - 3616.78 = '$1,073 - $3,617' 3616.78 < - 1030215.27 = '$3,618 - $1,030,215' ; VALUE HOSSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.05 - 53.15 = '$2 - $53' 53.15 < - 159.44 = '$54 - $159' 159.44 < - 531.48 = '$160 - $531' 531.48 < - 132994.54 = '$532 - $132,995' ; VALUE HOSTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.95 - 73.74 = '$1 - $74' 73.74 < - 268.64 = '$75 - $269' 268.64 < - 883.795 = '$270 - $884' 883.795 < - 170177.6 = '$885 - $170,178' ; VALUE HOSVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.48 - 201.25 = '$1 - $201' 201.25 < - 801.555 = '$202 - $802' 801.555 < - 3302.92 = '$803 - $3,303' 3302.92 < - 307162.35 = '$3,304 - $307,162' ; VALUE HOSWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.36 - 91.35 = '$2 - $91' 91.35 < - 256.17 = '$92 - $256' 256.17 < - 836.89 = '$257 - $837' 836.89 < - 389959.44 = '$838 - $389,959' ; VALUE $ID 'N0000113' - 'N7338013' = 'N0000113 - N7338013' ; 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.16 - 22.06 = '$1 - $22' 22.06 < - 80.44 = '$23 - $80' 80.44 < - 316.45 = '$81 - $316' 316.45 < - 92068.67 = '$317 - $92,069' ; VALUE OBOMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.16 - 12.77 = '$1 - $13' 12.77 < - 37.01 = '$14 - $37' 37.01 < - 145.6 = '$38 - $146' 145.6 < - 89260 = '$147 - $89,260' ; VALUE OBOMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.15 - 31.37 = '$1 - $31' 31.37 < - 118.41 = '$32 - $118' 118.41 < - 365.06 = '$119 - $365' 365.06 < - 85221.92 = '$366 - $85,222' ; VALUE OBOOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.47 - 45.87 = '$1 - $46' 45.87 < - 126.91 = '$47 - $127' 126.91 < - 414.36 = '$128 - $414' 414.36 < - 16100.22 = '$415 - $16,100' ; VALUE OBOOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2 - 33.18 = '$2 - $33' 33.18 < - 81.26 = '$34 - $81' 81.26 < - 229.12 = '$82 - $229' 229.12 < - 3809.9 = '$230 - $3,810' ; VALUE OBOPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.13 - 13.59 = '$1 - $14' 13.59 < - 44.49 = '$15 - $44' 44.49 < - 181.94 = '$45 - $182' 181.94 < - 77402.26 = '$183 - $77,402' ; VALUE OBOSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.2 - 5.26 = '$1 - $5' 5.26 < - 17.27 = '$6 - $17' 17.27 < - 67.04 = '$18 - $67' 67.04 < - 44336.06 = '$68 - $44,336' ; VALUE OBOTRI 0 = '0' ; VALUE OBOVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.11 - 2.01 = '$1 - $2' 2.01 < - 6.15 = '$3 - $6' 6.15 < - 18.8 = '$7 - $19' 18.8 < - 922.45 = '$20 - $922' ; VALUE OBOWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.18 - 55.31 = '$1 - $55' 55.31 < - 157.775 = '$56 - $158' 157.775 < - 601.51 = '$159 - $602' 601.51 < - 14924.15 = '$603 - $14,924' ; VALUE OTHEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.82 - 145.39 = '$1 - $145' 145.39 < - 299.86 = '$146 - $300' 299.86 < - 545.2 = '$301 - $545' 545.2 < - 71376.84 = '$546 - $71,377' ; VALUE OTHMCD 0 = '0' ; VALUE OTHMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 8.72 - 848.775 = '$8 - $849' 848.775 < - 1653.05 = '$850 - $1,653' 1653.05 < - 3947.25 = '$1,654 - $3,947' 3947.25 < - 70629.49 = '$3,948 - $70,629' ; VALUE OTHOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.33 - 114.1 = '$7 - $114' 114.1 < - 253.56 = '$115 - $254' 253.56 < - 436.08 = '$255 - $436' 436.08 < - 8550.5 = '$437 - $8,551' ; VALUE OTHOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.15 - 44.48 = '$2 - $44' 44.48 < - 81 = '$45 - $81' 81 < - 207.59 = '$82 - $208' 207.59 < - 2231.06 = '$209 - $2,231' ; VALUE OTHPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.97 - 70.52 = '$1 - $71' 70.52 < - 139.24 = '$72 - $139' 139.24 < - 250.67 = '$140 - $251' 250.67 < - 18048.46 = '$252 - $18,048' ; VALUE OTHSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.82 - 109.04 = '$1 - $109' 109.04 < - 254.64 = '$110 - $255' 254.64 < - 471.56 = '$256 - $472' 471.56 < - 51350.4 = '$473 - $51,350' ; VALUE OTHTRI 0 = '0' ; VALUE OTHVA 0 = '0' ; VALUE OTHWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 165.34 - 1083.25 = '$165 - $1,083' 1083.25 < - 2145.465 = '$1,084 - $2,145' 2145.465 < - 4380.78 = '$2,146 - $4,381' 4380.78 < - 19896.72 = '$4,382 - $19,897' ; VALUE PHYEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.65 - 205.73 = '$1 - $206' 205.73 < - 536.26 = '$207 - $536' 536.26 < - 1604.98 = '$537 - $1,605' 1604.98 < - 155467.86 = '$1,606 - $155,468' ; VALUE PHYMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.59 - 112.12 = '$1 - $112' 112.12 < - 273.24 = '$113 - $273' 273.24 < - 753 = '$274 - $753' 753 < - 75953.14 = '$754 - $75,953' ; VALUE PHYMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.74 - 267.69 = '$1 - $268' 267.69 < - 794.02 = '$269 - $794' 794.02 < - 2256.71 = '$795 - $2,257' 2256.71 < - 106022.23 = '$2,258 - $106,022' ; VALUE PHYOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.5 - 66.12 = '$1 - $66' 66.12 < - 143.49 = '$67 - $143' 143.49 < - 365.16 = '$144 - $365' 365.16 < - 120795.92 = '$366 - $120,796' ; VALUE PHYOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1 - 47.93 = '$1 - $48' 47.93 < - 105.83 = '$49 - $106' 105.83 < - 304.99 = '$107 - $305' 304.99 < - 38913.12 = '$306 - $38,913' ; VALUE PHYPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.29 - 178.05 = '$2 - $178' 178.05 < - 436.81 = '$179 - $437' 436.81 < - 1213.1 = '$438 - $1,213' 1213.1 < - 130857.7 = '$1,214 - $130,858' ; VALUE PHYSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.6 - 31.95 = '$1 - $32' 31.95 < - 79.725 = '$33 - $80' 79.725 < - 204.46 = '$81 - $204' 204.46 < - 44757.74 = '$205 - $44,758' ; VALUE PHYTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 8.16 - 188.39 = '$8 - $188' 188.39 < - 556.7 = '$189 - $557' 556.7 < - 1422.91 = '$558 - $1,423' 1422.91 < - 137089.18 = '$1,424 - $137,089' ; VALUE PHYVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.45 - 23.84 = '$1 - $24' 23.84 < - 78.74 = '$25 - $79' 78.74 < - 261.88 = '$80 - $262' 261.88 < - 9034.2 = '$263 - $9,034' ; VALUE PHYWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.38 - 276.45 = '$6 - $276' 276.45 < - 701.38 = '$277 - $701' 701.38 < - 2231.66 = '$702 - $2,232' 2231.66 < - 72659.7 = '$2,233 - $72,660' ; 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.48 - 76.26 = '$1 - $76' 76.26 < - 318.74 = '$77 - $319' 318.74 < - 1263.74 = '$320 - $1,264' 1263.74 < - 334895.2 = '$1,265 - $334,895' ; VALUE RXMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.48 - 48.81 = '$1 - $49' 48.81 < - 156.965 = '$50 - $157' 156.965 < - 666.025 = '$158 - $666' 666.025 < - 267114.23 = '$667 - $267,114' ; VALUE RXMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 9.05 - 948.63 = '$9 - $949' 948.63 < - 2859.585 = '$950 - $2,860' 2859.585 < - 7682.87 = '$2,861 - $7,683' 7682.87 < - 333636.11 = '$7,684 - $333,636' ; VALUE RXOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.02 - 46.84 = '$5 - $47' 46.84 < - 180.575 = '$48 - $181' 180.575 < - 406.98 = '$182 - $407' 406.98 < - 4712.59 = '$408 - $4,713' ; VALUE RXOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.63 - 50.6 = '$1 - $51' 50.6 < - 252.25 = '$52 - $252' 252.25 < - 961.85 = '$253 - $962' 961.85 < - 40012.14 = '$963 - $40,012' ; VALUE RXPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.04 - 82.62 = '$2 - $83' 82.62 < - 316.36 = '$84 - $316' 316.36 < - 1159.31 = '$317 - $1,159' 1159.31 < - 89843.84 = '$1,160 - $89,844' ; VALUE RXSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.76 - 21.36 = '$1 - $21' 21.36 < - 83.06 = '$22 - $83' 83.06 < - 295.06 = '$84 - $295' 295.06 < - 27898.18 = '$296 - $27,898' ; VALUE RXTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.55 - 31.59 = '$1 - $32' 31.59 < - 150.07 = '$33 - $150' 150.07 < - 631.6 = '$151 - $632' 631.6 < - 22714.46 = '$633 - $22,714' ; VALUE RXVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.73 - 53.42 = '$1 - $53' 53.42 < - 229.935 = '$54 - $230' 229.935 < - 652.41 = '$231 - $652' 652.41 < - 16714.04 = '$653 - $16,714' ; VALUE RXWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.02 - 87.98 = '$2 - $88' 87.98 < - 225.51 = '$89 - $226' 225.51 < - 734.64 = '$227 - $735' 734.64 < - 23047.53 = '$736 - $23,048' ; VALUE SEX 1 = '1 Male' 2 = '2 Female' ; VALUE TOTEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.79 - 464.92 = '$1 - $465' 464.92 < - 1478.78 = '$466 - $1,479' 1478.78 < - 4976.82 = '$1,480 - $4,977' 4976.82 < - 1116714.93 = '$4,978 - $1,116,715' ; VALUE TOTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.94 - 227.58 = '$1 - $228' 227.58 < - 683.085 = '$229 - $683' 683.085 < - 2748 = '$684 - $2,748' 2748 < - 768526.27 = '$2,749 - $768,526' ; VALUE TOTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.38 - 485.97 = '$1 - $486' 485.97 < - 1976.59 = '$487 - $1,977' 1976.59 < - 8407.02 = '$1,978 - $8,407' 8407.02 < - 334892.17 = '$8,408 - $334,892' ; VALUE TOTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.47 - 84.15 = '$1 - $84' 84.15 < - 202.76 = '$85 - $203' 202.76 < - 540.97 = '$204 - $541' 540.97 < - 120795.92 = '$542 - $120,796' ; VALUE TOTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1 - 65.91 = '$1 - $66' 65.91 < - 206.1 = '$67 - $206' 206.1 < - 787.96 = '$207 - $788' 787.96 < - 61964.94 = '$789 - $61,965' ; VALUE TOTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.51 - 338.86 = '$1 - $339' 338.86 < - 1012.29 = '$340 - $1,012' 1012.29 < - 3131.94 = '$1,013 - $3,132' 3131.94 < - 1110485.11 = '$3,133 - $1,110,485' ; VALUE TOTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.76 - 84.07 = '$1 - $84' 84.07 < - 315.395 = '$85 - $315' 315.395 < - 905.43 = '$316 - $905' 905.43 < - 150036.6 = '$906 - $150,037' ; VALUE TOTTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.95 - 222.09 = '$1 - $222' 222.09 < - 748.81 = '$223 - $749' 748.81 < - 2178.85 = '$750 - $2,179' 2178.85 < - 187645.2 = '$2,180 - $187,645' ; VALUE TOTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.08 - 31.015 = '$1 - $31' 31.015 < - 174.755 = '$32 - $175' 174.755 < - 792.73 = '$176 - $793' 792.73 < - 307414.26 = '$794 - $307,414' ; VALUE TOTWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.36 - 266.67 = '$2 - $267' 266.67 < - 866.31 = '$268 - $866' 866.31 < - 2838.3 = '$867 - $2,838' 2838.3 < - 478191.9 = '$2,839 - $478,192' ; VALUE YESNO 0 = '0 No' 1 = '1 Yes' ;