I wonder if anyone knows how to combine plots in Stata, considering a case when both figures have already been created.
For example
Code:
* assume i created this two figures independently sysuse auto, clear scatter mpg price, name(g1) twoway (fpfit mpg price) , name(g2) * Is there anyway i can combine the graphs g1 and g2 so i get something like twoway (fpfit mpg price) (scatter mpg price) , name(g3) * I know it is possible to add two graphs as follows: graph display g1 graph addplot (fpfit mpg price) * But im looking for something that could do something like graph display g1 graph addplot g2
Fernando
0 Response to Combining plots in Stata
Post a Comment