Dear all,
I cannot have the results I want in the est tab output using :

Code:
quietly probit Y i.treat##i.post X
eststo m1: margins treat, dydx(post) noestimcheck pwcompare post


quietly probit Y i.treat##i.post X
eststo m2: margins treat, dydx(post) noestimcheck pwcompare post

quietly probit Y i.treat##i.post X
eststo m3: margins treat, dydx(post) noestimcheck pwcompare post

quietly probit Y i.treat##i.post X
eststo m4: margins treat, dydx(post) noestimcheck pwcompare post
        
esttab m1 m2 m3 m4 using regS_margins.tex, replace
It's giving me the table of the effect for each group (an estimate for 1 and an estimate for 0) and not the effect of the difference in differences (1 vs 0), i.e. as if pwcompare is not included.
Do you have any idea what I am doing wrong.
Thank you.