Hey guys,
I was just about to produce a graph with a scatter and different lines. Here is the code:
Why are the lines, which should be "dashed" interrupted?

Best,
Mario
I was just about to produce a graph with a scatter and different lines. Here is the code:
Code:
twoway scatter yt_4 nfci if qdate <= tq(2017q4), msize(vsmall) || line yt_4_hat_fcio_q5 yt_4_hat_fcio_q50 yt_4_hat_fcio_q95 nfci, lpattern(dash dash dash) || lfit yt_4 nfci, color(red) lpattern(dash) sort ///
title("") xtitle("FCI", size(medium)) xlabel(,labsize(small)) ytitle("GDP growth 4 quarters ahead", size(medium)) ///
ylabel(, labsize(small)) ///
aspectratio(1) ysize(6) graphregion(color(white)) ///
legend(size(small) order(2 3 4 5) label(5 "OLS")) graphregion(color(white))
Best,
Mario

Comment