Problem Set: Minimum Legal Drinking Age

Exercises

Question 1: Setup and RD model

Load the data (it’s a .dta file, so you’ll want to use read_dta() from the haven package). Typeset the linear RD model and define the Conditional Average Treatment Effect (CATE).

Question 2: Linear RD model

Recenter your running variable around 21, and create a treatment dummy over21 that takes 1 for everyone legally allowed to consume alcohol. Use a linear RD model to estimate the causal effect of legal access to alcohol on death rates. Plot your results. Interpret the CATE and discuss your findings. Hint: Consult the “Regression discontinuity” lecture slides if you need a reminder of the econometrics or the implementation in R.

Question 3: Quadratic RD model

Repeat the preceding part using a quadratic rather than linear specification. Compare and contrast your findings.

Question 4: Sensitivity: ages 20–22

RD analysis is fundamentally local in nature: the mortality rates of individuals far from the cut-off should not inform us about the causal effect for 21 year olds. Repeat parts 2 and 3 after restricting your sample to ages between 20 and 22, inclusive, to check the sensitivity of your results. Display the results of all four estimations in one table. Create a joint plot of all four estimations. Discuss your findings.