Hi, everybody!
I'm currently in the process of writing my MSc thesis in economics. I am studying the effect of an anti-corruption policy on corruption as perceived by the private sector in the Balkan countries. I decided to use propensity scores to reduce selection bias, as I am working with observational data. I generated the scores by running a probit regression, regressing my treatment on time-invariant characteristics of the firms in my sample. I plotted the density of my propensity scores using the following code:
probit tregion begin employ regi when
predict p
kdens p, ul(1) ll(0)
loc w=r(width)
kdens p if tregion==1, ul(1) ll(0) bw(`w') g(d1 x) nogr
kdens p if tregion==0, ul(1) ll(0) bw(`w') g(d0) at(x) nogr
line d0 d1 x, name(comp, replace)
As a result, I got the following graph:

What I would want to do now is create a restricted sample for which common support exists, as suggested by the graph. The question is: how? What command would I use to keep only those observations?
Thank you in advance,
Miloš
I'm currently in the process of writing my MSc thesis in economics. I am studying the effect of an anti-corruption policy on corruption as perceived by the private sector in the Balkan countries. I decided to use propensity scores to reduce selection bias, as I am working with observational data. I generated the scores by running a probit regression, regressing my treatment on time-invariant characteristics of the firms in my sample. I plotted the density of my propensity scores using the following code:
probit tregion begin employ regi when
predict p
kdens p, ul(1) ll(0)
loc w=r(width)
kdens p if tregion==1, ul(1) ll(0) bw(`w') g(d1 x) nogr
kdens p if tregion==0, ul(1) ll(0) bw(`w') g(d0) at(x) nogr
line d0 d1 x, name(comp, replace)
As a result, I got the following graph:
What I would want to do now is create a restricted sample for which common support exists, as suggested by the graph. The question is: how? What command would I use to keep only those observations?
Thank you in advance,
Miloš
Comment