SAS User File for PROJYR11 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 (PROJYR11.SSP) or the ASCII data file (PROJYR11.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\PROJYR11.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.PROJYR11; TITLE "List of Variables in MEPS PROJYR11 SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.PROJYR11 (OBS=20); TITLE "First 20 Observations in MEPS PROJYR11 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) PROJYR11 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 PROJYR11.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file PROJYR11.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 PROJYR11.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 PROJYR11.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\PROJYR11.DAT'; DATA PUFLIB.PROJYR11; INFILE IN1 LRECL=663; 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 (PROJYR11). In the example, after the successful completion of the DATA step, a PC file named PROJYR11.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 (663 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 PROJYR11.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., 663 for PROJYR11.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (665 for PROJYR11.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 (663 for PROJYR11.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 (PROJYR11.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.PROJYR11; 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 PROJYR11.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=663; 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 TOTEXP11 10.2 @29 TOTSLF11 9.2 @38 TOTPHI11 10.2 @48 TOTMCR11 9.2 @57 TOTMCD11 9.2 @66 TOTTRI11 9.2 @75 TOTVA11 9.2 @84 TOTWC11 9.2 @93 TOTOTP11 8.2 @101 TOTOSR11 9.2 @110 HOSEXP11 9.2 @119 HOSSLF11 9.2 @128 HOSPHI11 9.2 @137 HOSMCR11 9.2 @146 HOSMCD11 9.2 @155 HOSTRI11 9.2 @164 HOSVA11 9.2 @173 HOSWC11 9.2 @182 HOSOTP11 8.2 @190 HOSOSR11 8.2 @198 PHYEXP11 9.2 @207 PHYSLF11 8.2 @215 PHYPHI11 9.2 @224 PHYMCR11 9.2 @233 PHYMCD11 8.2 @241 PHYTRI11 9.2 @250 PHYVA11 7.2 @257 PHYWC11 8.2 @265 PHYOTP11 8.2 @273 PHYOSR11 9.2 @282 DVTEXP11 8.2 @290 DVTSLF11 8.2 @298 DVTPHI11 8.2 @306 DVTMCR11 7.2 @313 DVTMCD11 8.2 @321 DVTTRI11 4.2 @325 DVTVA11 6.2 @331 DVTWC11 4.2 @335 DVTOTP11 7.2 @342 DVTOSR11 8.2 @350 OBOEXP11 8.2 @358 OBOSLF11 8.2 @366 OBOPHI11 8.2 @374 OBOMCR11 8.2 @382 OBOMCD11 8.2 @390 OBOTRI11 4.2 @394 OBOVA11 6.2 @400 OBOWC11 8.2 @408 OBOOTP11 7.2 @415 OBOOSR11 8.2 @423 HHCEXP11 9.2 @432 HHCSLF11 8.2 @440 HHCPHI11 9.2 @449 HHCMCR11 8.2 @457 HHCMCD11 9.2 @466 HHCTRI11 7.2 @473 HHCVA11 8.2 @481 HHCWC11 8.2 @489 HHCOTP11 8.2 @497 HHCOSR11 7.2 @504 RXEXP11 9.2 @513 RXSLF11 8.2 @521 RXPHI11 8.2 @529 RXMCR11 9.2 @538 RXMCD11 9.2 @547 RXTRI11 8.2 @555 RXVA11 8.2 @563 RXWC11 8.2 @571 RXOTP11 8.2 @579 RXOSR11 7.2 @586 OTHEXP11 8.2 @594 OTHSLF11 8.2 @602 OTHPHI11 8.2 @610 OTHMCR11 8.2 @618 OTHMCD11 4.2 @622 OTHTRI11 4.2 @626 OTHVA11 4.2 @630 OTHWC11 8.2 @638 OTHOTP11 7.2 @645 OTHOSR11 7.2 @652 WTADJ11 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. TOTEXP11 TOTEXP. TOTSLF11 TOTSLF. TOTPHI11 TOTPHI. TOTMCR11 TOTMCR. TOTMCD11 TOTMCD. TOTTRI11 TOTTRI. TOTVA11 TOTVA. TOTWC11 TOTWC. TOTOTP11 TOTOTP. TOTOSR11 TOTOSR. HOSEXP11 HOSEXP. HOSSLF11 HOSSLF. HOSPHI11 HOSPHI. HOSMCR11 HOSMCR. HOSMCD11 HOSMCD. HOSTRI11 HOSTRI. HOSVA11 HOSVA. HOSWC11 HOSWC. HOSOTP11 HOSOTP. HOSOSR11 HOSOSR. PHYEXP11 PHYEXP. PHYSLF11 PHYSLF. PHYPHI11 PHYPHI. PHYMCR11 PHYMCR. PHYMCD11 PHYMCD. PHYTRI11 PHYTRI. PHYVA11 PHYVA. PHYWC11 PHYWC. PHYOTP11 PHYOTP. PHYOSR11 PHYOSR. DVTEXP11 DVTEXP. DVTSLF11 DVTSLF. DVTPHI11 DVTPHI. DVTMCR11 DVTMCR. DVTMCD11 DVTMCD. DVTTRI11 DVTTRI. DVTVA11 DVTVA. DVTWC11 DVTWC. DVTOTP11 DVTOTP. DVTOSR11 DVTOSR. OBOEXP11 OBOEXP. OBOSLF11 OBOSLF. OBOPHI11 OBOPHI. OBOMCR11 OBOMCR. OBOMCD11 OBOMCD. OBOTRI11 OBOTRI. OBOVA11 OBOVA. OBOWC11 OBOWC. OBOOTP11 OBOOTP. OBOOSR11 OBOOSR. HHCEXP11 HHCEXP. HHCSLF11 HHCSLF. HHCPHI11 HHCPHI. HHCMCR11 HHCMCR. HHCMCD11 HHCMCD. HHCTRI11 HHCTRI. HHCVA11 HHCVA. HHCWC11 HHCWC. HHCOTP11 HHCOTP. HHCOSR11 HHCOSR. RXEXP11 RXEXP. RXSLF11 RXSLF. RXPHI11 RXPHI. RXMCR11 RXMCR. RXMCD11 RXMCD. RXTRI11 RXTRI. RXVA11 RXVA. RXWC11 RXWC. RXOTP11 RXOTP. RXOSR11 RXOSR. OTHEXP11 OTHEXP. OTHSLF11 OTHSLF. OTHPHI11 OTHPHI. OTHMCR11 OTHMCR. OTHMCD11 OTHMCD. OTHTRI11 OTHTRI. OTHVA11 OTHVA. OTHWC11 OTHWC. OTHOTP11 OTHOTP. OTHOSR11 OTHOSR. WTADJ11 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' TOTEXP11='TOTAL, PAID BY TOTAL, 2011' TOTSLF11='TOTAL, PAID BY OUT OF POCKET, 2011' TOTPHI11='TOTAL, PAID BY PRIV INSU, 2011' TOTMCR11='TOTAL, PAID BY MEDICARE, 2011' TOTMCD11='TOTAL, PAID BY MEDICAID, 2011' TOTTRI11='TOTAL, PAID BY TRICARE, 2011' TOTVA11 ='TOTAL, PAID BY VA, 2011' TOTWC11 ='TOTAL, PAID BY WORKERS COMP, 2011' TOTOTP11='TOTAL, PAID BY OTHER PUBLIC, 2011' TOTOSR11='TOTAL, PAID BY OTHER, 2011' HOSEXP11='HOSPITAL, PAID BY TOTAL, 2011' HOSSLF11='HOSPITAL, PAID BY OUT OF POCKET, 2011' HOSPHI11='HOSPITAL, PAID BY PRIV INSU, 2011' HOSMCR11='HOSPITAL, PAID BY MEDICARE, 2011' HOSMCD11='HOSPITAL, PAID BY MEDICAID, 2011' HOSTRI11='HOSPITAL, PAID BY TRICARE, 2011' HOSVA11 ='HOSPITAL, PAID BY VA, 2011' HOSWC11 ='HOSPITAL, PAID BY WORKERS COMP, 2011' HOSOTP11='HOSPITAL, PAID BY OTHER PUBLIC, 2011' HOSOSR11='HOSPITAL, PAID BY OTHER, 2011' PHYEXP11='PHYSICIAN, PAID BY TOTAL, 2011' PHYSLF11='PHYSICIAN, PAID BY OUT OF POCKET, 2011' PHYPHI11='PHYSICIAN, PAID BY PRIV INSU, 2011' PHYMCR11='PHYSICIAN, PAID BY MEDICARE, 2011' PHYMCD11='PHYSICIAN, PAID BY MEDICAID, 2011' PHYTRI11='PHYSICIAN, PAID BY TRICARE, 2011' PHYVA11 ='PHYSICIAN, PAID BY VA, 2011' PHYWC11 ='PHYSICIAN, PAID BY WORKERS COMP, 2011' PHYOTP11='PHYSICIAN, PAID BY OTHER PUBLIC, 2011' PHYOSR11='PHYSICIAN, PAID BY OTHER, 2011' DVTEXP11='DENTAL, PAID BY TOTAL, 2011' DVTSLF11='DENTAL, PAID BY OUT OF POCKET, 2011' DVTPHI11='DENTAL, PAID BY PRIV INSU, 2011' DVTMCR11='DENTAL, PAID BY MEDICARE, 2011' DVTMCD11='DENTAL, PAID BY MEDICAID, 2011' DVTTRI11='DENTAL, PAID BY TRICARE, 2011' DVTVA11 ='DENTAL, PAID BY VA, 2011' DVTWC11 ='DENTAL, PAID BY WORKERS COMP, 2011' DVTOTP11='DENTAL, PAID BY OTHER PUBLIC, 2011' DVTOSR11='DENTAL, PAID BY OTHER, 2011' OBOEXP11='OTHER PROVIDER, PAID BY TOTAL, 2011' OBOSLF11='OTHER PROVIDER, BY OUT OF POCKET, 2011' OBOPHI11='OTHER PROVIDER, PAID BY PRIV INSU, 2011' OBOMCR11='OTHER PROVIDER, PAID BY MEDICARE, 2011' OBOMCD11='OTHER PROVIDER, PAID BY MEDICAID, 2011' OBOTRI11='OTHER PROVIDER, PAID BY TRICARE, 2011' OBOVA11 ='OTHER PROVIDER, PAID BY VA, 2011' OBOWC11 ='OTHER PROVIDER, BY WORKERS COMP, 2011' OBOOTP11='OTHER PROVIDER, BY OTHER PUBLIC, 2011' OBOOSR11='OTHER PROVIDER, PAID BY OTHER, 2011' HHCEXP11='HOME HEALTH, PAID BY TOTAL, 2011' HHCSLF11='HOME HEALTH, PAID BY OUT OF POCKET, 2011' HHCPHI11='HOME HEALTH, PAID BY PRIV INSU, 2011' HHCMCR11='HOME HEALTH, PAID BY MEDICARE, 2011' HHCMCD11='HOME HEALTH, PAID BY MEDICAID, 2011' HHCTRI11='HOME HEALTH, PAID BY TRICARE, 2011' HHCVA11 ='HOME HEALTH, PAID BY VA, 2011' HHCWC11 ='HOME HEALTH, PAID BY WORKERS COMP, 2011' HHCOTP11='HOME HEALTH, PAID BY OTHER PUBLIC, 2011' HHCOSR11='HOME HEALTH, PAID BY OTHER, 2011' RXEXP11 ='RX, PAID BY TOTAL, 2011' RXSLF11 ='RX, PAID BY OUT OF POCKET, 2011' RXPHI11 ='RX, PAID BY PRIV INSU, 2011' RXMCR11 ='RX, PAID BY MEDICARE, 2011' RXMCD11 ='RX, PAID BY MEDICAID, 2011' RXTRI11 ='RX, PAID BY TRICARE, 2011' RXVA11 ='RX, PAID BY VA, 2011' RXWC11 ='RX, PAID BY WORKERS COMP, 2011' RXOTP11 ='RX, PAID BY OTHER PUBLIC, 2011' RXOSR11 ='RX, PAID BY OTHER, 2011' OTHEXP11='OTHER MEDICAL, PAID BY TOTAL, 2011' OTHSLF11='OTHER MEDICAL, BY OUT OF POCKET, 2011' OTHPHI11='OTHER MEDICAL, PAID BY PRIV INSU, 2011' OTHMCR11='OTHER MEDICAL, PAID BY MEDICARE, 2011' OTHMCD11='OTHER MEDICAL, PAID BY MEDICAID, 2011' OTHTRI11='OTHER MEDICAL, PAID BY TRICARE, 2011' OTHVA11 ='OTHER MEDICAL, PAID BY VA, 2011' OTHWC11 ='OTHER MEDICAL, BY WORKERS COMP, 2011' OTHOTP11='OTHER MEDICAL, PAID BY OTHR PUBLIC, 2011' OTHOSR11='OTHER MEDICAL, PAID BY OTHER, 2011' WTADJ11 ='GROWTH/FERTILITY/MORTALITY ADJ WGT,2011' ; * 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 - 161.04 = '$1 - $161' 161.04 < - 315.79 = '$162 - $316' 315.79 < - 736.02 = '$317 - $736' 736.02 < - 29720.09 = '$737 - $29,720' ; VALUE DVTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.45 - 107.82 = '$2 - $108' 107.82 < - 190.76 = '$109 - $191' 190.76 < - 396.77 = '$192 - $397' 396.77 < - 16545.83 = '$398 - $16,546' ; VALUE DVTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.78 - 29.48 = '$2 - $29' 29.48 < - 60.71 = '$30 - $61' 60.71 < - 156.075 = '$62 - $156' 156.075 < - 3163.1 = '$157 - $3,163' ; VALUE DVTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.4 - 113.37 = '$1 - $113' 113.37 < - 229.65 = '$114 - $230' 229.65 < - 421.51 = '$231 - $422' 421.51 < - 13920.06 = '$423 - $13,920' ; VALUE DVTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 13.01 - 74.81 = '$13 - $75' 74.81 < - 149.06 = '$76 - $149' 149.06 < - 416.65 = '$150 - $417' 416.65 < - 5210.69 = '$418 - $5,211' ; VALUE DVTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.87 - 174.62 = '$1 - $175' 174.62 < - 310.31 = '$176 - $310' 310.31 < - 639.8 = '$311 - $640' 639.8 < - 26697.53 = '$641 - $26,698' ; VALUE DVTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.45 - 60.85 = '$1 - $61' 60.85 < - 162.41 = '$62 - $162' 162.41 < - 448.12 = '$163 - $448' 448.12 < - 25145.86 = '$449 - $25,146' ; 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.31 = '$16 - $171' ; VALUE DVTWC 0 = '0' ; VALUE GTZERO 0 = '0' 0 < - HIGH = '>0' ; VALUE HHCEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.56 - 1244.89 = '$7 - $1,245' 1244.89 < - 4964.635 = '$1,246 - $4,965' 4964.635 < - 13640.36 = '$4,966 - $13,640' 13640.36 < - 329779.83 = '$13,641 - $329,780' ; VALUE HHCMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.76 - 1117.85 = '$5 - $1,118' 1117.85 < - 5124.19 = '$1,119 - $5,124' 5124.19 < - 16823.51 = '$5,125 - $16,824' 16823.51 < - 263425.62 = '$16,825 - $263,426' ; VALUE HHCMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 19.71 - 2306.75 = '$19 - $2,307' 2306.75 < - 5215.1 = '$2,308 - $5,215' 5215.1 < - 11690.2 = '$5,216 - $11,690' 11690.2 < - 93648.9 = '$11,691 - $93,649' ; VALUE HHCOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 69.04 - 170.35 = '$69 - $170' 170.35 < - 390.78 = '$171 - $391' 390.78 < - 1108.51 = '$392 - $1,109' 1108.51 < - 3328.14 = '$1,110 - $3,328' ; VALUE HHCOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 18.06 - 383.91 = '$18 - $384' 383.91 < - 960.035 = '$385 - $960' 960.035 < - 2499 = '$961 - $2,499' 2499 < - 18851.1 = '$2,500 - $18,851' ; VALUE HHCPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 38.94 - 816.37 = '$38 - $816' 816.37 < - 2621.715 = '$817 - $2,622' 2621.715 < - 8024.88 = '$2,623 - $8,025' 8024.88 < - 132623.91 = '$8,026 - $132,624' ; VALUE HHCSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.56 - 132.3 = '$7 - $132' 132.3 < - 459.8 = '$133 - $460' 459.8 < - 1544.19 = '$461 - $1,544' 1544.19 < - 90269.37 = '$1,545 - $90,269' ; VALUE HHCTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.79 - 56.37 = '$6 - $56' 56.37 < - 183.51 = '$57 - $184' 183.51 < - 489.435 = '$185 - $489' 489.435 < - 1900.04 = '$490 - $1,900' ; VALUE HHCVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 190.44 - 1816.02 = '$190 - $1,816' 1816.02 < - 4761.06 = '$1,817 - $4,761' 4761.06 < - 10846.72 = '$4,762 - $10,847' 10846.72 < - 49515.07 = '$10,848 - $49,515' ; VALUE HHCWC 0 = '0' 20000 - 40000 = '$20,000 - $40,000' ; VALUE HOSEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 3.13 - 293.09 = '$3 - $293' 293.09 < - 1113.685 = '$294 - $1,114' 1113.685 < - 4887.895 = '$1,115 - $4,888' 4887.895 < - 928860.46 = '$4,889 - $928,860' ; VALUE HOSMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.74 - 194.405 = '$1 - $194' 194.405 < - 725.13 = '$195 - $725' 725.13 < - 3554.175 = '$726 - $3,554' 3554.175 < - 688410.73 = '$3,555 - $688,411' ; VALUE HOSMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.28 - 233.66 = '$1 - $234' 233.66 < - 1209.91 = '$235 - $1,210' 1209.91 < - 7321.42 = '$1,211 - $7,321' 7321.42 < - 232545.21 = '$7,322 - $232,545' ; VALUE HOSOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.73 - 116.88 = '$2 - $117' 116.88 < - 379.93 = '$118 - $380' 379.93 < - 1426.26 = '$381 - $1,426' 1426.26 < - 76384.11 = '$1,427 - $76,384' ; VALUE HOSOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.84 - 93.3 = '$6 - $93' 93.3 < - 289.225 = '$94 - $289' 289.225 < - 1194.15 = '$290 - $1,194' 1194.15 < - 60157.24 = '$1,195 - $60,157' ; VALUE HOSPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.57 - 265.11 = '$1 - $265' 265.11 < - 966.84 = '$266 - $967' 966.84 < - 3260.96 = '$968 - $3,261' 3260.96 < - 928860.46 = '$3,262 - $928,860' ; VALUE HOSSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.85 - 48.08 = '$1 - $48' 48.08 < - 144.25 = '$49 - $144' 144.25 < - 480.82 = '$145 - $481' 480.82 < - 120317.87 = '$482 - $120,318' ; VALUE HOSTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.85 - 66.23 = '$1 - $66' 66.23 < - 241.29 = '$67 - $241' 241.29 < - 793.805 = '$242 - $794' 793.805 < - 152849.34 = '$795 - $152,849' ; VALUE HOSVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.41 - 191.09 = '$1 - $191' 191.09 < - 761.07 = '$192 - $761' 761.07 < - 3136.095 = '$762 - $3,136' 3136.095 < - 291648.27 = '$3,137 - $291,648' ; VALUE HOSWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.2 - 85.48 = '$2 - $85' 85.48 < - 239.7 = '$86 - $240' 239.7 < - 783.09 = '$241 - $783' 783.09 < - 364888.01 = '$784 - $364,888' ; VALUE $ID 'N0000111' - 'N7338011' = 'N0000111 - N7338011' ; 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.14 - 20.21 = '$1 - $20' 20.21 < - 73.59 = '$21 - $74' 73.59 < - 292.2 = '$75 - $292' 292.2 < - 86397.71 = '$293 - $86,398' ; VALUE OBOMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.14 - 11.13 = '$1 - $11' 11.13 < - 32.26 = '$12 - $32' 32.26 < - 126.92 = '$33 - $127' 126.92 < - 77807.72 = '$128 - $77,808' ; VALUE OBOMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.13 - 29.08 = '$1 - $29' 29.08 < - 109.75 = '$30 - $110' 109.75 < - 338.39 = '$111 - $338' 338.39 < - 78995.36 = '$339 - $78,995' ; VALUE OBOOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.37 - 42.52 = '$1 - $43' 42.52 < - 117.63 = '$44 - $118' 117.63 < - 384.08 = '$119 - $384' 384.08 < - 14923.76 = '$385 - $14,924' ; VALUE OBOOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.01 - 33.45 = '$2 - $33' 33.45 < - 81.9 = '$34 - $82' 81.9 < - 230.94 = '$83 - $231' 230.94 < - 3840.22 = '$232 - $3,840' ; VALUE OBOPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.13 - 12.85 = '$1 - $13' 12.85 < - 42.09 = '$14 - $42' 42.09 < - 172.12 = '$43 - $172' 172.12 < - 73221.6 = '$173 - $73,222' ; VALUE OBOSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.18 - 4.74 = '$1 - $5' 4.74 < - 15.59 = '$6 - $16' 15.59 < - 60.52 = '$17 - $61' 60.52 < - 40021.65 = '$62 - $40,022' ; VALUE OBOTRI 0 = '0' ; VALUE OBOVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.11 - 1.97 = '$1 - $2' 1.97 < - 6.02 = '$3 - $6' 6.02 < - 18.41 = '$7 - $18' 18.41 < - 903.28 = '$19 - $903' ; VALUE OBOWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.14 - 53.33 = '$1 - $53' 53.33 < - 152.14 = '$54 - $152' 152.14 < - 580.02 = '$153 - $580' 580.02 < - 14390.88 = '$581 - $14,391' ; VALUE OTHEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.77 - 141.71 = '$1 - $142' 141.71 < - 291.35 = '$143 - $291' 291.35 < - 530.39 = '$292 - $530' 530.39 < - 64363.47 = '$531 - $64,363' ; VALUE OTHMCD 0 = '0' ; VALUE OTHMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.86 - 764.765 = '$7 - $765' 764.765 < - 1489.44 = '$766 - $1,489' 1489.44 < - 3556.58 = '$1,490 - $3,557' 3556.58 < - 63639.03 = '$3,558 - $63,639' ; VALUE OTHOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 6.81 - 106.04 = '$6 - $106' 106.04 < - 235.65 = '$107 - $236' 235.65 < - 405.27 = '$237 - $405' 405.27 < - 7946.39 = '$406 - $7,946' ; VALUE OTHOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.27 - 47.04 = '$2 - $47' 47.04 < - 85.66 = '$48 - $86' 85.66 < - 219.53 = '$87 - $220' 219.53 < - 2359.41 = '$221 - $2,359' ; VALUE OTHPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.93 - 68.07 = '$1 - $68' 68.07 < - 134.395 = '$69 - $134' 134.395 < - 241.94 = '$135 - $242' 241.94 < - 17419.95 = '$243 - $17,420' ; VALUE OTHSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.77 - 106.39 = '$1 - $106' 106.39 < - 248.45 = '$107 - $248' 248.45 < - 460.1 = '$249 - $460' 460.1 < - 50102.77 = '$461 - $50,103' ; VALUE OTHTRI 0 = '0' ; VALUE OTHVA 0 = '0' ; VALUE OTHWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 165.91 - 1086.99 = '$165 - $1,087' 1086.99 < - 2152.865 = '$1,088 - $2,153' 2152.865 < - 4395.9 = '$2,154 - $4,396' 4395.9 < - 19965.37 = '$4,397 - $19,965' ; VALUE PHYEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.5 - 187.66 = '$1 - $188' 187.66 < - 489.62 = '$189 - $490' 489.62 < - 1470.27 = '$491 - $1,470' 1470.27 < - 143150.58 = '$1,471 - $143,151' ; VALUE PHYMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.44 - 101.73 = '$1 - $102' 101.73 < - 247.93 = '$103 - $248' 247.93 < - 683.24 = '$249 - $683' 683.24 < - 68917.02 = '$684 - $68,917' ; VALUE PHYMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.67 - 257.2 = '$1 - $257' 257.2 < - 762.92 = '$258 - $763' 762.92 < - 2168.34 = '$764 - $2,168' 2168.34 < - 101870.4 = '$2,169 - $101,870' ; VALUE PHYOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.39 - 61.03 = '$1 - $61' 61.03 < - 132.45 = '$62 - $132' 132.45 < - 337.06 = '$133 - $337' 337.06 < - 111501.58 = '$338 - $111,502' ; VALUE PHYOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1 - 48.09 = '$1 - $48' 48.09 < - 106.17 = '$49 - $106' 106.17 < - 305.97 = '$107 - $306' 305.97 < - 39038.51 = '$307 - $39,039' ; VALUE PHYPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.08 - 161.84 = '$2 - $162' 161.84 < - 397.05 = '$163 - $397' 397.05 < - 1102.69 = '$398 - $1,103' 1102.69 < - 118947.8 = '$1,104 - $118,948' ; VALUE PHYSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.45 - 29 = '$1 - $29' 29 < - 72.37 = '$30 - $72' 72.37 < - 185.6 = '$73 - $186' 185.6 < - 40629.2 = '$187 - $40,629' ; VALUE PHYTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.52 - 173.68 = '$7 - $174' 173.68 < - 513.23 = '$175 - $513' 513.23 < - 1311.815 = '$514 - $1,312' 1311.815 < - 126385.31 = '$1,313 - $126,385' ; VALUE PHYVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.42 - 22.03 = '$1 - $22' 22.03 < - 72.76 = '$23 - $73' 72.76 < - 241.99 = '$74 - $242' 241.99 < - 8348.07 = '$243 - $8,348' ; VALUE PHYWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 5.86 - 253.86 = '$5 - $254' 253.86 < - 644.07 = '$255 - $644' 644.07 < - 2049.32 = '$645 - $2,049' 2049.32 < - 66722.89 = '$2,050 - $66,723' ; 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.42 - 67.64 = '$1 - $68' 67.64 < - 282.65 = '$69 - $283' 282.65 < - 1122.2 = '$284 - $1,122' 1122.2 < - 285190.41 = '$1,123 - $285,190' ; VALUE RXMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.42 - 42.5 = '$1 - $43' 42.5 < - 136.67 = '$44 - $137' 136.67 < - 579.925 = '$138 - $580' 579.925 < - 232583.19 = '$581 - $232,583' ; VALUE RXMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 7.7 - 807.67 = '$7 - $808' 807.67 < - 2434.665 = '$809 - $2,435' 2434.665 < - 6541.24 = '$2,436 - $6,541' 6541.24 < - 284059.41 = '$6,542 - $284,059' ; VALUE RXOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 4.4 - 41.09 = '$4 - $41' 41.09 < - 158.42 = '$42 - $158' 158.42 < - 357.045 = '$159 - $357' 357.045 < - 4134.35 = '$358 - $4,134' ; VALUE RXOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.55 - 48.14 = '$1 - $48' 48.14 < - 239.965 = '$49 - $240' 239.965 < - 915.01 = '$241 - $915' 915.01 < - 38063.89 = '$916 - $38,064' ; VALUE RXPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.81 - 73.06 = '$1 - $73' 73.06 < - 279.78 = '$74 - $280' 279.78 < - 1025.25 = '$281 - $1,025' 1025.25 < - 79454.5 = '$1,026 - $79,455' ; VALUE RXSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.68 - 19.19 = '$1 - $19' 19.19 < - 74.62 = '$20 - $75' 74.62 < - 265.1 = '$76 - $265' 265.1 < - 25065.33 = '$266 - $25,065' ; VALUE RXTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.49 - 28.25 = '$1 - $28' 28.25 < - 134.17 = '$29 - $134' 134.17 < - 564.72 = '$135 - $565' 564.72 < - 20308.95 = '$566 - $20,309' ; VALUE RXVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.67 - 49.12 = '$1 - $49' 49.12 < - 211.435 = '$50 - $211' 211.435 < - 599.92 = '$212 - $600' 599.92 < - 15369.25 = '$601 - $15,369' ; VALUE RXWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.81 - 78.85 = '$1 - $79' 78.85 < - 202.11 = '$80 - $202' 202.11 < - 658.41 = '$203 - $658' 658.41 < - 20655.98 = '$659 - $20,656' ; VALUE SEX 1 = '1 Male' 2 = '2 Female' ; VALUE TOTEXP -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.71 - 423.67 = '$1 - $424' 423.67 < - 1345.86 = '$425 - $1,346' 1345.86 < - 4516.1 = '$1,347 - $4,516' 4516.1 < - 1007731.94 = '$4,517 - $1,007,732' ; VALUE TOTMCD -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.82 - 201.82 = '$1 - $202' 201.82 < - 606.43 = '$203 - $606' 606.43 < - 2436.96 = '$607 - $2,437' 2436.96 < - 698894.47 = '$2,438 - $698,894' ; VALUE TOTMCR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.28 - 460.04 = '$1 - $460' 460.04 < - 1845.775 = '$461 - $1,846' 1845.775 < - 7732.11 = '$1,847 - $7,732' 7732.11 < - 294256.69 = '$7,733 - $294,257' ; VALUE TOTOSR -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.37 - 77.68 = '$1 - $78' 77.68 < - 186.05 = '$79 - $186' 186.05 < - 498.41 = '$187 - $498' 498.41 < - 111501.58 = '$499 - $111,502' ; VALUE TOTOTP -9 = '-9 NOT ASCERTAINED' 0 = '0' 1 - 65.28 = '$1 - $65' 65.28 < - 205.14 = '$66 - $205' 205.14 < - 778.96 = '$206 - $779' 778.96 < - 60157.24 = '$780 - $60,157' ; VALUE TOTPHI -9 = '-9 NOT ASCERTAINED' 0 = '0' 1.42 - 308.44 = '$1 - $308' 308.44 < - 918.67 = '$309 - $919' 918.67 < - 2834.51 = '$920 - $2,835' 2834.51 < - 1002144.81 = '$2,836 - $1,002,145' ; VALUE TOTSLF -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.68 - 76.26 = '$1 - $76' 76.26 < - 287.525 = '$77 - $288' 287.525 < - 828.55 = '$289 - $829' 828.55 < - 136505.69 = '$830 - $136,506' ; VALUE TOTTRI -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.85 - 203.59 = '$1 - $204' 203.59 < - 681.5 = '$205 - $682' 681.5 < - 1966.41 = '$683 - $1,966' 1966.41 < - 168922.21 = '$1,967 - $168,922' ; VALUE TOTVA -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.08 - 28.63 = '$1 - $29' 28.63 < - 162.565 = '$30 - $163' 162.565 < - 732.73 = '$164 - $733' 732.73 < - 291880.37 = '$734 - $291,880' ; VALUE TOTWC -9 = '-9 NOT ASCERTAINED' 0 = '0' 2.2 - 246.65 = '$2 - $247' 246.65 < - 810.49 = '$248 - $810' 810.49 < - 2630.73 = '$811 - $2,631' 2630.73 < - 446001.48 = '$2,632 - $446,001' ; VALUE YESNO 0 = '0 No' 1 = '1 Yes' ;