The goal is to estimate the Quantile Treatment Effect on the Treated (QTET) which is given by
FY1t|D = 1−1(τ) − FY0t|D = 1−1(τ)
for τ ∈ (0, 1) and where Y1t are treated potential outcomes in period t, Y0t are untreated potential outcomes in period t and D indicates whether an individual is a member of the treated group or not.
Thus, the key identification challenge is for the counterfactual distribution of untreated potential outcomes for the treated group FY0t|D = 1(y) – once we identify this, we can invert it to get the quantiles.
We consider the case with three periods of panel data and where individuals are first treated in the last period – period t. In period t − 1, Yit − 1 = Yi0t − 1 and in period t − 2, Y_{it-2} = Y_{i0t-2}$ for all individuals; that is, in the first two periods no one is treated so that we observe everyone’s untreated potential outcomes.
Assumption 1 (Distributional Difference in Differences)
ΔY0t ⊥ D
This is an extension of the most common mean DID assumption (E[ΔY0t|D = 1] = E[ΔY0t|D = 0] to full independence. But, unlike in the mean DID case, this assumption is not strong enough to point identify the QTET. We also invoke the following additional assumption.
Assumption 2 (Copula Stability Assumption)
CΔY0t, Y0t − 1|D = 1(u, v) = CΔY0t − 1, Y0t − 2|D = 1(u, v)
The CSA says that if, in the periods before treatment, we observe the largest gains in outcomes going to, say, those at the top of the distribution, then in the current period, we would also observe the same thing. Together, the Distributional DID Assumption and the Copula Stability Assumption imply that the counterfactual distribution of untreated potential outcomes for the treated group is identified. It is given by
FY0t|D = 1(y) = E[1{FΔYt|D = 0−1(FΔYt − 1|D = 1(ΔYt − 1)) + FYt − 1|D = 1−1(FYt − 2|D = 1−1(Yt − 2)) ≤ y}|D = 1]
And then we can invert this to obtain the QTET.
We also can allow the Distributional DID Assumption to hold
conditional on covariates. This may be important when the path of
outcomes depends on covariates – for example, the path of earnings even
in the absence of treatment is likely to depend on education,
experience, etc. In this case, first step estimation depends on the
propensity score, but is still straightforward. The
panel.qtet
contains all the tools needed to do the
estimation.
##load the package
library(qte)
##load the data
data(lalonde)
## Run the panel.qtet method on the observational data with no covariates
pq1 <- panel.qtet(re ~ treat, t=1978, tmin1=1975, tmin2=1974, tname="year",
x=NULL, data=lalonde.psid.panel, idname="id", se=FALSE,
probs=seq(0.1, 0.9, 0.1))
summary(pq1)
##
## Quantile Treatment Effect:
##
## tau QTE
## 0.1 1987.35
## 0.2 -7366.04
## 0.3 -7992.15
## 0.4 -6597.37
## 0.5 -4702.88
## 0.6 -2741.80
## 0.7 -771.12
## 0.8 580.00
## 0.9 -250.77
##
## Average Treatment Effect: 2326.51
## Run the panel.qtet method on the observational data conditioning on
## age, education, black, hispanic, married, and nodegree.
## The propensity score will be estimated using the default logit method.
pq2 <- panel.qtet(re ~ treat, t=1978, tmin1=1975, tmin2=1974, tname="year",
xformla=~age + I(age^2) + education + black + hispanic + married + nodegree,
data=lalonde.psid.panel, idname="id", se=FALSE,
probs=seq(0.1, 0.9, 0.1))
summary(pq2)
##
## Quantile Treatment Effect:
##
## tau QTE
## 0.1 0.00
## 0.2 -2340.23
## 0.3 -3378.66
## 0.4 -2922.88
## 0.5 -1935.37
## 0.6 -88.03
## 0.7 1514.30
## 0.8 2633.73
## 0.9 3174.61
##
## Average Treatment Effect: 348.15