/*****************************************************************************/ /* 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="H213C.DAT" /LRECL=149. DATA LIST FILE=INFILE / DUID 1-7 PID 8-10 DUPERSID 11-20 (A) EVNTIDX 21-36 (A) EVENTRN 37-37 PANEL 38-39 OMTYPE_M18 40-40 OMSF19X 41-48 (2) OMMR19X 49-56 (2) OMMD19X 57-64 (2) OMPV19X 65-72 (2) OMVA19X 73-79 (2) OMTR19X 80-87 (2) OMOF19X 88-94 (2) OMSL19X 95-101 (2) OMWC19X 102-108 (2) OMOT19X 109-115 (2) OMXP19X 116-123 (2) OMTC19X 124-131 (2) IMPFLAG 132-132 PERWT19F 133-144 (6) VARSTR 145-148 VARPSU 149-149 . VARIABLE LABEL DUID "PANEL # + ENCRYPTED DU IDENTIFIER" PID "PERSON NUMBER" DUPERSID "PERSON ID (DUID + PID)" EVNTIDX "EVENT ID" EVENTRN "EVENT ROUND NUMBER" PANEL "PANEL NUMBER" OMTYPE_M18 "OTHER MEDICAL EXPENSE TYPE" OMSF19X "AMOUNT PAID, FAMILY (IMPUTED)" OMMR19X "AMOUNT PAID, MEDICARE (IMPUTED)" OMMD19X "AMOUNT PAID, MEDICAID (IMPUTED)" OMPV19X "AMOUNT PAID, PRIVATE INSURANCE (IMPUTED)" OMVA19X "AMOUNT PAID, VETERANS/CHAMPVA(IMPUTED)" OMTR19X "AMOUNT PAID, TRICARE(IMPUTED)" OMOF19X "AMOUNT PAID, OTHER FEDERAL (IMPUTED)" OMSL19X "AMOUNT PAID, STATE & LOCAL GOV (IMPUTED)" OMWC19X "AMOUNT PAID, WORKERS COMP (IMPUTED)" OMOT19X "AMOUNT PAID, OTHER INSURANCE (IMPUTED)" OMXP19X "SUM OF OMSF19X-OMOT19X (IMPUTED)" OMTC19X "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 LABELS EVENTRN 1 "ROUND 1" 2 "ROUND 2" 3 "ROUND 3" 4 "ROUND 4" 5 "ROUND 5" / IMPFLAG -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" / OMMD19X -1 "-1 INAPPLICABLE" 0 "0" / OMMR19X -1 "-1 INAPPLICABLE" 0 "0" / OMOF19X -1 "-1 INAPPLICABLE" 0 "0" / OMOT19X -1 "-1 INAPPLICABLE" 0 "0" / OMPV19X -1 "-1 INAPPLICABLE" 0 "0" / OMSF19X -1 "-1 INAPPLICABLE" 0 "0" / OMSL19X -1 "-1 INAPPLICABLE" 0 "0" / OMTC19X -1 "-1 INAPPLICABLE" 0 "0" / OMTR19X -1 "-1 INAPPLICABLE" 0 "0" / OMTYPE_M18 -1 "-1 INAPPLICABLE" -7 "-7 REFUSED" -8 "-8 DK" 1 "1 GLASSES OR CONTACT LENSES" 2 "2 AMBULANCE SERVICES" 3 "3 DISPOSABLE SUPPLIES" 4 "4 LONG TERM MEDICAL EQUIPMENT" / OMVA19X -1 "-1 INAPPLICABLE" 0 "0" / OMWC19X -1 "-1 INAPPLICABLE" 0 "0" / OMXP19X -1 "-1 INAPPLICABLE" 0 "0" / PANEL 23 "PANEL 23" 24 "PANEL 24" . EXECUTE.