SAS User File for H213H 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 (H213H.SSP) or the ASCII data file (H213H.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\H213H.SSP'; PROC CIMPORT DATA=PUFLIB.H213H 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.H213H; TITLE 'List of Variables in MEPS H213H SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H213H (OBS=20); TITLE 'First 20 Observations in MEPS H213H 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) H213H 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 H213H.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC CIMPORT runs successfully. 4) The SAS transport file H213H.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 H213H.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 H213H.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\H213H.DAT'; DATA PUFLIB.H213H; INFILE IN1 LRECL=205; 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 (H213H). In the example, after the successful completion of the DATA step, a PC file named H213H.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 (205 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 H213H.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., 205 for H213H.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (207 for H213H.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 (205 for H213H.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 (H213H.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.H213H; 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 H213H.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=205; 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 HHSF19X 8.2 @107 HHMR19X 8.2 @115 HHMD19X 8.2 @123 HHPV19X 8.2 @131 HHVA19X 7.2 @138 HHTR19X 7.2 @145 HHOF19X 5.2 @150 HHSL19X 8.2 @158 HHWC19X 7.2 @165 HHOT19X 7.2 @172 HHXP19X 8.2 @180 HHTC19X 8.2 @188 IMPFLAG 1.0 @189 PERWT19F 12.6 @201 VARSTR 4.0 @205 VARPSU 1.0 ; * FORMAT STATEMENTS; FORMAT DUID DUIDF. PID PIDF. DUPERSID $DUPERSIDF. EVNTIDX $EVNTIDXF. 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. HHSF19X HHSF19XF. HHMR19X HHMR19XF. HHMD19X HHMD19XF. HHPV19X HHPV19XF. HHVA19X HHVA19XF. HHTR19X HHTR19XF. HHOF19X HHOF19XF. HHSL19X HHSL19XF. HHWC19X HHWC19XF. HHOT19X HHOT19XF. HHXP19X HHXP19XF. HHTC19X HHTC19XF. IMPFLAG IMPFLAGF. PERWT19F PERWT19F. 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, 2019" HHSF19X ="AMOUNT PAID, FAMILY (IMPUTED)" HHMR19X ="AMOUNT PAID, MEDICARE (IMPUTED)" HHMD19X ="AMOUNT PAID, MEDICAID (IMPUTED)" HHPV19X ="AMOUNT PAID, PRIVATE INSURANCE (IMPUTED)" HHVA19X ="AMOUNT PAID, VETERANS/CHAMPVA(IMPUTED)" HHTR19X ="AMOUNT PAID, TRICARE(IMPUTED)" HHOF19X ="AMOUNT PAID, OTHER FEDERAL (IMPUTED)" HHSL19X ="AMOUNT PAID, STATE & LOCAL GOV (IMPUTED)" HHWC19X ="AMOUNT PAID, WORKERS COMP (IMPUTED)" HHOT19X ="AMOUNT PAID, OTHER INSURANCE (IMPUTED)" HHXP19X ="SUM OF HHSF19X - HHOT19X (IMPUTED)" HHTC19X ="HHLD REPORTED TOTAL CHARGE (IMPUTED)" IMPFLAG ="IMPUTATION STATUS" PERWT19F ="EXPENDITURE FILE PERSON WEIGHT, 2019" VARSTR ="VARIANCE ESTIMATION STRATUM, 2019" VARPSU ="VARIANCE ESTIMATION PSU, 2019" ; * 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 DUIDF 2320013 - 2469687 = "2320013 - 2469687 DUID" ; VALUE $DUPERSIDF '2320013101' - '2469687102' = "2320013101 - 2469687102 DUPERSID" ; VALUE EVENTRF 1 = "ROUND 1" 2 = "ROUND 2" 3 = "ROUND 3" 4 = "ROUND 4" 5 = "ROUND 5" ; VALUE $EVNTIDXF '2320013101201801' - '2469687102001301' = "2320013101201801 - 2469687102001301 EVNTIDX" ; 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" 2019 = "2019" ; VALUE HHMD19XF -1 = "-1 INAPPLICABLE" 0 = "0" 8.68 - 540 = "$8.68 - $540.00" 540.01 - 1080 = "$540.01 - $1,080.00" 1080.01 - 2082.68 = "$1,080.01 - $2,082.68" 2082.69 - 20168.09 = "$2,082.69 - $20,168.09" ; VALUE HHMR19XF -1 = "-1 INAPPLICABLE" 0 = "0" 3.5 - 356 = "$3.50 - $356.00" 356.01 - 1179 = "$356.01 - $1,179.00" 1179.01 - 2079.5 = "$1,179.01 - $2,079.50" 2079.51 - 14492 = "$2,079.51 - $14,492.00" ; VALUE HHOF19XF -1 = "-1 INAPPLICABLE" 0 = "0" ; VALUE HHOT19XF -1 = "-1 INAPPLICABLE" 0 = "0" 34.27 - 308 = "$34.27 - $308.00" 308.01 - 596 = "$308.01 - $596.00" 596.01 - 760 = "$596.01 - $760.00" 760.01 - 8457.4 = "$760.01 - $8,457.40" ; VALUE HHPV19XF -1 = "-1 INAPPLICABLE" 0 = "0" 5.62 - 59 = "$5.62 - $59.00" 59.01 - 175 = "$59.01 - $175.00" 175.01 - 1174.25 = "$175.01 - $1,174.25" 1174.26 - 11250 = "$1,174.26 - $11,250.00" ; VALUE HHSF19XF -1 = "-1 INAPPLICABLE" 0 = "0" 1 - 100 = "$1.00 - $100.00" 100.01 - 200 = "$100.01 - $200.00" 200.01 - 1100 = "$200.01 - $1,100.00" 1100.01 - 10000 = "$1,100.01 - $10,000.00" ; VALUE HHSL19XF -1 = "-1 INAPPLICABLE" 0 = "0" 47 - 328 = "$47.00 - $328.00" 328.01 - 694 = "$328.01 - $694.00" 694.01 - 938 = "$694.01 - $938.00" 938.01 - 11079 = "$938.01 - $11,079.00" ; VALUE HHTC19XF -1 = "-1 INAPPLICABLE" 0 = "0" 11 - 475 = "$11.00 - $475.00" 475.01 - 1032 = "$475.01 - $1,032.00" 1032.01 - 2096 = "$1,032.01 - $2,096.00" 2096.01 - 79875.55 = "$2,096.01 - $79,875.55" ; VALUE HHTR19XF -1 = "-1 INAPPLICABLE" 0 = "0" 15 - 3044 = "$15.00 - $3,044.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 HHVA19XF -1 = "-1 INAPPLICABLE" 0 = "0" 87 - 246 = "$87.00 - $246.00" 246.01 - 665 = "$246.01 - $665.00" 665.01 - 939.6 = "$665.01 - $939.60" 939.61 - 3650 = "$939.61 - $3,650.00" ; VALUE HHWC19XF -1 = "-1 INAPPLICABLE" 0 = "0" 2 - 2896 = "$2.00 - $2,896.00" ; VALUE HHXP19XF -1 = "-1 INAPPLICABLE" 0 = "0" 11 - 360 = "$11.00 - $360.00" 360.01 - 913 = "$360.01 - $913.00" 913.01 - 1848.5 = "$913.01 - $1,848.50" 1848.51 - 20168.09 = "$1,848.51 - $20,168.09" ; 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 23 = "PANEL 23" 24 = "PANEL 24" ; VALUE PERSONAF -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE PERWT19F 0 = "0.000000 WEIGHT" 633.006358 - 59470.182867 = "633.006358 - 59470.182867 WEIGHT" ; VALUE PHYSLTHF -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE PIDF 101 - 302 = "101 - 302 PID" ; 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 1 - 6 = "1 - 6" ; VALUE VARSTRF 2001 - 2117 = "2001 - 2117" ; VALUE VSTRELCF -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ;