Hi there,
I wonder why the --min option sets the lower limit of the left-most bin
only for the continuous series x1 while the x2 plots are the same?
Best
Leon
<hansl>
nulldata 100
loop i = 1..2 --quiet
if i < 2
series x$i = normal()
else
series x$i = randgen(P, 5)
discrete x$i
endif
endloop
loop foreach i x1..x2
if i== 1
freq $i --show-plot
freq $i --min=1 --binwidth=0.10 --show-plot
elif i == 2
freq $i --show-plot
freq $i --min=4 --binwidth=1 --show-plot
endif
endloop
<hansl>