Dear all!
When I use the single #, with county and year fixed effects, to run my DID regression,
I get this result:
then I run the marginal effects:
I get the following results:
Is it possible for Stata to compute right marginal effects for coefficients it omited in the probit regression?
Thank you!
When I use the single #, with county and year fixed effects, to run my DID regression,
Code:
probit Outcome i.Treat#i.post_Treat `provinceXyearFE' i.coun, cluster(coun)
Code:
Treat#post_Treat |
0 1 | -1.011938 .361093 -2.80 0.005 -1.719667 -.3042089
1 0 | 0 (omitted)
1 1 | 0 (omitted)
then I run the marginal effects:
Code:
margins Treat, dydx(post_Treat) noestimcheck pwcompare (effects) post
Code:
Pairwise comparisons of average marginal effects
Model VCE : Robust
Expression : Pr(Outcome), predict()
dy/dx w.r.t. : 1.post_Treat
------------------------------------------------------------------------------
| Contrast Delta-method Unadjusted Unadjusted
| dy/dx Std. Err. z P>|z| [95% Conf. Interval]
-------------+----------------------------------------------------------------
1.post_Treat |
Treat|
1 vs 0 | .254434 .0719085 3.54 0.000 .113496 .3953721
------------------------------------------------------------------------------
Note: dy/dx for factor levels is the discrete change from the base level.
Thank you!

Comment