Hi everyone,
I want to produce some graphs which are composites with different number of separate panels, like
Well, as you can see, graph a has two plots in one row, and graph b has five plots in two rows.
But, I don't know how to keep the separate panels of graph a and b the same size.


Really appreciate any help.
Will ZHANG
I want to produce some graphs which are composites with different number of separate panels, like
Code:
sysuse auto.dta, clear tw scatter price length, by(foreign, row(1)) name(a, replace) tw scatter price length, by(rep78, row(2)) name(b, replace)
But, I don't know how to keep the separate panels of graph a and b the same size.
Really appreciate any help.
Will ZHANG

Comment