Hi, I am trying to overlay two graphs but one of the graphs is a saved graph on my computer. I do not have both graphs created on the same .do file for organization purposes and the time it would take to run both programs together. Is there a way to do this? Here is an example of my code:
I have graph:
line pcdist1_m_s wtper1_m_s year if tag_graph ==1 & sex ==1 , sort ///
title("Living Independently") , ///
subtitle("In School Percentage (%)")
graph save "school1" , replace
And I am trying to overlay "bar1.gph" from another folder. bar1.gph is this graph:
graph bar pcdist1_m wtper1_m if tag_graph ==1 & sex ==1 , over (year)
graph save "bar1" , replace
I can provide more information if required
Thank you
I have graph:
line pcdist1_m_s wtper1_m_s year if tag_graph ==1 & sex ==1 , sort ///
title("Living Independently") , ///
subtitle("In School Percentage (%)")
graph save "school1" , replace
And I am trying to overlay "bar1.gph" from another folder. bar1.gph is this graph:
graph bar pcdist1_m wtper1_m if tag_graph ==1 & sex ==1 , over (year)
graph save "bar1" , replace
I can provide more information if required
Thank you
Comment