Question: Is Histogram default still displayed incorrectly in Maple 14?

In all versions prior to and including Maple 13 the Histogram default incorrectly displays the data.  Has this been fixed in 14?

eg.

a:=[1,2,3,4,5,6,7,8,9,8,9,7,6,5,4,2,2]

with(Statistics):
Histogram(a,frequencyscale=absolute,binwidth=1)

Clearly the last points 8 and 9 have been added together.

Luckily a workaround does exist, but one must explicitly tell maple to extend the range to 10 so that the last two data points aren't tallied together or in the general case to extend any histograms range to max(a)+1 when the bincount=1.

And here's what the default Histogram should have displayed
Histogram(a,frequencyscale=absolute,binwidth=1,range=1..10)

So has this issue been addressed in Maple 14?

Please Wait...