Is there a way to align the individual plotregions when using graph combine that isn't just play-around-until-it-looks-ok(-ish)?
Here is a simple example:
This produces the below graph, and the x scales don't line up.

The best I can come up with is adding spaces to the the shorter title until the plotregions line up.
To pre-empt the 'don't use graph combine' comments – I do need it here. Using the by() option would align the subplots automatically, but I can't use by() for this specific graph.
Thanks, Tim
Here is a simple example:
Code:
twoway function 1, name(a) nodraw ytit("Y is 1", orientation(hor)) twoway function x, name(b) nodraw ytit("Y is equal to X", orientation(hor)) graph combine a b, cols(1)
The best I can come up with is adding spaces to the the shorter title until the plotregions line up.
To pre-empt the 'don't use graph combine' comments – I do need it here. Using the by() option would align the subplots automatically, but I can't use by() for this specific graph.
Thanks, Tim
Comment