hi I'm trying to use the graph combine option to combine several graphs but when i do so the plots in the combined version are not evenly distributed. you can see that the top left and bottom right are smaller.
The code I used to produce this is
were test 1 is
and test 2 is
the four graphs used in this come from
were `j' is an indicator for individual.
Any help is greatly appreciated.
Cheers,
Daniel

The code I used to produce this is
Code:
gr combine "test1" "test2", col(1) ycommon xcommon
Code:
gr combine "a1c01" "a2c01"
Code:
gr combine "a3c01" "a4c01", saving(test2, replace)
Code:
twoway (rcap xl xu n, lcolor(blue)) (rcap yl yu n, lcolor(emerald)) (rcap zl zu n, lcolor(red)) (scatter x y z n, mcolor(blue emerald red)), title("Graph xxx:") subtitle("With Confidence Intervals") ytitle("Blood Glucose Level") xtitle("Time Since Meal") xlabel(0(20)120) ylabel(, angle(0)) leg(on order(1 2 3)) legend(label(1 "Home") label(2 "Off-Brand") label(3 "Global-Brand")) saving(A`j'C01, replace)
Any help is greatly appreciated.
Cheers,
Daniel
Comment