Dear All, I draw the following graph,

The problem is that how can I fill the gap (as indicated by the red circle)? Thanks for your suggestions.
Code:
clear set obs 100 gen x = _n gen c = 50 gen d = (x >= c) twoway (line d x if x < 49.9) (line d x if x >= 50), /// ylabel(#3) xline(50, lpattern(dash) noextend) xlabel(#10) legend(off)
The problem is that how can I fill the gap (as indicated by the red circle)? Thanks for your suggestions.
Comment