Hi,
I would like to maximize the plot surface when I combine 2 graph. In particular, I would like to increase the size of the y-axis so that the graph is easier to read. I'd like to save space by moving the variable names currently below each graph somewhere they are not cumbersome.
Also, I would like to save the combine graph as a .jpeg or any other format I can insert in a Word document. Please help
I would like to maximize the plot surface when I combine 2 graph. In particular, I would like to increase the size of the y-axis so that the graph is easier to read. I'd like to save space by moving the variable names currently below each graph somewhere they are not cumbersome.
Code:
use http://www.stata-press.com/data/r13/uslifeexp, clear line le le_male year, saving(male, replace) line le le_female year, saving(female, replace) gr combine male.gph female.gph, col(1) iscale(1)

Comment