/*****************************************************************************/ /* SPSS User Files are being provided for the convenience of analysts who */ /* may wish to use SPSS to analyze the MEPS data. However, users are */ /* cautioned that SPSS does not currently have the capability to produce */ /* appropriate standard errors for estimates from a survey with a complex */ /* sample design like the Medical Expenditure Panel Survey (MEPS). The */ /* annual national probability sample of households selected for the MEPS */ /* is a subsample of those participating in the National Health Interview */ /* Survey (NHIS) for the previous calendar year. The NHIS, an ongoing */ /* general health survey of the civilian noninstitutionalized population, */ /* is conducted by the National Center for Health Statistics, Centers for */ /* Disease Control and Prevention. The NHIS sample design, and thus that */ /* of the MEPS, uses complex sampling techniques including */ /* stratification, clustering, and differential sampling rates for the */ /* oversampling of selected subgroups of the population. Because of this */ /* sampling structure, software that accounts for this complex sample */ /* design must be used. Without the use of appropriate software that */ /* accounts for the complex sample design of the MEPS in conjunction with */ /* the survey's sampling weights (reflecting the survey's sample */ /* selection probabilities and nonresponse and other adjustments), the */ /* estimated standard errors of survey point estimates will generally be */ /* underestimated, and, thus, the inferential conclusions in an analysis */ /* (descriptive or analytical) may be misleading. It is recommended that */ /* sample survey software be used to analyze the MEPS data. Software for */ /* analysis of complex survey data include, for example, SUDAAN (Research */ /* Triangle Institute), STATA (Stata Corporation), VPLX (U.S. Bureau of */ /* the Census), and WESVAR (Westat, Inc.). A more comprehensive summary */ /* of software for the analysis of data from surveys with complex sample */ /* designs can be accessed through the website for the American */ /* Statistical Association's Survey Research Methods Section. Users may */ /* also reference the Agency for Healthcare Research and Quality (AHRQ) */ /* web document "Computing Standard Errors for Medical Expenditure Panel */ /* Survey (MEPS) Estimates." */ /*****************************************************************************/ FILE HANDLE INFILE NAME="H189.DAT" /LRECL=51. DATA LIST FILE=INFILE / HOMEIDX 1-7 (A) DUID 8-12 (A) PANEL 13-14 (A) FSOUT42 15-16 FSLAST42 17-18 FSAFRD42 19-20 FSSKIP42 21-22 FSSKDY42 23-24 FSLESS42 25-26 FSHGRY42 27-28 FSWTLS42 29-30 FSNEAT42 31-32 FSNEDY42 33-34 FSWT42 35-46 (6) VARSTR 47-50 VARPSU 51-51 . VARIABLE LABEL HOMEIDX 'HOME ID NUMBER (DUID + RU + ROUND)' DUID 'DWELLING UNIT ID' PANEL 'PANEL' FSOUT42 'HOW OFTEN HAVE YOU RUN OUT OF FOOD' FSLAST42 'HOW OFTEN DID FOOD NOT LAST' FSAFRD42 'HOW OFTEN NOT AFFORD BALANCED MEALS' FSSKIP42 'DID YOU EVER SKIP MEALS' FSSKDY42 'HOW MANY DAYS WERE MEALS SKIPPED' FSLESS42 'DID YOU EVER EAT LESS' FSHGRY42 'DID YOU EVER GO HUNGRY' FSWTLS42 'LOW FOOD MONEY CAUSE WEIGHT LOSS' FSNEAT42 'DID YOU EVER NOT EAT' FSNEDY42 'HOW MANY DAYS DID YOU NOT EAT' FSWT42 'FOOD SECURITY WEIGHT' VARSTR 'VARIANCE ESTIMATION STRATUM - 2016' VARPSU 'VARIANCE ESTIMATION PSU - 2016' . VALUE LABELS FSAFRD42 -1 '-1 INAPPLICABLE' -7 '-7 REFUSED' -8 '-8 DK' -9 '-9 NOT ASCERTAINED' 1 '1 OFTEN TRUE' 2 '2 SOMETIMES TRUE' 3 '3 NEVER TRUE' / FSHGRY42 -1 '-1 INAPPLICABLE' -7 '-7 REFUSED' -8 '-8 DK' -9 '-9 NOT ASCERTAINED' 1 '1 YES' 2 '2 NO' / FSLAST42 -1 '-1 INAPPLICABLE' -7 '-7 REFUSED' -8 '-8 DK' -9 '-9 NOT ASCERTAINED' 1 '1 OFTEN TRUE' 2 '2 SOMETIMES TRUE' 3 '3 NEVER TRUE' / FSLESS42 -1 '-1 INAPPLICABLE' -7 '-7 REFUSED' -8 '-8 DK' -9 '-9 NOT ASCERTAINED' 1 '1 YES' 2 '2 NO' / FSNEAT42 -1 '-1 INAPPLICABLE' -7 '-7 REFUSED' -8 '-8 DK' -9 '-9 NOT ASCERTAINED' 1 '1 YES' 2 '2 NO' / FSNEDY42 -1 '-1 INAPPLICABLE' -7 '-7 REFUSED' -8 '-8 DK' -9 '-9 NOT ASCERTAINED' / FSOUT42 -1 '-1 INAPPLICABLE' -7 '-7 REFUSED' -8 '-8 DK' -9 '-9 NOT ASCERTAINED' 1 '1 OFTEN TRUE' 2 '2 SOMETIMES TRUE' 3 '3 NEVER TRUE' / FSSKDY42 -1 '-1 INAPPLICABLE' -7 '-7 REFUSED' -8 '-8 DK' -9 '-9 NOT ASCERTAINED' / FSSKIP42 -1 '-1 INAPPLICABLE' -7 '-7 REFUSED' -8 '-8 DK' -9 '-9 NOT ASCERTAINED' 1 '1 YES' 2 '2 NO' / FSWTLS42 -1 '-1 INAPPLICABLE' -7 '-7 REFUSED' -8 '-8 DK' -9 '-9 NOT ASCERTAINED' 1 '1 YES' 2 '2 NO' / PANEL '20' 'Panel 20' '21' 'Panel 21' . EXECUTE.