I’m working on an empirical project using observational data where I suspect endogeneity between the treatment variable and the outcome. My goal is to estimate the causal effect of a binary treatment variable (D) on an outcome variable (Y). The main concern is that D may be endogenous due to selection bias.
I am trying to use different approaches and want to confirm if the following three specifications are "equivalent". I understand that the estimates from the three approaches will be different because the estimation method is different. I want to check if I am setting up the three commands properly.
D is the treatment variable assumed to be influenced by $p and district fixed effects. This is being used as the exclusion criteria.
*treatment effects model
eteffects (y $l $s $v $stateFE) (D $p $l $s $v $district_code), vce(cluster district_code) atet
*IV
ivregress 2sls y $l $s $v $stateFE (D=$p $district_code), vce(cluster district_code)
*PSM
teffects psmatch (y) (D $p $l $s $v), vce(robust) atet
In my case, PSM doesn't allow district fixed effects to be included, so the third specification doesn't have district dummies.
I might not to be using PSM at all, but I want to make sure that IV and eteffects are the same specifications.
I am trying to use different approaches and want to confirm if the following three specifications are "equivalent". I understand that the estimates from the three approaches will be different because the estimation method is different. I want to check if I am setting up the three commands properly.
D is the treatment variable assumed to be influenced by $p and district fixed effects. This is being used as the exclusion criteria.
*treatment effects model
eteffects (y $l $s $v $stateFE) (D $p $l $s $v $district_code), vce(cluster district_code) atet
*IV
ivregress 2sls y $l $s $v $stateFE (D=$p $district_code), vce(cluster district_code)
*PSM
teffects psmatch (y) (D $p $l $s $v), vce(robust) atet
In my case, PSM doesn't allow district fixed effects to be included, so the third specification doesn't have district dummies.
I might not to be using PSM at all, but I want to make sure that IV and eteffects are the same specifications.
Comment