Here I have a simple example where I would like to alight a heatplot (ssc install heatplot) and a scatterplot. Is it possible that the y-axis data values are on the same level, the same goes for the title? Sadly, ycommon does not work here.
Code:
sysuse nlsw88, clear heatplot tenure wage /// , ramp(bottom format(%6.3f)) name(g1, replace) title("Test 1") aspectratio(1) twoway (scatter tenure wage) /// (lfit tenure wage) /// , name(g2, replace) title("Test 2") aspectratio(1) legend(pos(6)) graph combine g1 g2, xcommon ycommon
Comment