Are there any functions (as part of a math library) which will calculate mean, median, mode and range from a set of numbers.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Have look at Apache Commons Math. Here is the API docs. The classes of interest, Mean and Median. |
|||||||
|
|
Yes, there does seem to be 3rd libraries (none in Java Math). Two that have come up are: http://www.iro.umontreal.ca/~simardr/ssj/indexe.html but, it is actually not that difficult to write your own methods to calculate mean, median, mode and range. MEAN
MEDIAN
MODE
|
|||||||||
|
|
Check out commons math from apache. There is quite a lot there. |
|||||
|
|
The MODE algorithm is not considering cases with more than one mode (bimodal, trimodal, ...) - it happens when there is more than one number appearing in the same number of times as maxCount. Considering this, it should return an array instead of a single int value. |
||||
|
|
