Dear All, Suppose that I run two regressions as follows: (But note that the -mcp- command is from http://www.stata-journal.com/article...article=gr0056)
The two graphs are combined as
How can I overlay these two graphs into a single graph?
Code:
webuse grunfeld, clear xtset company year // 1 xtreg invest mvalue c.mvalue#c.mvalue if year < 1945, fe mcp mvalue, graph save Graph "1.gph", replace // 2 xtreg invest mvalue c.mvalue#c.mvalue if year >= 1945, fe mcp mvalue, graph save Graph "2.gph", replace // 1 & 2 graph combine 1.gph 2.gph, ycom
How can I overlay these two graphs into a single graph?
Comment