Medical Expenditure Panel Survey (MEPS)

Build Status Build status

The Medical Expenditure Panel Survey’s Household Component (MEPS-HC) captures person-level medical expenditures by payor and type of service with more detail than any other publicly-available data set.

  • The annual consolidated file contains one row per individual within each sampled household. Other available mergeable tables contain one record per medical event, one record per job, one record per insurance held.

  • A complex sample survey designed to generalize to the civilian non-institutionalized population of the United States.

  • Released annually since 1996.

  • Administered by the Agency for Healthcare Research and Quality.

Simplified Download and Importation

The R lodown package easily downloads and imports all available MEPS microdata by simply specifying "meps" with an output_dir = parameter in the lodown() function. Depending on your internet connection and computer processing speed, you might prefer to run this step overnight.

library(lodown)
lodown( "meps" , output_dir = file.path( path.expand( "~" ) , "MEPS" ) )

lodown also provides a catalog of available microdata extracts with the get_catalog() function. After requesting the MEPS catalog, you could pass a subsetted catalog through the lodown() function in order to download and import specific extracts (rather than all available extracts).

library(lodown)
# examine all available MEPS microdata files
meps_cat <-
    get_catalog( "meps" ,
        output_dir = file.path( path.expand( "~" ) , "MEPS" ) )

# 2015 only
meps_cat <- subset( meps_cat , year == 2015 )
# download the microdata to your local computer
meps_cat <- lodown( "meps" , meps_cat )

Analysis Examples with the survey library  

Construct a complex sample survey design:

library(survey)

meps_cons_df <- 
    readRDS( file.path( path.expand( "~" ) , "MEPS" , 
        "2015/full year consolidated.rds" ) )

meps_brr <- 
    readRDS( file.path( path.expand( "~" ) , "MEPS" , 
        "meps 1996-2015 replicates for variance estimation.rds" ) )

meps_brr <- 
    meps_brr[ , 
        c( "dupersid" , "panel" , 
            names( meps_brr )[ !( names( meps_brr ) %in% names( meps_cons_df ) ) ] 
        )
    ]

meps_df <- merge( meps_cons_df , meps_brr )

stopifnot( nrow( meps_df ) == nrow( meps_cons_df ) )

meps_design <-
    svrepdesign(
        data = meps_df ,
        weights = ~ perwt15f ,
        type = "BRR" ,
        combined.weights = FALSE ,
        repweights = "brr[1-9]+" ,
        mse = TRUE
    )

Variable Recoding

Add new columns to the data set:

meps_design <- 
    update( 
        meps_design , 
        
        one = 1 ,
        
        insured_december_31st = ifelse( ins15x %in% 1:2 , as.numeric( ins15x == 1 ) , NA )
        
    )

Unweighted Counts

Count the unweighted number of records in the survey sample, overall and by groups:

sum( weights( meps_design , "sampling" ) != 0 )

svyby( ~ one , ~ region15 , meps_design , unwtd.count )

Weighted Counts

Count the weighted size of the generalizable population, overall and by groups:

svytotal( ~ one , meps_design )

svyby( ~ one , ~ region15 , meps_design , svytotal )

Descriptive Statistics

Calculate the mean (average) of a linear variable, overall and by groups:

svymean( ~ totexp15 , meps_design )

svyby( ~ totexp15 , ~ region15 , meps_design , svymean )

Calculate the distribution of a categorical variable, overall and by groups:

svymean( ~ sex , meps_design )

svyby( ~ sex , ~ region15 , meps_design , svymean )

Calculate the sum of a linear variable, overall and by groups:

svytotal( ~ totexp15 , meps_design )

svyby( ~ totexp15 , ~ region15 , meps_design , svytotal )

Calculate the weighted sum of a categorical variable, overall and by groups:

svytotal( ~ sex , meps_design )

svyby( ~ sex , ~ region15 , meps_design , svytotal )

Calculate the median (50th percentile) of a linear variable, overall and by groups:

svyquantile( ~ totexp15 , meps_design , 0.5 )

svyby( 
    ~ totexp15 , 
    ~ region15 , 
    meps_design , 
    svyquantile , 
    0.5 ,
    ci = TRUE ,
    keep.var = TRUE 
)

Estimate a ratio:

svyratio( 
    numerator = ~ totmcd15 , 
    denominator = ~ totexp15 , 
    meps_design 
)

Subsetting

Restrict the survey design to seniors:

sub_meps_design <- subset( meps_design , agelast >= 65 )

Calculate the mean (average) of this subset:

svymean( ~ totexp15 , sub_meps_design )

Measures of Uncertainty

Extract the coefficient, standard error, confidence interval, and coefficient of variation from any descriptive statistics function result, overall and by groups:

this_result <- svymean( ~ totexp15 , meps_design )

coef( this_result )
SE( this_result )
confint( this_result )
cv( this_result )

grouped_result <-
    svyby( 
        ~ totexp15 , 
        ~ region15 , 
        meps_design , 
        svymean 
    )
    
coef( grouped_result )
SE( grouped_result )
confint( grouped_result )
cv( grouped_result )

Calculate the degrees of freedom of any survey design object:

degf( meps_design )

Calculate the complex sample survey-adjusted variance of any statistic:

svyvar( ~ totexp15 , meps_design )

Include the complex sample design effect in the result for a specific statistic:

# SRS without replacement
svymean( ~ totexp15 , meps_design , deff = TRUE )

# SRS with replacement
svymean( ~ totexp15 , meps_design , deff = "replace" )

Compute confidence intervals for proportions using methods that may be more accurate near 0 and 1. See ?svyciprop for alternatives:

svyciprop( ~ insured_december_31st , meps_design ,
    method = "likelihood" , na.rm = TRUE )

Regression Models and Tests of Association

Perform a design-based t-test:

svyttest( totexp15 ~ insured_december_31st , meps_design )

Perform a chi-squared test of association for survey data:

svychisq( 
    ~ insured_december_31st + sex , 
    meps_design 
)

Perform a survey-weighted generalized linear model:

glm_result <- 
    svyglm( 
        totexp15 ~ insured_december_31st + sex , 
        meps_design 
    )

summary( glm_result )

Analysis Examples with srvyr  

The R srvyr library calculates summary statistics from survey data, such as the mean, total or quantile using dplyr-like syntax. srvyr allows for the use of many verbs, such as summarize, group_by, and mutate, the convenience of pipe-able functions, the tidyverse style of non-standard evaluation and more consistent return types than the survey package. This vignette details the available features. As a starting point for MEPS users, this code replicates previously-presented examples:

library(srvyr)
meps_srvyr_design <- as_survey( meps_design )

Calculate the mean (average) of a linear variable, overall and by groups:

meps_srvyr_design %>%
    summarize( mean = survey_mean( totexp15 ) )

meps_srvyr_design %>%
    group_by( region15 ) %>%
    summarize( mean = survey_mean( totexp15 ) )

Replication Example