Hello,
I am using the following code:
And this is the output that I obtain:

I would like to put the title "1" to the first graph and the title "2" to the second. Instead, with my code I am writing 1,2 and 1,2 (look at the highlighted part). Any idea about how to solve it?
I am using the following code:
Code:
twoway line log_death_year_NS year, c(l) yaxis(1) by(NorthAfrica, yrescale title("My Title")) title("1, 2") /// legend(label(1 21) label(2 22) label(3 23)) /// || line log_actors_class2_year_NS year, c(l) yaxis(2) by(NorthAfrica) /// || line log_actors_class1_year_NS year, c(l) yaxis(2) by(NorthAfrica)
I would like to put the title "1" to the first graph and the title "2" to the second. Instead, with my code I am writing 1,2 and 1,2 (look at the highlighted part). Any idea about how to solve it?
Comment