I have a do-file that generates a very large number of plots in a systematic fashion (say 100+), kind of like here:
Code:
sysuse auto, clear foreach x of varlist price rep78 headroom trunk weight length turn { twoway scatter mpg `x', name(fig_`x', replace) }
Code:
graph combine fig_price fig_length, col(2) name(fig1, replace)
Code:
twoway scatter mpg price, name(fig_price, replace) title(A, justification(left) bexpand) nodraw twoway scatter mpg length, name(fig_length, replace) title(B, justification(left) bexpand) nodraw graph combine fig_price fig_length, col(2) name(fig1_fixed, replace)
My question now is: Is there a way to add this title() to the graphs already in memory? I have a feeling that there might be a way to do it with gr_edit, but I don't know where to find that out.
Thank you so much
NB
0 Response to Adding title to graphs already in memory
Post a Comment