I am trying to create a visual that looks like this, where graph 1 takes up the top row, graphs 2 and 3 take up the second row, and graphs 4 and 5 take up the third row and the legend from graph 5 (graphs 1-4 don't have legends) appears at the end like this:
I tried using this code:
graph combine graph1.gph, row(1) col(1) saving(g1b)
graph combine graph2.gph graph3.gph, row(2) col(1) saving(g23)
graph combine graph4.gph graph5.gph, row(3) col(1) saving(g45)
graph combine graph1.gph g23.gph g45.gph
but it created this image in which graph 2 & 3 are being dragged up into a second column and share the same row as graph 1.
Any suggestions for how to rectify this will be much appreciated!
I tried using this code:
graph combine graph1.gph, row(1) col(1) saving(g1b)
graph combine graph2.gph graph3.gph, row(2) col(1) saving(g23)
graph combine graph4.gph graph5.gph, row(3) col(1) saving(g45)
graph combine graph1.gph g23.gph g45.gph
but it created this image in which graph 2 & 3 are being dragged up into a second column and share the same row as graph 1.
Any suggestions for how to rectify this will be much appreciated!
Comment