Hi there
I'm plotting y values on a chart which all happen to be zeros, and Stata insists on scaling the y-axis from -1 to 1 despite my use of the "range" option.
Any advice on how else to force the y-axis to start at zero instead of -1 here?
With many thanks
I'm plotting y values on a chart which all happen to be zeros, and Stata insists on scaling the y-axis from -1 to 1 despite my use of the "range" option.
Code:
clear input int year float rate 1999 0 2000 0 2001 0 2002 0 2003 0 2004 0 2005 0 end line rate year, yscale(range(0 .)) ylabel(#5)
With many thanks
Comment