I am trying to combine several graphs using -combine- and a single row whereby I want to have the y-axis labels only on the leftmost graph.
Using -combine- with only two graphs works as intended (although I would like to have the gap between the graphs somewhat smaller):
produces the following graph:

However, if I try to combine three graphs the same way, the scaling of the first graph is smaller than the scaling of the subsequent graphs:
which produces:

Is there a possibility to combine several graphs with a common y-axis and y-axis labels only for the leftmost graph?
Using -combine- with only two graphs works as intended (although I would like to have the gap between the graphs somewhat smaller):
Code:
graph combine vtheflyp vrobblyp, ycommon rows(1) iscale(*1.1) /// name("combined2", replace)
However, if I try to combine three graphs the same way, the scaling of the first graph is smaller than the scaling of the subsequent graphs:
Code:
graph combine vtheflyp vrobblyp vassalyp, ycommon rows(1) iscale(*.90) /// name("combined", replace)
Is there a possibility to combine several graphs with a common y-axis and y-axis labels only for the leftmost graph?
Comment