Hello,
I have two different variables. I plotted the mx and min values for each variable and wanted to show the two graphs together
I tried different ways to show the names of vars within the same legend with no success.
Sorry I cannot share the data but here is the graph I had
using
I have two different variables. I plotted the mx and min values for each variable and wanted to show the two graphs together
Code:
twoway rcap max_X1 min_X1 n, name(g1, replace) twoway rcap max_X2 min_X2 n, name(g1, replace) grc1leg2 g1 g2
I tried different ways to show the names of vars within the same legend with no success.
Sorry I cannot share the data but here is the graph I had
using
Code:
graph combine g1 g2, name(combined, replace)
Comment