PostgreSQL specific aggregation functionsLink para este cabeçalho
These functions are available from the django.contrib.postgres.aggregates
module. They are described in more detail in the PostgreSQL docs.
General-purpose aggregation functionsLink para este cabeçalho
ArrayAggLink para este cabeçalho
- class ArrayAgg(expression, distinct=False, filter=None, ordering=(), **extra)Link para esta definição
Returns a list of values, including nulls, concatenated into an array.
- distinctLink para esta definição
An optional boolean argument that determines if array values will be distinct. Defaults to
False.
- orderingLink para esta definição
An optional string of a field name (with an optional
"-"prefix which indicates descending order) or an expression (or a tuple or list of strings and/or expressions) that specifies the ordering of the elements in the result list.Exemplos:
'some_field' '-some_field' from django.db.models import F F('some_field').desc()
BitAndLink para este cabeçalho
- class BitAnd(expression, filter=None, **extra)Link para esta definição
Returns an
intof the bitwiseANDof all non-null input values, orNoneif all values are null.
BitOrLink para este cabeçalho
- class BitOr(expression, filter=None, **extra)Link para esta definição
Returns an
intof the bitwiseORof all non-null input values, orNoneif all values are null.
BoolAndLink para este cabeçalho
- class BoolAnd(expression, filter=None, **extra)Link para esta definição
Returns
True, if all input values are true,Noneif all values are null or if there are no values, otherwiseFalse.Usage example:
class Comment(models.Model): body = models.TextField() published = models.BooleanField() rank = models.IntegerField() >>> from django.db.models import Q >>> from django.contrib.postgres.aggregates import BoolAnd >>> Comment.objects.aggregate(booland=BoolAnd('published')) {'booland': False} >>> Comment.objects.aggregate(booland=BoolAnd(Q(rank__lt=100))) {'booland': True}
BoolOrLink para este cabeçalho
- class BoolOr(expression, filter=None, **extra)Link para esta definição
Returns
Trueif at least one input value is true,Noneif all values are null or if there are no values, otherwiseFalse.Usage example:
class Comment(models.Model): body = models.TextField() published = models.BooleanField() rank = models.IntegerField() >>> from django.db.models import Q >>> from django.contrib.postgres.aggregates import BoolOr >>> Comment.objects.aggregate(boolor=BoolOr('published')) {'boolor': True} >>> Comment.objects.aggregate(boolor=BoolOr(Q(rank__gt=2))) {'boolor': False}
JSONBAggLink para este cabeçalho
- class JSONBAgg(expressions, distinct=False, filter=None, ordering=(), **extra)Link para esta definição
Returns the input values as a
JSONarray.- distinctLink para esta definição
-
An optional boolean argument that determines if array values will be distinct. Defaults to
False.
- orderingLink para esta definição
-
An optional string of a field name (with an optional
"-"prefix which indicates descending order) or an expression (or a tuple or list of strings and/or expressions) that specifies the ordering of the elements in the result list.Examples are the same as for
ArrayAgg.ordering.
StringAggLink para este cabeçalho
- class StringAgg(expression, delimiter, distinct=False, filter=None, ordering=())Link para esta definição
Returns the input values concatenated into a string, separated by the
delimiterstring.- delimiterLink para esta definição
Required argument. Needs to be a string.
- distinctLink para esta definição
An optional boolean argument that determines if concatenated values will be distinct. Defaults to
False.
- orderingLink para esta definição
An optional string of a field name (with an optional
"-"prefix which indicates descending order) or an expression (or a tuple or list of strings and/or expressions) that specifies the ordering of the elements in the result string.Examples are the same as for
ArrayAgg.ordering.
Aggregate functions for statisticsLink para este cabeçalho
y and xLink para este cabeçalho
The arguments y and x for all these functions can be the name of a
field or an expression returning a numeric data. Both are required.
CorrLink para este cabeçalho
- class Corr(y, x, filter=None)Link para esta definição
Returns the correlation coefficient as a
float, orNoneif there aren’t any matching rows.
CovarPopLink para este cabeçalho
- class CovarPop(y, x, sample=False, filter=None)Link para esta definição
Returns the population covariance as a
float, orNoneif there aren’t any matching rows.Has one optional argument:
- sampleLink para esta definição
By default
CovarPopreturns the general population covariance. However, ifsample=True, the return value will be the sample population covariance.
RegrAvgXLink para este cabeçalho
- class RegrAvgX(y, x, filter=None)Link para esta definição
Returns the average of the independent variable (
sum(x)/N) as afloat, orNoneif there aren’t any matching rows.
RegrAvgYLink para este cabeçalho
- class RegrAvgY(y, x, filter=None)Link para esta definição
Returns the average of the dependent variable (
sum(y)/N) as afloat, orNoneif there aren’t any matching rows.
RegrCountLink para este cabeçalho
- class RegrCount(y, x, filter=None)Link para esta definição
Returns an
intof the number of input rows in which both expressions are not null.
RegrInterceptLink para este cabeçalho
- class RegrIntercept(y, x, filter=None)Link para esta definição
Returns the y-intercept of the least-squares-fit linear equation determined by the
(x, y)pairs as afloat, orNoneif there aren’t any matching rows.
RegrR2Link para este cabeçalho
- class RegrR2(y, x, filter=None)Link para esta definição
Returns the square of the correlation coefficient as a
float, orNoneif there aren’t any matching rows.
RegrSlopeLink para este cabeçalho
- class RegrSlope(y, x, filter=None)Link para esta definição
Returns the slope of the least-squares-fit linear equation determined by the
(x, y)pairs as afloat, orNoneif there aren’t any matching rows.
RegrSXXLink para este cabeçalho
- class RegrSXX(y, x, filter=None)Link para esta definição
Returns
sum(x^2) - sum(x)^2/N(“sum of squares” of the independent variable) as afloat, orNoneif there aren’t any matching rows.
RegrSXYLink para este cabeçalho
- class RegrSXY(y, x, filter=None)Link para esta definição
Returns
sum(x*y) - sum(x) * sum(y)/N(“sum of products” of independent times dependent variable) as afloat, orNoneif there aren’t any matching rows.
RegrSYYLink para este cabeçalho
- class RegrSYY(y, x, filter=None)Link para esta definição
Returns
sum(y^2) - sum(y)^2/N(“sum of squares” of the dependent variable) as afloat, orNoneif there aren’t any matching rows.
Usage examplesLink para este cabeçalho
We will use this example table:
| FIELD1 | FIELD2 | FIELD3 |
|--------|--------|--------|
| foo | 1 | 13 |
| bar | 2 | (null) |
| test | 3 | 13 |
Here’s some examples of some of the general-purpose aggregation functions:
>>> TestModel.objects.aggregate(result=StringAgg('field1', delimiter=';'))
{'result': 'foo;bar;test'}
>>> TestModel.objects.aggregate(result=ArrayAgg('field2'))
{'result': [1, 2, 3]}
>>> TestModel.objects.aggregate(result=ArrayAgg('field1'))
{'result': ['foo', 'bar', 'test']}
The next example shows the usage of statistical aggregate functions. The underlying math will be not described (you can read about this, for example, at wikipedia):
>>> TestModel.objects.aggregate(count=RegrCount(y='field3', x='field2'))
{'count': 2}
>>> TestModel.objects.aggregate(avgx=RegrAvgX(y='field3', x='field2'),
... avgy=RegrAvgY(y='field3', x='field2'))
{'avgx': 2, 'avgy': 13}