vote up 1 vote down star

The Development version of Django has aggregate functions like Avg, Count, Max, Min, StdDev, Sum, and Variance (link text). Is there a reason Median is missing from the list?

Implementing one seems like it would be easy. Am I missing something? How much are the aggregate functions doing behind the scenes?

flag

43% accept rate

4 Answers

vote up 6 vote down check

Because median isn't a SQL aggregate. See, for example, the list of PostgreSQL aggregate functions and the list of MySQL aggregate functions.

link|flag
vote up 2 vote down

Well, the reason is probably that you need to track all the numbers to calculate median. Avg, Count, Max, Min, StDev, Sum, and Variance can all be calculated with constant storage needs. That is, once you "record" a number you'll never need it again.

FWIW, the variables you need to track are: min, max, count, <n> = avg, <n^2> = avg of the square of the values.

link|flag
vote up 2 vote down

A strong possibility is that median is not part of standard SQL.

Also, it requires a sort, making it quite expensive to compute.

link|flag
There are linear, non sorting, algorithms: valis.cs.uiuc.edu/~sariel/research/… – Todd Gardner Jun 3 at 1:59
Wrong algorithm, I meant median of medians: en.wikipedia.org/wiki/… – Todd Gardner Jun 3 at 2:03
@Todd Gardner: The first link is the "partition-based general selection" and it's O(nlogn) not linear. The site is wrong. It would be nice to delete that comment, but leave the median-of-medians comment. – S.Lott Jun 3 at 11:00
vote up 1 vote down

I have no idea what db backend you are using, but if your db supports another aggregate, or you can find a clever way of doing it, You can probably access it easily by Aggregate.

link|flag

Your Answer

Get an OpenID
or

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