Dear All,
suppose you plot:
I want to limit the range of the y axis, say from -2.5 to 2.5 (basically get rid off the empty white space above). I read in a Stata tip edition, to use yscale and ylabel simultaneously.
But I cannot seem to get what I want. I realize that this could cut off some data points and that this is undesirable. In the true data it would only make an effect better visible. Can anyone point me to how this can be done?
Thanks in advance,
Best,
suppose you plot:
Code:
set seed = 04052017 set obs 200 gen time = _n gen y = rnormal() tsset time tsline y
Code:
tsline y, yscale(range(0 4)) ylabel(0(1)4)
Thanks in advance,
Best,
Comment