Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Are there any functions (as part of a math library) which will calculate mean, median, mode and range from a set of numbers.

share|improve this question
1  
If it's a homework, the solution using any library might not be acceptable, I am afraid. – Adeel Ansari Nov 16 '10 at 6:45

4 Answers

up vote 13 down vote accepted

Have look at Apache Commons Math. Here is the API docs. The classes of interest, Mean and Median.

share|improve this answer
Damn, beat me by a second ;) – javamonkey79 Nov 16 '10 at 6:43
+1 of course... :) – javamonkey79 Nov 16 '10 at 6:50
Apache Commons Math apparently (according to docs) relies on a full sort to get the median. This is very inefficient for large datasets. If performance is an issue I recommend you search out a proper "selection algorithm" implementation. I'm looking for this in Java so will post back if I find it. – Chinasaur Aug 24 '12 at 18:45

Yes, there does seem to be 3rd libraries (none in Java Math). Two that have come up are:

http://opsresearch.com/app/

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

public static double mean(double[] m) {
    double sum = 0;
    for (int i = 0; i < m.length; i++) {
        sum += m[i];
    }
    return sum / m.length;
}

MEDIAN

// the array double[] m MUST BE SORTED
public static double median(double[] m) {
    int middle = m.length/2;
    if (m.length%2 == 1) {
        return m[middle];
    } else {
        return (m[middle-1] + m[middle]) / 2.0;
    }
}

MODE

public static int mode(int a[]) {
    int maxValue, maxCount;

    for (int i = 0; i < a.length; ++i) {
        int count = 0;
        for (int j = 0; j < a.length; ++j) {
            if (a[j] == a[i]) ++count;
        }
        if (count > maxCount) {
            maxCount = count;
            maxValue = a[i];
        }
    }

    return maxValue;
}
share|improve this answer
thanks, but I would prefer to use something out of the box if possible – user339108 Nov 16 '10 at 6:47
@Stephen C. Sorry about that, I updated the link again. – Nico Huysamen Nov 16 '10 at 6:57
This class will have issues if you have a very large array or have to calculate values on the fly. It can be written without an array for mean and standard deviation; not as certain for median and mode. – duffymo Nov 16 '10 at 10:30
As mentioned in my comment on Adeel's answer, sorting the whole array to get the median is pretty inefficient. – Chinasaur Aug 24 '12 at 18:47

Check out commons math from apache. There is quite a lot there.

share|improve this answer
You should receive an upvote, whatsoever ;). +1 – Adeel Ansari Nov 16 '10 at 6:49
See comment on Adeel's answer: Apache Commons Math appears to use a pretty inefficient median algorithm. – Chinasaur Aug 24 '12 at 18:47

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.