I see no choice but to attach the data file which I have reduced to the minimum necessary. The description below of the problem will show why.
When I create a -graph twoway line- with the data, the inclusion of certain observations results in a huge gap between the y labels and the y title when I add -angle(horiz)-
lqrt.dta
When I create a -graph twoway line- with the data, the inclusion of certain observations results in a huge gap between the y labels and the y title when I add -angle(horiz)-
Code:
use lqrt.dta graph twoway line lqrt date if tin(1963q1, 1974q2), ylabel(, angle(horiz)) graph twoway line lqrt date if tin(1963q1, 1974q3), ylabel(, angle(horiz)) * problem - ytitlegap too wide graph twoway line lqrt date if tin(1963q1, 1974q3), ylabel(, angle(horiz)) yscale(titlegap(*-40)) * yscale(titlegap(*-40)) eliminates the excessive gap graph twoway line lqrt date if tin(1963q2, 1974q4), ylabel(, angle(horiz)) graph twoway line lqrt date if tin(1963q2, 1989q2), ylabel(, angle(horiz))
Comment