Vous pouvez créer une Median
classe enfant de l'Aggregate
classe comme l'a fait Ryan Murphy (https://gist.github.com/rdmurphy/3f73c7b1826cacee34f6c2a855b12e2e ). Median
fonctionne alors comme 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)'
Ensuite, pour trouver la médiane d'un champ, utilisez
my_model_aggregate = MyModel.objects.all().aggregate(Median('period'))
qui est alors disponible en tant que my_model_aggregate['period__median']
.