Możesz utworzyć Median
klasa potomna Aggregate
jak to zrobił Ryan Murphy (https://gist.github.com/rdmurphy/3f73c7b1826cacee855b12c2 a> ). Median
następnie działa jak Avg
:
from django.db.models import Aggregate, FloatField
class Median(Aggregate):
function = 'PERCENTILE_CONT'
name = 'median'
output_field = FloatField()
template = '%(function)s(0.5) WITHIN GROUP (ORDER BY %(expressions)s)'
Następnie, aby znaleźć medianę użycia pola
my_model_aggregate = MyModel.objects.all().aggregate(Median('period'))
który jest następnie dostępny jako my_model_aggregate['period__median']
.