Skip to content

abiener/MEPS-summary-tables

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MEPS summary tables

This repository contains the code needed to create the interactive Medical Expenditure Panel Survey (MEPS) Household Component summary tables found on the MEPS website. The code is provided for researchers and developers interested in creating similar interactive tables, or in customizing the MEPS summary tables for personal use. The tables created from the code in this repository provide frequently used summary statistics at the national level for:

  • Health care utilization, expenditures, and population characteristics
  • Health insurance coverage
  • Accessibility and quality of care
  • Medical conditions
  • Prescribed drug purchases

To run the tables on your local computer, first download and install RStudio. Then, install and load the Shiny package using the following code:

install.packages("shiny")
library(shiny)

Next, open the R programs from the apps folder in RStudio, highlight the code and click Run or Run App (if available). Only one Shiny program can be run at a time in RStudio. Note that local links in the navigation bar will not work as expected when using Shiny to run the tables (an external server is needed).

Code

The R Programming language (version 3.3.3) was used as the statistical software to create survey statistics from raw MEPS data files and as a templating engine to build individual HTML files. RStudio's Shiny package was used as a local server to run the interactive tables.

The code for creating these tables is organized as follows:

  • mepstrends: Main directory containing all components needed to run the summary tables on a server (css, html, js, and json)
  • apps: Supplemental folder of RStudio Shiny apps for running the tables locally (no external server needed)
  • code: Folder containing snippets of R and SAS codes for creating tables
  • html: HTML templates needed to build index.html files
  • r: functions, dictionaries, notes, and R code for creating tabular data, converting tables to JSON data, and building index.html files
  • tables: Complete set of summary tables organized by table category, year, and statistic
  • _check: Supplemental programs for comparing SAS and R codes displayed on the web tables with tables stored in the tables folder

Survey background

The Medical Expenditure Panel Survey (MEPS), which began in 1996, is a set of large-scale surveys of families and individuals, their medical providers (doctors, hospitals, pharmacies, etc.), and employers across the United States. The MEPS Household Component (MEPS-HC) survey collects information from families and individuals pertaining to medical expenditures, conditions, and events; demographics (e.g., age, ethnicity, and income); health insurance coverage; access to care; health status; and jobs held. The MEPS-HC is designed to produce national and regional estimates of the health care use, expenditures, sources of payment, and insurance coverage of the U.S. civilian noninstitutionalized population. The sample design of the survey includes weighting, stratification, clustering, multiple stages of selection, and disproportionate sampling.

Public Domain Disclaimer

The MEPS summary tables application is a U.S. Government work developed by the Agency for Healthcare Research and Quality (AHRQ). This application is in the public domain and may be used, reproduced, modified, built upon and distributed in the United States without further permission from AHRQ. Reproduction and distribution for a fee is prohibited. It is requested that in any subsequent use AHRQ be given appropriate acknowledgment. The use of the HHS or AHRQ seal or logo without prior written authorization is expressly prohibited by law. Although these data have been processed successfully on a computer system at AHRQ, no warranty expressed or implied is made regarding the accuracy or utility of the data on any other system or for general or scientific purposes, nor shall the act of distribution constitute any such warranty. AHRQ has relinquished control of the information and no longer has responsibility to protect the integrity, confidentiality or availability of the information. Any reference to specific commercial products, processes, or services by service mark, trademark, manufacturer, or otherwise, does not constitute or imply their endorsement, recommendation or favoring by AHRQ. AHRQ reserves the right to assert copyright protection internationally.

About

Code for creating the interactive MEPS summary tables

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • SAS 55.9%
  • R 35.7%
  • HTML 6.1%
  • JavaScript 1.9%
  • Other 0.4%