SAS User File for H206H 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 (H206H.SSP) or the ASCII data file (H206H.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\H206H.SSP'; PROC CIMPORT DATA=PUFLIB.H206H 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.H206H; TITLE 'List of Variables in MEPS H206H SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H206H (OBS=20); TITLE 'First 20 Observations in MEPS H206H 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) H206H 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 H206H.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC CIMPORT runs successfully. 4) The SAS transport file H206H.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 H206H.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 H206H.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\H206H.DAT'; DATA PUFLIB.H206H; INFILE IN1 LRECL=214; 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 (H206H). In the example, after the successful completion of the DATA step, a PC file named H206H.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 (214 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 H206H.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., 214 for H206H.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (216 for H206H.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 (214 for H206H.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 (H206H.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.H206H; 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 H206H.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=214; INPUT @1 DUID 7.0 @8 PID 3.0 @11 DUPERSID $10.0 @21 EVNTIDX $16.0 @37 EVENTRN 1.0 @38 PANEL 2.0 @40 HHDATEYR 4.0 @44 HHDATEMM 2.0 @46 MPCELIG 1.0 @47 SELFAGEN 2.0 @49 HHTYPE 1.0 @50 CNA_M18 2.0 @52 DIETICN_M18 2.0 @54 IVTHP_M18 2.0 @56 MEDLDOC_M18 2.0 @58 NURPRACT_M18 2.0 @60 OCCUPTHP_M18 2.0 @62 PHYSLTHP_M18 2.0 @64 RESPTHP_M18 2.0 @66 SOCIALW_M18 2.0 @68 SPEECTHP_M18 2.0 @70 HCarWrkrProfNone_M18 2.0 @72 COMPANN_M18 2.0 @74 HMEMAKER_M18 2.0 @76 HHAIDE_M18 2.0 @78 HOSPICE_M18 2.0 @80 NURAIDE_M18 2.0 @82 PERSONAL_M18 2.0 @84 HCarWrkrNonProfNone_M18 2.0 @86 VSTRELCN 2.0 @88 FREQCY 2.0 @90 DAYSPWK 2.0 @92 DAYSPMO 2.0 @94 SAMESVCE_M18 2.0 @96 HHDAYS 3.0 @99 HHSF18X 7.2 @106 HHMR18X 8.2 @114 HHMD18X 8.2 @122 HHPV18X 8.2 @130 HHVA18X 7.2 @137 HHTR18X 5.2 @142 HHOF18X 6.2 @148 HHSL18X 7.2 @155 HHWC18X 5.2 @160 HHOR18X 7.2 @167 HHOU18X 7.2 @174 HHOT18X 7.2 @181 HHXP18X 8.2 @189 HHTC18X 8.2 @197 IMPFLAG 1.0 @198 PERWT18F 12.6 @210 VARSTR 4.0 @214 VARPSU 1.0 ; * FORMAT STATEMENTS; FORMAT DUID DUID. PID PID. DUPERSID $DUPERS. EVNTIDX $EVNTIDX. EVENTRN EVENTRF. PANEL PANELF. HHDATEYR HHDTEYRF. HHDATEMM HHDTEMMF. MPCELIG MPCELIGF. SELFAGEN SELFAGEF. HHTYPE HHTYPEF. CNA_M18 CNAF. DIETICN_M18 DIETICNF. IVTHP_M18 IVTHPF. MEDLDOC_M18 MEDLDOCF. NURPRACT_M18 NURPRACF. OCCUPTHP_M18 OCCUPTHF. PHYSLTHP_M18 PHYSLTHF. RESPTHP_M18 RESPTHPF. SOCIALW_M18 SOCIALWF. SPEECTHP_M18 SPEECTHF. HCarWrkrProfNone_M18 HCARWRKRPROFNONEF. COMPANN_M18 COMPANNF. HMEMAKER_M18 HMEMAKEF. HHAIDE_M18 HHAIDEF. HOSPICE_M18 HOSPICEF. NURAIDE_M18 NURAIDEF. PERSONAL_M18 PERSONAF. HCarWrkrNonProfNone_M18 HCARWRKRNONPROFNONEF. VSTRELCN VSTRELCF. FREQCY FREQCYF. DAYSPWK DAYSPWKF. DAYSPMO DAYSPMOF. SAMESVCE_M18 SAMESVCF. HHDAYS HHDAYSF. HHSF18X HHSF18XF. HHMR18X HHMR18XF. HHMD18X HHMD18XF. HHPV18X HHPV18XF. HHVA18X HHVA18XF. HHTR18X HHTR18XF. HHOF18X HHOF18XF. HHSL18X HHSL18XF. HHWC18X HHWC18XF. HHOR18X HHOR18XF. HHOU18X HHOU18XF. HHOT18X HHOT18XF. HHXP18X HHXP18XF. HHTC18X HHTC18XF. IMPFLAG IMPFLAGF. PERWT18F PERWT18F. VARSTR VARSTRF. VARPSU VARPSUF. ; * LABEL STATEMENTS; LABEL DUID ='PANEL # + ENCRYPTED DU IDENTIFIER' PID ='PERSON NUMBER' DUPERSID ='PERSON ID (DUID + PID)' EVNTIDX ='EVENT ID' EVENTRN ='EVENT ROUND NUMBER' PANEL ='PANEL NUMBER' HHDATEYR ='EVENT DATE - YEAR' HHDATEMM ='EVENT DATE - MONTH' MPCELIG ='MPC ELIGIBILITY FLAG' SELFAGEN ='DOES PROVIDER WORK FOR AGENCY OR SELF' HHTYPE ='HOME HEALTH EVENT TYPE' CNA_M18 ='TYPE OF PROF HLTH CARE WRKR - CERT NURSE ASST' DIETICN_M18 ='TYPE OF PROF HLTH CARE WRKR - DIETITIAN/NUTRT' IVTHP_M18 ='TYPE OF PROF HLTH CARE WRKR - IV OR INFUSION THERAPIST' MEDLDOC_M18 ='TYPE OF PROF HLTH CARE WRKR - MEDICAL DOCTOR' NURPRACT_M18 ='TYPE OF PROF HLTH CARE WRKR - NURSE/PRACTR' OCCUPTHP_M18 ='TYPE OF PROF HLTH CARE WRKR - OCCUPATIONAL THERAP' PHYSLTHP_M18 ='TYPE OF PROF HLTH CARE WRKR - PHYSICAL THERAPY' RESPTHP_M18 ='TYPE OF PROF HLTH CARE WRKR - RESPIRA THERAPY' SOCIALW_M18 ='TYPE OF PROF HLTH CARE WRKR - SOCIAL WORKER' SPEECTHP_M18 ='TYPE OF HLTH CARE WRKR - SPEECH THERAPY' HCarWrkrProfNone_M18 ='NONE OF THE LISTED PROFESSIONAL HOME HEALTH PROVIDERS' COMPANN_M18 ='TYPE OF NON PROF HLTH CARE WRKR - COMPANION' HMEMAKER_M18 ='TYPE OF NON PROF HLTH CARE WRKR - HOMEMAKER/HOUSE CLEANER' HHAIDE_M18 ='TYPE OF NON PROF HLTH CARE WRKR - HOME HEALTH / CARE AIDE' HOSPICE_M18 ='TYPE OF NON PROF HLTH CARE WRKR - HOSPICE WORKER' NURAIDE_M18 ='TYPE OF NON PROF HLTH CARE WRKR - NURSE S AIDE' PERSONAL_M18 ='TYPE OF NON PROF HLTH CARE WRKR - PERS CARE ATTDT' HCarWrkrNonProfNone_M18 ='NONE OF THE LISTED NON PROFESSIONAL HOME HEALTH PROVIDERS' VSTRELCN ='ANY HH CARE SVCE RELATED TO HLTH COND' FREQCY ='PROVIDER HELPED EVERY WEEK/SOME WEEKS' DAYSPWK ='# DAYS / WEEK PROVIDER CAME' DAYSPMO ='# DAYS / MONTH PROVIDER CAME' SAMESVCE_M18 ='ANY OTH MONS PER RECEIVED SAME SERVICES' HHDAYS ='DAYS PER MONTH IN HOME HEALTH, 2018' HHSF18X ='AMOUNT PAID, FAMILY (IMPUTED)' HHMR18X ='AMOUNT PAID, MEDICARE (IMPUTED)' HHMD18X ='AMOUNT PAID, MEDICAID (IMPUTED)' HHPV18X ='AMOUNT PAID, PRIVATE INSURANCE (IMPUTED)' HHVA18X ='AMOUNT PAID, VETERANS/CHAMPVA(IMPUTED)' HHTR18X ='AMOUNT PAID, TRICARE(IMPUTED)' HHOF18X ='AMOUNT PAID, OTHER FEDERAL (IMPUTED)' HHSL18X ='AMOUNT PAID, STATE & LOCAL GOV (IMPUTED)' HHWC18X ='AMOUNT PAID, WORKERS COMP (IMPUTED)' HHOR18X ='AMOUNT PAID, OTHER PRIVATE (IMPUTED)' HHOU18X ='AMOUNT PAID, OTHER PUBLIC (IMPUTED)' HHOT18X ='AMOUNT PAID, OTHER INSURANCE (IMPUTED)' HHXP18X ='SUM OF HHSF18X - HHOT18X (IMPUTED)' HHTC18X ='HHLD REPORTED TOTAL CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT18F ='EXPENDITURE FILE PERSON WEIGHT, 2018' VARSTR ='VARIANCE ESTIMATION STRATUM, 2018' VARPSU ='VARIANCE ESTIMATION PSU, 2018' ; * VALUE STATEMENTS; VALUE CNAF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE COMPANNF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE DAYSPMOF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 31 = '1 - 31' ; VALUE DAYSPWKF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 7 = '1 - 7' ; VALUE DIETICNF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE DUID OTHER = 'VALID ID' ; VALUE $DUPERS OTHER = 'VALID ID' ; VALUE EVENTRF 1 = 'ROUND 1' 2 = 'ROUND 2' 3 = 'ROUND 3' 4 = 'ROUND 4' 5 = 'ROUND 5' ; VALUE $EVNTIDX OTHER = 'VALID ID' ; VALUE FREQCYF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 EVERY WEEK' 2 = '2 SOME WEEKS' 3 = '3 ONLY CAME ONCE' ; VALUE HCARWRKRNONPROFNONEF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE HCARWRKRPROFNONEF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE HHAIDEF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE HHDAYSF -15 = '-15 CANNOT BE COMPUTED' 0 = '0' 1 - 31 = '1 - 31' ; VALUE HHDTEMMF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 12 = '1 - 12 MONTH' ; VALUE HHDTEYRF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 2018 = '2018' ; VALUE HHMD18XF (DEFAULT=40) -1 = '-1 INAPPLICABLE' 0 = '0' 1.5 - 415 = '$1.50 - $415.00' 415.01 - 944 = '$415.01 - $944.00' 944.01 - 2066 = '$944.01 - $2,066.00' 2066.01 - 85000 = '$2,066.01 - $85,000.00' ; VALUE HHMR18XF (DEFAULT=40) -1 = '-1 INAPPLICABLE' 0 = '0' 1.33 - 400 = '$1.33 - $400.00' 400.01 - 1064.55 = '$400.01 - $1,064.55' 1064.56 - 1985 = '$1,064.56 - $1,985.00' 1985.01 - 16757 = '$1,985.01 - $16,757.00' ; VALUE HHOF18XF (DEFAULT=40) -1 = '-1 INAPPLICABLE' 0 = '0' 131 - 163 = '$131.00 - $163.00' ; VALUE HHOR18XF (DEFAULT=40) -1 = '-1 INAPPLICABLE' 0 = '0' 5.6 - 1569 = '$5.60 - $1,569.00' ; VALUE HHOT18XF (DEFAULT=40) -1 = '-1 INAPPLICABLE' 0 = '0' 52 - 88 = '$52.00 - $88.00' 88.01 - 250 = '$88.01 - $250.00' 250.01 - 1188 = '$250.01 - $1,188.00' 1188.01 - 1985 = '$1,188.01 - $1,985.00' ; VALUE HHOU18XF (DEFAULT=40) -1 = '-1 INAPPLICABLE' 0 = '0' 120 - 1047.25 = '$120.00 - $1,047.25' 1047.26 - 2000.5 = '$1,047.26 - $2,000.50' 2000.51 - 3365.75 = '$2,000.51 - $3,365.75' 3365.76 - 4705 = '$3,365.76 - $4,705.00' ; VALUE HHPV18XF (DEFAULT=40) -1 = '-1 INAPPLICABLE' 0 = '0' 0.75 - 131 = '$0.75 - $131.00' 131.01 - 600 = '$131.01 - $600.00' 600.01 - 1400 = '$600.01 - $1,400.00' 1400.01 - 11630 = '$1,400.01 - $11,630.00' ; VALUE HHSF18XF (DEFAULT=40) -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 100 = '$1.00 - $100.00' 100.01 - 288 = '$100.01 - $288.00' 288.01 - 850 = '$288.01 - $850.00' 850.01 - 5600 = '$850.01 - $5,600.00' ; VALUE HHSL18XF (DEFAULT=40) -1 = '-1 INAPPLICABLE' 0 = '0' 13 - 140 = '$13.00 - $140.00' 140.01 - 217 = '$140.01 - $217.00' 217.01 - 513 = '$217.01 - $513.00' 513.01 - 5140 = '$513.01 - $5,140.00' ; VALUE HHTC18XF (DEFAULT=40) -1 = '-1 INAPPLICABLE' 0 = '0' 3 - 421.98 = '$3.00 - $421.98' 421.99 - 1047 = '$421.99 - $1,047.00' 1047.01 - 2183 = '$1,047.01 - $2,183.00' 2183.01 - 85000 = '$2,183.01 - $85,000.00' ; VALUE HHTR18XF (DEFAULT=40) -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 49 = '$1.00 - $49.00' ; VALUE HHTYPEF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 FRIEND/NEIGHBOR' 2 = '2 RELATIVE' 3 = '3 VOLUNTEER' 4 = '4 OTHER - PAID' 5 = '5 VOLUNTEERED: MEAL SERVICE DELIVERY' ; VALUE HHVA18XF (DEFAULT=40) -1 = '-1 INAPPLICABLE' 0 = '0' 8.75 - 304 = '$8.75 - $304.00' 304.01 - 700 = '$304.01 - $700.00' 700.01 - 1261.5 = '$700.01 - $1,261.50' 1261.51 - 5201 = '$1,261.51 - $5,201.00' ; VALUE HHWC18XF -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 99999999.99 = '.01 - 99999999.99' ; VALUE HHXP18XF (DEFAULT=40) -1 = '-1 INAPPLICABLE' 0 = '0' 3 - 370 = '$3.00 - $370.00' 370.01 - 900 = '$370.01 - $900.00' 900.01 - 1939 = '$900.01 - $1,939.00' 1939.01 - 85000 = '$1,939.01 - $85,000.00' ; VALUE HMEMAKEF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE HOSPICEF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE IMPFLAGF -1 = '-1 INAPPLICABLE' 0 = '0 NOT ELIGIBLE FOR IMPUTATION' 1 = '1 COMPLETE HC DATA' 2 = '2 COMPLETE MPC DATA' 3 = '3 FULLY IMPUTED' 4 = '4 PARTIALLY IMPUTED' 5 = '5 CAPITATION IMPUTATION' ; VALUE IVTHPF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE MEDLDOCF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE MPCELIGF 1 = '1 MPC ELIGIBLE - AGENCY' 2 = '2 NOT MPC ELIGIBLE - PAID INDEP' 3 = '3 NOT MPC ELIG - INFORMAL CARE' ; VALUE NURAIDEF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE NURPRACF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE OCCUPTHF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE PANELF 22 = 'PANEL 22' 23 = 'PANEL 23' ; VALUE PERSONAF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE PERWT18F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 643.704282 - 82291.584586 = '643.704282 - 82291.584586 WEIGHT' ; VALUE PHYSLTHF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE PID OTHER = 'VALID ID' ; VALUE RESPTHPF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE SAMESVCF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE SELFAGEF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 WORK FOR AGENCY, HOSP, NURS HOME' 2 = '2 WORK FOR SELF' ; VALUE SOCIALWF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE SPEECTHF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE VARPSUF (DEFAULT=40) 1 - 3 = '1 - 3' ; VALUE VARSTRF (DEFAULT=40) 2001 - 2117 = '2001 - 2117' ; VALUE VSTRELCF -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ;