Hi all,
I am trying to have together the matching coefficients, but I do not manage to do so. For the following code I ran 4 regressions and stored their estimates.
Using this code, I get the following graph:

However, although it is really close to what I want, I'd like to have the estimates for the models (the ones calles 2.s1_sample... and 3.s1_sample...) together one on top of the other instead of having first the estimates for one of the modes, and later repeating them again.
I have looked into the coefplot documentation but my case does not seem to be addressed - so, is there a way to plot what I want on STATA?
Thank you for your time.
I am trying to have together the matching coefficients, but I do not manage to do so. For the following code I ran 4 regressions and stored their estimates.
Code:
coefplot model1 model2 model3 model4, /// keep(3.s1_sampledata_mode 2.s1_sampledata_mode) /// xline(0) /// title("Effect of Mode on Various Outcomes") swapnames
However, although it is really close to what I want, I'd like to have the estimates for the models (the ones calles 2.s1_sample... and 3.s1_sample...) together one on top of the other instead of having first the estimates for one of the modes, and later repeating them again.
I have looked into the coefplot documentation but my case does not seem to be addressed - so, is there a way to plot what I want on STATA?
Thank you for your time.
Comment