Hey!
I want to make a line break in my xlabels. However, I always get the error message "in range not allowed - r(101)". What is wrong with the following code in the xlabel part?
I want to make a line break in my xlabels. However, I always get the error message "in range not allowed - r(101)". What is wrong with the following code in the xlabel part?
Code:
#delimit ; twoway rcap high low x || scatter mean x, mcolor(black) msize(small) legend(off) xlabel(1 ‘" "PGM activity" "in previous conflict" "’ 2 ‘" "no PGM activity" "in previous conflict" "’, labsize(small)) xscale(range(0 3)) ylabel(0 "0%" 0.2 "20%" 0.4 "40%" 0.6 "60%" 0.8 "80%") xtitle("") scheme(s1mono) note("Source: Created by the author based on statistical simulation technique (introduced by King et al. 2000)") title("Graph 2: Simulated probabilities of post-conflict relapse") ytitle("Expected likelihood of conflict resurgence") name(graphx, replace); #delimit cr
Comment