Hi, I am trying to combine two graphs created using `event_plot`:
The result however, has different margins on the left, I would like the plot margins to be aligned, is this possible to force?
Code:
// regression 1 estat event, window(-4 4) estore(cs) event_plot cs, default_look graph_opt(xtitle("Periods since the event") ytitle("ATT") /// title("Var1") xlabel(-4(2)4) legend(off)) stub_lag(Tp#) stub_lead(Tm#) ciplottype(rcap) plottype(scatter) graph save ga, replace // regression 2 estat event, window(-4 4) estore(cs) event_plot cs, default_look graph_opt(xtitle("Periods since the event") ytitle("ATT") /// title("Var2") xlabel(-4(2)4) legend(off)) stub_lag(Tp#) stub_lead(Tm#) ciplottype(rcap) plottype(scatter) graph save gb, replace gr combine ga.gph gb.gph , col(1) xcommon ysize(7) commonscheme
Comment