SAS User File for H215 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 (H215.SSP) or the ASCII data file (H215.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: CIMPORT. 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. ****************************************************************************** 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 CIMPORT 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). LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\H215.SSP'; PROC CIMPORT DATA=PUFLIB.H215 INFILE=IN1; RUN; Below are SAS statements to print a list of variables and a few sample records from the permanent SAS dataset: PROC CONTENTS DATA=PUFLIB.H215; TITLE 'List of Variables in MEPS H215 SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H215 (OBS=20); TITLE 'First 20 Observations in MEPS H215 SAS Dataset'; RUN; The LIBNAME statement tells SAS the location (directory name) to store the permanent SAS dataset which is output by PROC CIMPORT. The FILENAME statement tells SAS the location (complete directory and file name) of the input SAS transport data file. NOTES: 1) The names used in the LIBNAME and FILENAME statements shown above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary aliases. 2) 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 and Linux. 3) H215 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 CIMPORT, the output SAS dataset assumes the same dataset name (or file name). Hence, in the example above, a file named H215.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC CIMPORT runs successfully. 4) The SAS transport file H215.SSP was created from a SAS V9 data file, using PROC CPORT. This file should 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 H215.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 H215.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, Linux, etc.), use the editor provided as part of the SAS software. Following is a sample Windows SAS program that will convert the ASCII data file to SAS format: LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\H215.DAT'; DATA PUFLIB.H215; INFILE IN1 LRECL=254; 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 (H215). In the example, after the successful completion of the DATA step, a PC file named H215.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 (254 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 H215.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., 254 for H215.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (256 for H215.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 (254 for H215.DAT). INPUT statement: This specifies the input record layout, giving names, the beginning column positions, and the lengths for data items (which become SAS variables) in the ASCII data file (H215.DAT). Variable type (numeric or character) is also defined by character variables having a dollar sign ($) directly before the variables length, while numeric variables do not have a dollar sign. LABEL statement: This associates descriptive names with the SAS variables. RUN statement: This tells SAS to execute all commands up to this point. C. Optional Format-related SAS Statements If a user wants to use formats for the SAS variables, a SAS format catalog 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.H215; 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') and format catalog (file name extension is 'SAS7BCAT') 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) 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 and Linux. D. SAS Statements This section contains SAS INPUT, LABEL, FORMAT, and VALUE statements for use in converting the ASCII H215.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=254; INPUT @1 EPCPIDX $35.0 @36 DUPERSID $10.0 @46 PHLDRIDX $10.0 @56 ESTBIDX $11.0 @67 EPRSIDX $25.0 @92 InsurPrivIDEX $14.0 @106 PANEL 2.0 @108 RN 1.0 @109 JOBSIDX $14.0 @123 JOBSINFR 2.0 @125 JOBSFILE 3.0 @128 PITFLG 1.0 @129 FYFLG 1.0 @130 CMJINS 2.0 @132 EMPLSTAT 3.0 @135 PHOLDER 1.0 @136 DEPNDNT 1.0 @137 PHLDRCHNG 2.0 @139 EVALCOVR 2.0 @141 STATUS1 2.0 @143 STATUS2 2.0 @145 STATUS3 2.0 @147 STATUS4 2.0 @149 STATUS5 2.0 @151 STATUS6 2.0 @153 STATUS7 2.0 @155 STATUS8 2.0 @157 STATUS9 2.0 @159 STATUS10 2.0 @161 STATUS11 2.0 @163 STATUS12 2.0 @165 STATUS13 2.0 @167 STATUS14 2.0 @169 STATUS15 2.0 @171 STATUS16 2.0 @173 STATUS17 2.0 @175 STATUS18 2.0 @177 STATUS19 2.0 @179 STATUS20 2.0 @181 STATUS21 2.0 @183 STATUS22 2.0 @185 STATUS23 2.0 @187 STATUS24 2.0 @189 DECPHLDR 1.0 @190 OUTPHLDR 1.0 @191 NOPUFLG 1.0 @192 COVROUT_M18 2.0 @194 TYPEFLAG 2.0 @196 STEXCH 2.0 @198 PrivateCat 2.0 @200 HOSPINSX 2.0 @202 MSUPINSX 2.0 @204 DENTLINS 2.0 @206 VISIONIN 2.0 @208 PMEDINS 2.0 @210 COBRA 3.0 @213 PLANMETL 2.0 @215 COVTYPIN 1.0 @216 OOPELIG 1.0 @217 OOPPREM 7.2 @224 OOPPREMX 7.2 @231 OOPX12X 8.2 @239 OOPFLAG 2.0 @241 PREMLEVX 3.0 @244 PREMSUBZ 2.0 @246 ANNDEDCT 2.0 @248 HSAACCT 2.0 @250 UPRHMO 3.0 @253 NAMECHNG 2.0 ; * FORMAT STATEMENTS; FORMAT EPCPIDX $EPCPIDX. DUPERSID $DUPERSI. PHLDRIDX $PHLDRID. ESTBIDX $ESTBIDX. EPRSIDX $EPRSIDX. InsurPrivIDEX $INSURPRIVIDEX. PANEL PANEL. RN RN. JOBSIDX $JOBSIDX. JOBSINFR JOBSINFR. JOBSFILE JOBSFILE. PITFLG PITFLG. FYFLG FYFLG. CMJINS CMJINS. EMPLSTAT EMPLSTAT. PHOLDER PHOLDER. DEPNDNT DEPNDNT. PHLDRCHNG PHLDRCHNG. EVALCOVR EVALCOVR. STATUS1 STATUS1F. STATUS2 STATUS2F. STATUS3 STATUS3F. STATUS4 STATUS4F. STATUS5 STATUS5F. STATUS6 STATUS6F. STATUS7 STATUS7F. STATUS8 STATUS8F. STATUS9 STATUS9F. STATUS10 STATS10F. STATUS11 STATS11F. STATUS12 STATS12F. STATUS13 STATS13F. STATUS14 STATS14F. STATUS15 STATS15F. STATUS16 STATS16F. STATUS17 STATS17F. STATUS18 STATS18F. STATUS19 STATS19F. STATUS20 STATS20F. STATUS21 STATS21F. STATUS22 STATS22F. STATUS23 STATS23F. STATUS24 STATS24F. DECPHLDR DECPHLDR. OUTPHLDR OUTPHLDR. NOPUFLG NOPUFLG. COVROUT_M18 COVROUT. TYPEFLAG TYPEFLAG. STEXCH STEXCH. PrivateCat PRIVATECAT. HOSPINSX HOSPINSX. MSUPINSX MSUPINSX. DENTLINS DENTLINS. VISIONIN VISIONIN. PMEDINS PMEDINS. COBRA COBRA. PLANMETL PLANMETL. COVTYPIN COVTYPIN. OOPELIG OOPELIG. OOPPREM OOPPREM. OOPPREMX OOPPREMX. OOPX12X OOPX12X. OOPFLAG OOPFLAG. PREMLEVX PREMLEVX. PREMSUBZ PREMSUBZ. ANNDEDCT ANNDEDCT. HSAACCT HSAACCT. UPRHMO UPRHMO. NAMECHNG NAMECHNG. ; * LABEL STATEMENTS; LABEL EPCPIDX ="Insurance source-phldr-dependent identifier" DUPERSID ="Person identifier" PHLDRIDX ="Policyholder person identifier" ESTBIDX ="Insurance source identifier" EPRSIDX ="Unique insurance policy-source" InsurPrivIDEX ="Unique insurance policy source-insurance identifier" PANEL ="Panel number" RN ="Round number" JOBSIDX ="Policyholder job-round identifier" JOBSINFR ="Job identifier inferred not reported" JOBSFILE ="Jobs file containing job information" PITFLG ="Person in point-in-time file" FYFLG ="Person in full year file" CMJINS ="Current main job is the source of plan" EMPLSTAT ="Policyholder employment status" PHOLDER ="Policy holder flag" DEPNDNT ="Dependent of policy holder flag" PHLDRCHNG ="Change to PHLDRIDX on reviewed coverage" EVALCOVR ="Covered at interview or December 31st" STATUS1 ="Insurance active in month 1" STATUS2 ="Insurance active in month 2" STATUS3 ="Insurance active in month 3" STATUS4 ="Insurance active in month 4" STATUS5 ="Insurance active in month 5" STATUS6 ="Insurance active in month 6" STATUS7 ="Insurance active in month 7" STATUS8 ="Insurance active in month 8" STATUS9 ="Insurance active in month 9" STATUS10 ="Insurance active in month 10" STATUS11 ="Insurance active in month 11" STATUS12 ="Insurance active in month 12" STATUS13 ="Insurance active in month 13" STATUS14 ="Insurance active in month 14" STATUS15 ="Insurance active in month 15" STATUS16 ="Insurance active in month 16" STATUS17 ="Insurance active in month 17" STATUS18 ="Insurance active in month 18" STATUS19 ="Insurance active in month 19" STATUS20 ="Insurance active in month 20" STATUS21 ="Insurance active in month 21" STATUS22 ="Insurance active in month 22" STATUS23 ="Insurance active in month 23" STATUS24 ="Insurance active in month 24" DECPHLDR ="Deceased policyholder flag" OUTPHLDR ="Out-of-RU policyholder flag" NOPUFLG ="Policyholder not in full year or point-in-time files" COVROUT_M18 ="Policy covers person not in RU" TYPEFLAG ="Type of insurance source" STEXCH ="State exchange coverage" PrivateCat ="Category of private coverage" HOSPINSX ="Type health insurance received: hospital phys/HMO (edited)" MSUPINSX ="Type health insurance received: Medigap (edited)" DENTLINS ="Type health insurance received: dental" VISIONIN ="Type health insurance received: vision" PMEDINS ="Type health insurance received: prescription drug" COBRA ="COBRA coverage" PLANMETL ="Plan metal level" COVTYPIN ="Single or family health insurance coverage plan" OOPELIG ="Policyholder-insurance source has premium" OOPPREM ="Monthly out-of-pocket premium" OOPPREMX ="Monthly out-of-pocket premium (edited/imputed)" OOPX12X ="Annual out-of-pocket premium (edited/imputed)" OOPFLAG ="OOPPREMX edit/imputation flag" PREMLEVX ="Portion of premium paid by family (edited)" PREMSUBZ ="Cost of the premium subsidized" ANNDEDCT ="Annual deductible" HSAACCT ="HSA with this plan" UPRHMO ="HMO coverage (edited)" NAMECHNG ="Plan name change" ; * VALUE STATEMENTS; VALUE ANNDEDCT -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 LESS THAN $1350/$2700" 2 = "2 $1350/$2700 OR MORE" 3 = "3 NO ANNUAL DEDUCTIBLE" ; VALUE CMJINS -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE COBRA -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE COVROUT -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE COVTYPIN 1 = "1 SINGLE" 2 = "2 FAMILY" ; VALUE DECPHLDR 1 = "1 YES" 2 = "2 NO" ; VALUE DENTLINS -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE DEPNDNT 0 = "0 POLICYHOLDER" 1 = "1 DEPENDENT" ; VALUE $DUPERSI '2320002101' - '2469689101' = "2320002101 - 2469689101 DUPERSID" ; VALUE EMPLSTAT -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 CURRENTLY EMPLOYED" 2 = "2 RETIRED" 3 = "3 PREVIOUSLY EMPLOYED" 4 = "4 DECEASED" 91 = "91 OTHER" ; VALUE $EPCPIDX '23200020101232000210231012320002102' - '24696890101246968910131012469689101' = "23200020101232000210231012320002102 - 24696890101246968910131012469689101 EPCPIDX" ; VALUE $EPRSIDX '2320002010123200021023101' - '2469689010124696891013101' = "2320002010123200021023101 - 2469689010124696891013101 EPRSIDX" ; VALUE $ESTBIDX '23200020101' - '24696890101' = "23200020101 - 24696890101 ESTBIDX" ; VALUE EVALCOVR -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE FYFLG 0 = "0 NO" 1 = "1 YES" ; VALUE HOSPINSX -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE HSAACCT -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE $INSURPRIVIDEX '23200020101101' - '24696890101101' = "23200020101101 - 24696890101101 INSURPRIVIDEX" ; VALUE JOBSFILE -1 = "-1 INAPPLICABLE" 203 = "HC203 2018 JOBSFILE" 211 = "HC211 2019 JOBSFILE" ; VALUE $JOBSIDX '-1' = "-1 INAPPLICABLE" '23200021023101' - '24696891013101' = "23200021023101 - 24696891013101 JOBSIDX" ; VALUE JOBSINFR -1 = "-1 INAPPLICABLE" 0 = "0 NO" 1 = "1 YES" ; VALUE MSUPINSX -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE NAMECHNG -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE NOPUFLG 1 = "1 YES" 2 = "2 NO" ; VALUE OOPELIG 1 = "1 YES" 2 = "2 NO" ; VALUE OOPFLAG -1 = "-1 INAPPLICABLE" 0 = "0 NO" 1 = "1 YES" ; VALUE OOPPREM -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 0 = "0 NO PREMIUM CONTRIBUTION" 0.08 - 130 = "$0.08 - $130.00" 130.01 - 268.67 = "$130.01 - $268.67" 268.68 - 450.67 = "$268.68 - $450.67" 450.68 - 5200 = "$450.68 - $5,200.00" ; VALUE OOPPREMX -1 = "-1 INAPPLICABLE" 0 = "0 NO PREMIUM CONTRIBUTION" 0.14 - 134 = "$0.14 - $134.00" 134.01 - 270 = "$134.01 - $270.00" 270.01 - 460 = "$270.01 - $460.00" 460.01 - 5200 = "$460.01 - $5,200.00" ; VALUE OOPX12X -1 = "-1 INAPPLICABLE" 0 = "0 NO PREMIUM CONTRIBUTION" 1.68 - 1608 = "$1.68 - $1,608.00" 1608.01 - 3240 = "$1,608.01 - $3,240.00" 3240.01 - 5520 = "$3,240.01 - $5,520.00" 5520.01 - 62400 = "$5,520.01 - $62,400.00" ; VALUE OUTPHLDR 1 = "1 YES" 2 = "2 NO" ; VALUE PANEL 23 = "23" 24 = "24" ; VALUE PHLDRCHNG -1 = "-1 INAPPLICABLE" 1 = "1 CHANGED FROM 902 TO NON 902" 2 = "2 CHANGED FROM NON 902 TO 902" 3 = "3 CHANGED FROM NON 902 TO 901" 4 = "4 CHANGED FROM NON 902 TO NON 902" 5 = "5 MULTIPLE POLICYHOLDERS ARE REPORTED" ; VALUE $PHLDRID '2320002101' - '2469689101' = "2320002101 - 2469689101 PHLDRIDX" ; VALUE PHOLDER 0 = "0 DEPENDENT" 1 = "1 POLICYHOLDER" ; VALUE PITFLG 0 = "0 NO" 1 = "1 YES" ; VALUE PLANMETL -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 PLATINUM PLAN" 2 = "2 GOLD PLAN" 3 = "3 SILVER PLAN" 4 = "4 BRONZE PLAN" 5 = "5 CATASTROPHIC PLAN" 6 = "6 IF VOLUNTEERED: SOMETHING ELSE" ; VALUE PMEDINS -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE PREMLEVX -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 FAMILY PAYS ALL PREMIUM COST" 2 = "2 FAMILY PAYS SOME PREMIUM COST" 3 = "3 FAMILY DOES NOT KNOW" 4 = "4 FAMILY DOES NOT PAY PREMIUM COST" ; VALUE PREMSUBZ -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE PRIVATECAT 0 = "0 NOT HOSP/PHYS OR MEDIGAP COVERAGE" 1 = "1 EMPLOYER/UNION" 2 = "2 NONGROUP" 3 = "3 OTHER GROUP" 4 = "4 ESI, PHOLDER OUTSIDE RU" 5 = "5 NON-ESI, PHOLDER OUTSIDE RU" 6 = "6 STATE EXCHANGE" 99 = "99 DONT KNOW WHAT KIND PRIV COV" ; VALUE RN 1 = "1" 2 = "2" 3 = "3" 4 = "4" 5 = "5" ; VALUE STATS10F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATS11F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATS12F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATS13F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATS14F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATS15F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATS16F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATS17F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATS18F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATS19F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATS20F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATS21F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATS22F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATS23F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATS24F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATUS1F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATUS2F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATUS3F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATUS4F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATUS5F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATUS6F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATUS7F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATUS8F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STATUS9F -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE STEXCH -1 = "-1 INAPPLICABLE" 1 = "1 YES, EXCHANGE COVERAGE" 2 = "2 NO, NOT EXCHANGE COVERAGE" ; VALUE TYPEFLAG -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 EMPLOYER" 2 = "2 UNION" 3 = "3 GROUP" 5 = "5 INSURANCE COMPANY-FROM AN AGENT" 6 = "6 INSURANCE COMPANY" 7 = "7 HMO" 8 = "8 PREVIOUS EMPLOYER" 10 = "10 SPOUSE PREVIOUS EMPLOYER" 11 = "11 SCHOOL" 12 = "12 UNKNOWN TYPE-OUTSIDE RU" 13 = "13 UNKNOWN TYPE-COLLECTED AT OTHER" 21 = "21 STATE EXCHANGE NAME" ; VALUE UPRHMO -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 PRIVATE PLAN IS HMO" 2 = "2 PRIVATE PLAN IS NOT HMO" ; VALUE VISIONIN -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ;