SAS User File for PROJYR15 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 (PROJYR15.SSP) or the ASCII data file (PROJYR15.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\PROJYR15.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.PROJYR15; TITLE "List of Variables in MEPS PROJYR15 SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.PROJYR15 (OBS=20); TITLE "First 20 Observations in MEPS PROJYR15 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) PROJYR15 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 PROJYR15.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file PROJYR15.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 PROJYR15.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 PROJYR15.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\PROJYR15.DAT'; DATA PUFLIB.PROJYR15; INFILE IN1 LRECL=669; 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 (PROJYR15). In the example, after the successful completion of the DATA step, a PC file named PROJYR15.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 (669 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 PROJYR15.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., 669 for PROJYR15.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (671 for PROJYR15.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 (669 for PROJYR15.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 (PROJYR15.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.PROJYR15; 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 PROJYR15.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=669; 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 TOTEXP15 10.2 @29 TOTSLF15 9.2 @38 TOTPHI15 10.2 @48 TOTMCR15 9.2 @57 TOTMCD15 9.2 @66 TOTTRI15 9.2 @75 TOTVA15 9.2 @84 TOTWC15 9.2 @93 TOTOTP15 8.2 @101 TOTOSR15 9.2 @110 HOSEXP15 10.2 @120 HOSSLF15 9.2 @129 HOSPHI15 10.2 @139 HOSMCR15 9.2 @148 HOSMCD15 9.2 @157 HOSTRI15 9.2 @166 HOSVA15 9.2 @175 HOSWC15 9.2 @184 HOSOTP15 8.2 @192 HOSOSR15 8.2 @200 PHYEXP15 9.2 @209 PHYSLF15 8.2 @217 PHYPHI15 9.2 @226 PHYMCR15 9.2 @235 PHYMCD15 8.2 @243 PHYTRI15 9.2 @252 PHYVA15 7.2 @259 PHYWC15 8.2 @267 PHYOTP15 8.2 @275 PHYOSR15 9.2 @284 DVTEXP15 8.2 @292 DVTSLF15 8.2 @300 DVTPHI15 8.2 @308 DVTMCR15 7.2 @315 DVTMCD15 8.2 @323 DVTTRI15 4.2 @327 DVTVA15 6.2 @333 DVTWC15 4.2 @337 DVTOTP15 7.2 @344 DVTOSR15 8.2 @352 OBOEXP15 9.2 @361 OBOSLF15 8.2 @369 OBOPHI15 8.2 @377 OBOMCR15 8.2 @385 OBOMCD15 9.2 @394 OBOTRI15 4.2 @398 OBOVA15 6.2 @404 OBOWC15 8.2 @412 OBOOTP15 7.2 @419 OBOOSR15 8.2 @427 HHCEXP15 9.2 @436 HHCSLF15 8.2 @444 HHCPHI15 9.2 @453 HHCMCR15 9.2 @462 HHCMCD15 9.2 @471 HHCTRI15 7.2 @478 HHCVA15 8.2 @486 HHCWC15 8.2 @494 HHCOTP15 8.2 @502 HHCOSR15 7.2 @509 RXEXP15 9.2 @518 RXSLF15 8.2 @526 RXPHI15 9.2 @535 RXMCR15 9.2 @544 RXMCD15 9.2 @553 RXTRI15 8.2 @561 RXVA15 8.2 @569 RXWC15 8.2 @577 RXOTP15 8.2 @585 RXOSR15 7.2 @592 OTHEXP15 8.2 @600 OTHSLF15 8.2 @608 OTHPHI15 8.2 @616 OTHMCR15 8.2 @624 OTHMCD15 4.2 @628 OTHTRI15 4.2 @632 OTHVA15 4.2 @636 OTHWC15 8.2 @644 OTHOTP15 7.2 @651 OTHOSR15 7.2 @658 WTADJ15 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. TOTEXP15 TOTEXP. TOTSLF15 TOTSLF. TOTPHI15 TOTPHI. TOTMCR15 TOTMCR. TOTMCD15 TOTMCD. TOTTRI15 TOTTRI. TOTVA15 TOTVA. TOTWC15 TOTWC. TOTOTP15 TOTOTP. TOTOSR15 TOTOSR. HOSEXP15 HOSEXP. HOSSLF15 HOSSLF. HOSPHI15 HOSPHI. HOSMCR15 HOSMCR. HOSMCD15 HOSMCD. HOSTRI15 HOSTRI. HOSVA15 HOSVA. HOSWC15 HOSWC. HOSOTP15 HOSOTP. HOSOSR15 HOSOSR. PHYEXP15 PHYEXP. PHYSLF15 PHYSLF. PHYPHI15 PHYPHI. PHYMCR15 PHYMCR. PHYMCD15 PHYMCD. PHYTRI15 PHYTRI. PHYVA15 PHYVA. PHYWC15 PHYWC. PHYOTP15 PHYOTP. PHYOSR15 PHYOSR. DVTEXP15 DVTEXP. DVTSLF15 DVTSLF. DVTPHI15 DVTPHI. DVTMCR15 DVTMCR. DVTMCD15 DVTMCD. DVTTRI15 DVTTRI. DVTVA15 DVTVA. DVTWC15 DVTWC. DVTOTP15 DVTOTP. DVTOSR15 DVTOSR. OBOEXP15 OBOEXP. OBOSLF15 OBOSLF. OBOPHI15 OBOPHI. OBOMCR15 OBOMCR. OBOMCD15 OBOMCD. OBOTRI15 OBOTRI. OBOVA15 OBOVA. OBOWC15 OBOWC. OBOOTP15 OBOOTP. OBOOSR15 OBOOSR. HHCEXP15 HHCEXP. HHCSLF15 HHCSLF. HHCPHI15 HHCPHI. HHCMCR15 HHCMCR. HHCMCD15 HHCMCD. HHCTRI15 HHCTRI. HHCVA15 HHCVA. HHCWC15 HHCWC. HHCOTP15 HHCOTP. HHCOSR15 HHCOSR. RXEXP15 RXEXP. RXSLF15 RXSLF. RXPHI15 RXPHI. RXMCR15 RXMCR. RXMCD15 RXMCD. RXTRI15 RXTRI. RXVA15 RXVA. RXWC15 RXWC. RXOTP15 RXOTP. RXOSR15 RXOSR. OTHEXP15 OTHEXP. OTHSLF15 OTHSLF. OTHPHI15 OTHPHI. OTHMCR15 OTHMCR. OTHMCD15 OTHMCD. OTHTRI15 OTHTRI. OTHVA15 OTHVA. OTHWC15 OTHWC. OTHOTP15 OTHOTP. OTHOSR15 OTHOSR. WTADJ15 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' TOTEXP15='TOTAL, PAID BY TOTAL, 2015' TOTSLF15='TOTAL, PAID BY OUT OF POCKET, 2015' TOTPHI15='TOTAL, PAID BY PRIV INSU, 2015' TOTMCR15='TOTAL, PAID BY MEDICARE, 2015' TOTMCD15='TOTAL, PAID BY MEDICAID, 2015' TOTTRI15='TOTAL, PAID BY TRICARE, 2015' TOTVA15 ='TOTAL, PAID BY VA, 2015' TOTWC15 ='TOTAL, PAID BY WORKERS COMP, 2015' TOTOTP15='TOTAL, PAID BY OTHER PUBLIC, 2015' TOTOSR15='TOTAL, PAID BY OTHER, 2015' HOSEXP15='HOSPITAL, PAID BY TOTAL, 2015' HOSSLF15='HOSPITAL, PAID BY OUT OF POCKET, 2015' HOSPHI15='HOSPITAL, PAID BY PRIV INSU, 2015' HOSMCR15='HOSPITAL, PAID BY MEDICARE, 2015' HOSMCD15='HOSPITAL, PAID BY MEDICAID, 2015' HOSTRI15='HOSPITAL, PAID BY TRICARE, 2015' HOSVA15 ='HOSPITAL, PAID BY VA, 2015' HOSWC15 ='HOSPITAL, PAID BY WORKERS COMP, 2015' HOSOTP15='HOSPITAL, PAID BY OTHER PUBLIC, 2015' HOSOSR15='HOSPITAL, PAID BY OTHER, 2015' PHYEXP15='PHYSICIAN, PAID BY TOTAL, 2015' PHYSLF15='PHYSICIAN, PAID BY OUT OF POCKET, 2015' PHYPHI15='PHYSICIAN, PAID BY PRIV INSU, 2015' PHYMCR15='PHYSICIAN, PAID BY MEDICARE, 2015' PHYMCD15='PHYSICIAN, PAID BY MEDICAID, 2015' PHYTRI15='PHYSICIAN, PAID BY TRICARE, 2015' PHYVA15 ='PHYSICIAN, PAID BY VA, 2015' PHYWC15 ='PHYSICIAN, PAID BY WORKERS COMP, 2015' PHYOTP15='PHYSICIAN, PAID BY OTHER PUBLIC, 2015' PHYOSR15='PHYSICIAN, PAID BY OTHER, 2015' DVTEXP15='DENTAL, PAID BY TOTAL, 2015' DVTSLF15='DENTAL, PAID BY OUT OF POCKET, 2015' DVTPHI15='DENTAL, PAID BY PRIV INSU, 2015' DVTMCR15='DENTAL, PAID BY MEDICARE, 2015' DVTMCD15='DENTAL, PAID BY MEDICAID, 2015' DVTTRI15='DENTAL, PAID BY TRICARE, 2015' DVTVA15 ='DENTAL, PAID BY VA, 2015' DVTWC15 ='DENTAL, PAID BY WORKERS COMP, 2015' DVTOTP15='DENTAL, PAID BY OTHER PUBLIC, 2015' DVTOSR15='DENTAL, PAID BY OTHER, 2015' OBOEXP15='OTHER PROVIDER, PAID BY TOTAL, 2015' OBOSLF15='OTHER PROVIDER, BY OUT OF POCKET, 2015' OBOPHI15='OTHER PROVIDER, PAID BY PRIV INSU, 2015' OBOMCR15='OTHER PROVIDER, PAID BY MEDICARE, 2015' OBOMCD15='OTHER PROVIDER, PAID BY MEDICAID, 2015' OBOTRI15='OTHER PROVIDER, PAID BY TRICARE, 2015' OBOVA15 ='OTHER PROVIDER, PAID BY VA, 2015' OBOWC15 ='OTHER PROVIDER, BY WORKERS COMP, 2015' OBOOTP15='OTHER PROVIDER, BY OTHER PUBLIC, 2015' OBOOSR15='OTHER PROVIDER, PAID BY OTHER, 2015' HHCEXP15='HOME HEALTH, PAID BY TOTAL, 2015' HHCSLF15='HOME HEALTH, PAID BY OUT OF POCKET, 2015' HHCPHI15='HOME HEALTH, PAID BY PRIV INSU, 2015' HHCMCR15='HOME HEALTH, PAID BY MEDICARE, 2015' HHCMCD15='HOME HEALTH, PAID BY MEDICAID, 2015' HHCTRI15='HOME HEALTH, PAID BY TRICARE, 2015' HHCVA15 ='HOME HEALTH, PAID BY VA, 2015' HHCWC15 ='HOME HEALTH, PAID BY WORKERS COMP, 2015' HHCOTP15='HOME HEALTH, PAID BY OTHER PUBLIC, 2015' HHCOSR15='HOME HEALTH, PAID BY OTHER, 2015' RXEXP15 ='RX, PAID BY TOTAL, 2015' RXSLF15 ='RX, PAID BY OUT OF POCKET, 2015' RXPHI15 ='RX, PAID BY PRIV INSU, 2015' RXMCR15 ='RX, PAID BY MEDICARE, 2015' RXMCD15 ='RX, PAID BY MEDICAID, 2015' RXTRI15 ='RX, PAID BY TRICARE, 2015' RXVA15 ='RX, PAID BY VA, 2015' RXWC15 ='RX, PAID BY WORKERS COMP, 2015' RXOTP15 ='RX, PAID BY OTHER PUBLIC, 2015' RXOSR15 ='RX, PAID BY OTHER, 2015' OTHEXP15='OTHER MEDICAL, PAID BY TOTAL, 2015' OTHSLF15='OTHER MEDICAL, BY OUT OF POCKET, 2015' OTHPHI15='OTHER MEDICAL, PAID BY PRIV INSU, 2015' OTHMCR15='OTHER MEDICAL, PAID BY MEDICARE, 2015' OTHMCD15='OTHER MEDICAL, PAID BY MEDICAID, 2015' OTHTRI15='OTHER MEDICAL, PAID BY TRICARE, 2015' OTHVA15 ='OTHER MEDICAL, PAID BY VA, 2015' OTHWC15 ='OTHER MEDICAL, BY WORKERS COMP, 2015' OTHOTP15='OTHER MEDICAL, PAID BY OTHR PUBLIC, 2015' OTHOSR15='OTHER MEDICAL, PAID BY OTHER, 2015' WTADJ15 ='GROWTH/FERTILITY/MORTALITY ADJ WGT,2015' ; * 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.12 - 196.72 = '$1 - $197' 196.72 < - 385.46 = '$198 - $385' 385.46 < - 894.18 = '$386 - $894' 894.18 < - 35920.14 = '$895 - $35,920' ; VALUE DVTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.27 - 144.06 = '$3 - $144' 144.06 < - 254.87 = '$145 - $255' 254.87 < - 530.13 = '$256 - $530' 530.13 < - 22106.88 = '$531 - $22,107' ; VALUE DVTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.42 - 36.23 = '$3 - $36' 36.23 < - 74.6 = '$37 - $75' 74.6 < - 191.795 = '$76 - $192' 191.795 < - 3887.05 = '$193 - $3,887' ; VALUE DVTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.67 - 135.1 = '$1 - $135' 135.1 < - 273.66 = '$136 - $274' 273.66 < - 502.29 = '$275 - $502' 502.29 < - 16587.71 = '$503 - $16,588' ; VALUE DVTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 12.97 - 74.56 = '$12 - $75' 74.56 < - 148.575 = '$76 - $149' 148.575 < - 415.28 = '$150 - $415' 415.28 < - 5193.61 = '$416 - $5,194' ; VALUE DVTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.26 - 211.43 = '$2 - $211' 211.43 < - 375.73 = '$212 - $376' 375.73 < - 774.67 = '$377 - $775' 774.67 < - 32325.55 = '$776 - $32,326' ; VALUE DVTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.72 - 72.37 = '$1 - $72' 72.37 < - 193.14 = '$73 - $193' 193.14 < - 532.93 = '$194 - $533' 532.93 < - 29904.86 = '$534 - $29,905' ; VALUE DVTTRI 0 = '0' ; VALUE DVTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.04 - 1.92 = '$1 - $2' 1.92 < - 4.42 = '$3 - $4' 4.42 < - 15.78 = '$5 - $16' 15.78 < - 174.66 = '$17 - $175' ; VALUE DVTWC 0 = '0' ; VALUE GTZERO 0 = '0' 0 < - HIGH = '>0' ; VALUE HHCEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 8.27 - 1424.58 = '$8 - $1,425' 1424.58 < - 5883.33 = '$1,426 - $5,883' 5883.33 < - 16771.11 = '$5,884 - $16,771' 16771.11 < - 416536.35 = '$16,772 - $416,536' ; VALUE HHCMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.59 - 1472.05 = '$7 - $1,472' 1472.05 < - 6747.83 = '$1,473 - $6,748' 6747.83 < - 22154.16 = '$6,749 - $22,154' 22154.16 < - 346893.86 = '$22,155 - $346,894' ; VALUE HHCMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 22.83 - 2672.49 = '$22 - $2,672' 2672.49 < - 6041.965 = '$2,673 - $6,042' 6041.965 < - 13543.71 = '$6,043 - $13,544' 13543.71 < - 108497.14 = '$13,545 - $108,497' ; VALUE HHCOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 77.01 - 190.03 = '$77 - $190' 190.03 < - 435.92 = '$191 - $436' 435.92 < - 1236.56 = '$437 - $1,237' 1236.56 < - 3712.58 = '$1,238 - $3,713' ; VALUE HHCOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 19.63 - 417.29 = '$19 - $417' 417.29 < - 1043.51 = '$418 - $1,044' 1043.51 < - 2716.29 = '$1,045 - $2,716' 2716.29 < - 20490.19 = '$2,717 - $20,490' ; VALUE HHCPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 40.87 - 856.81 = '$40 - $857' 856.81 < - 2751.58 = '$858 - $2,752' 2751.58 < - 8422.375 = '$2,753 - $8,422' 8422.375 < - 139193.14 = '$8,423 - $139,193' ; VALUE HHCSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 8.27 - 144.76 = '$8 - $145' 144.76 < - 503.09 = '$146 - $503' 503.09 < - 1689.58 = '$504 - $1,690' 1689.58 < - 98768.43 = '$1,691 - $98,768' ; VALUE HHCTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.17 - 59.495 = '$7 - $59' 59.495 < - 193.69 = '$60 - $194' 193.69 < - 516.585 = '$195 - $517' 516.585 < - 2005.43 = '$518 - $2,005' ; VALUE HHCVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 208.25 - 1985.81 = '$208 - $1,986' 1985.81 < - 5206.2 = '$1,987 - $5,206' 5206.2 < - 11860.83 = '$5,207 - $11,861' 11860.83 < - 54144.49 = '$11,862 - $54,144' ; VALUE HHCWC 0 = '0' 20000 - 40000 = '$20,000 - $40,000' ; VALUE HOSEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.85 - 354.49 = '$3 - $354' 354.49 < - 1348.875 = '$355 - $1,349' 1348.875 < - 5928.25 = '$1,350 - $5,928' 5928.25 < - 1141127.46 = '$5,929 - $1,141,127' ; VALUE HOSMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.1 - 234.465 = '$2 - $234' 234.465 < - 874.56 = '$235 - $875' 874.56 < - 4286.595 = '$876 - $4,287' 4286.595 < - 830273.36 = '$4,288 - $830,273' ; VALUE HOSMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.49 - 271.44 = '$1 - $271' 271.44 < - 1405.55 = '$272 - $1,406' 1405.55 < - 8505.3 = '$1,407 - $8,505' 8505.3 < - 270147.95 = '$8,506 - $270,148' ; VALUE HOSOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.19 - 136.82 = '$3 - $137' 136.82 < - 444.715 = '$138 - $445' 444.715 < - 1669.47 = '$446 - $1,669' 1669.47 < - 89409.3 = '$1,670 - $89,409' ; VALUE HOSOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.23 - 98.58 = '$7 - $99' 98.58 < - 305.59 = '$100 - $306' 305.59 < - 1261.72 = '$307 - $1,262' 1261.72 < - 63561.29 = '$1,263 - $63,561' ; VALUE HOSPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.93 - 325.69 = '$1 - $326' 325.69 < - 1187.79 = '$327 - $1,188' 1187.79 < - 4006.16 = '$1,189 - $4,006' 4006.16 < - 1141127.46 = '$4,007 - $1,141,127' ; VALUE HOSSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.26 - 58.75 = '$2 - $59' 58.75 < - 176.24 = '$60 - $176' 176.24 < - 587.48 = '$177 - $587' 587.48 < - 147008.55 = '$588 - $147,009' ; VALUE HOSTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.05 - 81.88 = '$1 - $82' 81.88 < - 298.29 = '$83 - $298' 298.29 < - 981.325 = '$299 - $981' 981.325 < - 188957.07 = '$982 - $188,957' ; VALUE HOSVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.6 - 217.53 = '$1 - $218' 217.53 < - 866.375 = '$219 - $866' 866.375 < - 3570.02 = '$867 - $3,570' 3570.02 < - 332002.23 = '$3,571 - $332,002' ; VALUE HOSWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.59 - 100.46 = '$2 - $100' 100.46 < - 281.71 = '$101 - $282' 281.71 < - 920.34 = '$283 - $920' 920.34 < - 428839.81 = '$921 - $428,840' ; VALUE $ID 'N0000115' - 'N7338015' = 'N0000115 - N7338015' ; 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.19 - 24.06 = '$1 - $24' 24.06 < - 87.51 = '$25 - $88' 87.51 < - 343.12 = '$89 - $343' 343.12 < - 103813.42 = '$344 - $103,813' ; VALUE OBOMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.18 - 14.83 = '$1 - $15' 14.83 < - 42.98 = '$16 - $43' 42.98 < - 169.09 = '$44 - $169' 169.09 < - 103657.45 = '$170 - $103,657' ; VALUE OBOMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.16 - 33.84 = '$1 - $34' 33.84 < - 127.69 = '$35 - $128' 127.69 < - 393.69 = '$129 - $394' 393.69 < - 91904.99 = '$395 - $91,905' ; VALUE OBOOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.6 - 49.78 = '$1 - $50' 49.78 < - 137.72 = '$51 - $138' 137.72 < - 449.65 = '$139 - $450' 449.65 < - 17471.79 = '$451 - $17,472' ; VALUE OBOOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.02 - 33.46 = '$2 - $33' 33.46 < - 81.95 = '$34 - $82' 81.95 < - 231.07 = '$83 - $231' 231.07 < - 3842.35 = '$232 - $3,842' ; VALUE OBOPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.14 - 14.33 = '$1 - $14' 14.33 < - 46.91 = '$15 - $47' 46.91 < - 191.83 = '$48 - $192' 191.83 < - 81610.33 = '$193 - $81,610' ; VALUE OBOSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.23 - 5.84 = '$1 - $6' 5.84 < - 19.19 = '$7 - $19' 19.19 < - 74.5 = '$20 - $75' 74.5 < - 49267.97 = '$76 - $49,268' ; VALUE OBOTRI 0 = '0' ; VALUE OBOVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.12 - 2.04 = '$1 - $2' 2.04 < - 6.24 = '$3 - $6' 6.24 < - 19.07 = '$7 - $19' 19.07 < - 935.61 = '$20 - $936' ; VALUE OBOWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.24 - 58.09 = '$1 - $58' 58.09 < - 165.715 = '$59 - $166' 165.715 < - 631.78 = '$167 - $632' 631.78 < - 15675.1 = '$633 - $15,675' ; VALUE OTHEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.86 - 149.08 = '$1 - $149' 149.08 < - 307.53 = '$150 - $308' 307.53 < - 559.04 = '$309 - $559' 559.04 < - 80299.02 = '$560 - $80,299' ; VALUE OTHMCD 0 = '0' ; VALUE OTHMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 9.82 - 955.72 = '$9 - $956' 955.72 < - 1861.33 = '$957 - $1,861' 1861.33 < - 4444.61 = '$1,862 - $4,445' 4444.61 < - 79528.86 = '$4,446 - $79,529' ; VALUE OTHOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.83 - 121.98 = '$7 - $122' 121.98 < - 271.06 = '$123 - $271' 271.06 < - 466.17 = '$272 - $466' 466.17 < - 9140.65 = '$467 - $9,141' ; VALUE OTHOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.03 - 42.03 = '$2 - $42' 42.03 < - 76.535 = '$43 - $77' 76.535 < - 196.14 = '$78 - $196' 196.14 < - 2108 = '$197 - $2,108' ; VALUE OTHPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1 - 72.91 = '$1 - $73' 72.91 < - 143.965 = '$74 - $144' 143.965 < - 259.17 = '$145 - $259' 259.17 < - 18660.23 = '$260 - $18,660' ; VALUE OTHSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.86 - 111.81 = '$1 - $112' 111.81 < - 261.11 = '$113 - $261' 261.11 < - 483.53 = '$262 - $484' 483.53 < - 52654.38 = '$485 - $52,654' ; VALUE OTHTRI 0 = '0' ; VALUE OTHVA 0 = '0' ; VALUE OTHWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 165.24 - 1082.61 = '$165 - $1,083' 1082.61 < - 2144.195 = '$1,084 - $2,144' 2144.195 < - 4378.19 = '$2,145 - $4,378' 4378.19 < - 19884.94 = '$4,379 - $19,885' ; VALUE PHYEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.83 - 224.12 = '$1 - $224' 224.12 < - 584.21 = '$225 - $584' 584.21 < - 1738.56 = '$585 - $1,739' 1738.56 < - 167508.84 = '$1,740 - $167,509' ; VALUE PHYMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.76 - 124.55 = '$1 - $125' 124.55 < - 303.54 = '$126 - $304' 303.54 < - 836.5 = '$305 - $837' 836.5 < - 84375.47 = '$838 - $84,375' ; VALUE PHYMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.82 - 279.2 = '$1 - $279' 279.2 < - 828.17 = '$280 - $828' 828.17 < - 2353.78 = '$829 - $2,354' 2353.78 < - 110582.77 = '$2,355 - $110,583' ; VALUE PHYOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.61 - 71.03 = '$1 - $71' 71.03 < - 154.14 = '$72 - $154' 154.14 < - 392.26 = '$155 - $392' 392.26 < - 129762.93 = '$393 - $129,763' ; VALUE PHYOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.99 - 47.73 = '$1 - $48' 47.73 < - 105.39 = '$49 - $105' 105.39 < - 303.71 = '$106 - $304' 303.71 < - 38750.1 = '$305 - $38,750' ; VALUE PHYPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.5 - 194.48 = '$2 - $194' 194.48 < - 477.13 = '$195 - $477' 477.13 < - 1325.06 = '$478 - $1,325' 1325.06 < - 142935.43 = '$1,326 - $142,935' ; VALUE PHYSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.74 - 34.8 = '$1 - $35' 34.8 < - 86.835 = '$36 - $87' 86.835 < - 222.7 = '$88 - $223' 222.7 < - 48750.72 = '$224 - $48,751' ; VALUE PHYTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 8.75 - 202.17 = '$8 - $202' 202.17 < - 597.41 = '$203 - $597' 597.41 < - 1526.975 = '$598 - $1,527' 1526.975 < - 147115.07 = '$1,528 - $147,115' ; VALUE PHYVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.49 - 25.86 = '$1 - $26' 25.86 < - 85.41 = '$27 - $85' 85.41 < - 284.04 = '$86 - $284' 284.04 < - 9798.67 = '$285 - $9,799' ; VALUE PHYWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.03 - 304.89 = '$7 - $305' 304.89 < - 773.54 = '$306 - $774' 773.54 < - 2461.25 = '$775 - $2,461' 2461.25 < - 80134.89 = '$2,462 - $80,135' ; 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.55 - 86.99 = '$1 - $87' 86.99 < - 364.1 = '$88 - $364' 364.1 < - 1444.5 = '$365 - $1,445' 1444.5 < - 388456.29 = '$1,446 - $388,456' ; VALUE RXMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.55 - 55.845 = '$1 - $56' 55.845 < - 179.575 = '$57 - $180' 179.575 < - 761.98 = '$181 - $762' 761.98 < - 305596.47 = '$763 - $305,596' ; VALUE RXMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 10.5 - 1100.45 = '$10 - $1,100' 1100.45 < - 3317.25 = '$1,101 - $3,317' 3317.25 < - 8912.49 = '$3,318 - $8,912' 8912.49 < - 387033.22 = '$8,913 - $387,033' ; VALUE RXOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.71 - 53.33 = '$5 - $53' 53.33 < - 205.59 = '$54 - $206' 205.59 < - 463.34 = '$207 - $463' 463.34 < - 5365.24 = '$464 - $5,365' ; VALUE RXOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.73 - 53.79 = '$1 - $54' 53.79 < - 268.145 = '$55 - $268' 268.145 < - 1022.46 = '$269 - $1,022' 1022.46 < - 42533.77 = '$1,023 - $42,534' ; VALUE RXPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.35 - 95.23 = '$2 - $95' 95.23 < - 364.67 = '$96 - $365' 364.67 < - 1336.34 = '$366 - $1,336' 1336.34 < - 103563.16 = '$1,337 - $103,563' ; VALUE RXSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.86 - 24.14 = '$1 - $24' 24.14 < - 93.87 = '$25 - $94' 93.87 < - 333.46 = '$95 - $333' 333.46 < - 31528.93 = '$334 - $31,529' ; VALUE RXTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.62 - 35.37 = '$1 - $35' 35.37 < - 168.02 = '$36 - $168' 168.02 < - 707.17 = '$169 - $707' 707.17 < - 25432 = '$708 - $25,432' ; VALUE RXVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.81 - 59.12 = '$1 - $59' 59.12 < - 254.49 = '$60 - $254' 254.49 < - 722.07 = '$255 - $722' 722.07 < - 18498.81 = '$723 - $18,499' ; VALUE RXWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.3 - 100.24 = '$2 - $100' 100.24 < - 256.95 = '$101 - $257' 256.95 < - 837.04 = '$258 - $837' 837.04 < - 26260.32 = '$838 - $26,260' ; VALUE SEX 1 = '1 Male' 2 = '2 Female' ; VALUE TOTEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.89 - 512.43 = '$1 - $512' 512.43 < - 1629.82 = '$513 - $1,630' 1629.82 < - 5496.28 = '$1,631 - $5,496' 5496.28 < - 1235495.91 = '$5,497 - $1,235,496' ; VALUE TOTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.07 - 256.94 = '$1 - $257' 256.94 < - 773.375 = '$258 - $773' 773.375 < - 3102.9 = '$774 - $3,103' 3102.9 < - 843558.69 = '$3,104 - $843,559' ; VALUE TOTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.49 - 511.55 = '$1 - $512' 511.55 < - 2110.045 = '$513 - $2,110' 2110.045 < - 9122.36 = '$2,111 - $9,122' 9122.36 < - 388346.74 = '$9,123 - $388,347' ; VALUE TOTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.6 - 90.47 = '$1 - $90' 90.47 < - 217.81 = '$91 - $218' 217.81 < - 583.05 = '$219 - $583' 583.05 < - 129762.93 = '$584 - $129,763' ; VALUE TOTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.99 - 66.11 = '$1 - $66' 66.11 < - 206.89 = '$67 - $207' 206.89 < - 807.88 = '$208 - $808' 807.88 < - 63561.29 = '$809 - $63,561' ; VALUE TOTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.59 - 372.9 = '$1 - $373' 372.9 < - 1115.95 = '$374 - $1,116' 1115.95 < - 3472.44 = '$1,117 - $3,472' 3472.44 < - 1228498.1 = '$3,473 - $1,228,498' ; VALUE TOTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.86 - 92.97 = '$1 - $93' 92.97 < - 344.775 = '$94 - $345' 344.775 < - 994.34 = '$346 - $994' 994.34 < - 164981.41 = '$995 - $164,981' ; VALUE TOTTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.05 - 239.03 = '$1 - $239' 239.03 < - 815.13 = '$240 - $815' 815.13 < - 2377.95 = '$816 - $2,378' 2377.95 < - 207753.73 = '$2,379 - $207,754' ; VALUE TOTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.08 - 33.035 = '$1 - $33' 33.035 < - 191.155 = '$34 - $191' 191.155 < - 873.595 = '$192 - $874' 873.595 < - 332278.84 = '$875 - $332,279' ; VALUE TOTWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.59 - 293.26 = '$2 - $293' 293.26 < - 953.275 = '$294 - $953' 953.275 < - 3108.25 = '$954 - $3,108' 3108.25 < - 526256.85 = '$3,109 - $526,257' ; VALUE YESNO 0 = '0 No' 1 = '1 Yes' ;