Hello statalisters,
I'm combining graphs one next to the other and I would like to display a common ytitle (on the left side) and a common xtitle just in the middle of the two graphs. I cannot figure out how to do this in stata (is it even possible btw?) because graph combine does not allow x/ytitle option.
One solution could be to leave the ytitle of the left graph, but then How do I add the common xaxis?
I'm combining graphs one next to the other and I would like to display a common ytitle (on the left side) and a common xtitle just in the middle of the two graphs. I cannot figure out how to do this in stata (is it even possible btw?) because graph combine does not allow x/ytitle option.
One solution could be to leave the ytitle of the left graph, but then How do I add the common xaxis?
Code:
graph combine graph1 graph2, title("COMMON TITLE") ycommon xcommon graphregion(color(white)) // ytitle("Density") xtitle("x-axis title") : Doesn't work
Comment