Overview
Examples
Restricted-use data
Terms of use
References
Update history
This repository contains public use data for the Illinois Workplace Wellness Study, a randomized controlled trial run by Damon Jones, David Molitor, and Julian Reif. These data can be used for research, teaching, and replicating published results. For information about the study, publications, the research team, pre-analysis plans, original survey instruments, and more, please visit the study website.
The following diagram summarizes the organization of the repository.
illinois-wellness-data # Public-use project folder
├── data # Public-use data
| ├── codebooks # Codebooks
| ├── csv # Datasets (CSV format)
| └── stata # Datasets (Stata format)
├── documentation # Public-use data documentation
└── replications # Replication folders
├── jamaim_2020 # Reif et al. (2020)
└── qje_2019 # Jones, Molitor, and Reif (2019)
The documentation folder describes the datasets. The replications folder provides Stata code that uses the public use data to replicate results for the following publications:
* Stata code
use "https://reifjulian.github.io/illinois-wellness-data/data/stata/claims.dta", clear
reg spend_0816_0717 treat [aw=covg_0816_0717], robust
# R code
library(haven)
library(estimatr)
my_data <- read_dta("https://reifjulian.github.io/illinois-wellness-data/data/stata/claims.dta")
lm_robust(spend_0816_0717 ~ treat, data = my_data, weights = covg_0816_0717, se_type = "HC1")
* Stata code
use "https://reifjulian.github.io/illinois-wellness-data/data/stata/claims.dta", clear
histogram spendHosp_0816_0717, graphregion(fcolor(white)) freq
# R code
library(haven)
my_data <- read_dta("https://reifjulian.github.io/illinois-wellness-data/data/stata/claims.dta")
hist(my_data$spendHosp_0816_0717)
* Stata code
use "https://reifjulian.github.io/illinois-wellness-data/data/stata/biometrics.dta", clear
reg self_cholesterol_2017 treat, absorb(Strata_biometrics) robust
# R code
library(haven)
library(estimatr)
my_data <- read_dta("https://reifjulian.github.io/illinois-wellness-data/data/stata/biometrics.dta")
lm_robust(self_cholesterol_2017 ~ treat, fixed_effects = ~ Strata_biometrics, data = my_data, se_type = "HC1")
* Stata code
use "https://reifjulian.github.io/illinois-wellness-data/data/stata/biometrics.dta", clear
kdensity glucose_2016, gen(x fx) nograph
kdensity glucose_2016 if male==0, gen(fxf) at(x) nograph
kdensity glucose_2016 if male==1, gen(fxm) at(x) nograph
label var fxf "Female"
label var fxm "Male"
twoway line fxf fxm x if x<200, graphregion(fcolor(white)) lcolor(red blue)
# R code
library(tidyverse)
library(haven)
my_data <- read_dta("https://reifjulian.github.io/illinois-wellness-data/data/stata/biometrics.dta") %>%
mutate(Group = factor(male, labels = c("Female", "Male")))
ggplot(my_data) +
geom_density(aes(glucose_2016, color=Group, fill=Group), alpha = 0.1) +
xlim(50, 200) +
xlab("Glucose (mg/dL) (2016)") +
theme_minimal()
The restricted-use data include:
These data are currently hosted on a non-networked computer located at:
National Bureau of Economic Research
1050 Massachusetts Ave.
Cambridge, MA
02138
The non-networked computer includes Stata code that provides a full replication of the tables and figues from Jones, Molitor, and Reif (2019) and Reif et al. (2020).
Researchers interested in using the restricted-use data must:
Inquiries regarding the restricted-use data can be directed to David Molitor.
These study data contain information collected on 4,834 RESEARCH SUBJECTS. The PROMISE OF CONFIDENTIALITY promises to these individuals that the information they provided will not be disseminated without their permission; that the fact that they participated in the study will not be disclosed; and that disseminated information will include no linkages to their identities. Names and other identifying information regarding these individuals are presumed to be confidential.
Any intentional identification of a RESEARCH SUBJECT or unauthorized disclosure of his or her confidential information violates the PROMISE OF CONFIDENTIALITY given to the providers of the information. Therefore, by downloading these data, you hereby agree:
Any materials (books, articles, conference papers, theses, dissertations, reports, and other such publications) created that employ, reference, or otherwise use these data (in whole or in part) should credit this source. Please cite it as:
Jones, D., D. Molitor, and J. Reif. “What Do Workplace Wellness Programs Do? Evidence from the Illinois Workplace Wellness Study.” Quarterly Journal of Economics, November 2019, 134(4): 1747-1791.
Jones, D., D. Molitor, and J. Reif. “What Do Workplace Wellness Programs Do? Evidence from the Illinois Workplace Wellness Study.” Quarterly Journal of Economics, November 2019, 134(4): 1747-1791.
Reif, J., Chan, D., Jones, D., Payne, L., and Molitor, D. “Effects of a Workplace Wellness Program on Employee Health, Health Beliefs, and Medical Use: A Randomized Clinical Trial.” JAMA Internal Medicine, May 2020, 180(7): 952-960.