I notice that the current median is:
median
��� "Return the middle element, or as close as we can get."
��� ^ self at: self size + 1 // 2
Any reason not to make that accurate and return the average of the middle two values for collections containing an even number of items?
Or...better yet...should statistics functions be removed and placed into another package with other useful items like mode, range, standardDeviation, etc...?
Just wondering!
Rob