Aggregating functions
To calculate aggregated data, Cypher® offers aggregation, analogous to SQL’s GROUP BY
.
Aggregating functions take a set of values and calculate an aggregated value over them.
Examples are avg()
that calculates the average of multiple numeric values, or min()
that finds the smallest numeric or string value in a set of values.
When we say below that an aggregating function operates on a set of values, we mean these to be the result of the application of the inner expression (such as n.age
) to all the records within the same aggregation group.
Aggregation can be computed over all the matching subgraphs, or it can be further divided by introducing grouping keys. These are non-aggregate expressions, that are used to group the values going into the aggregate functions.
Assume we have the following return statement:
RETURN n, count(*)
We have two return expressions: n
, and count()
.
The first, n
, is not an aggregate function, and so it will be the grouping key.
The latter, count()
is an aggregate expression.
The matching subgraphs will be divided into different buckets, depending on the grouping key.
The aggregate function will then be run on these buckets, calculating an aggregate value per bucket.
To use aggregations to sort the result set, the aggregation must be included in the RETURN
to be used in the ORDER BY
.
The DISTINCT
operator works in conjunction with aggregation.
It is used to make all values unique before running them through an aggregate function.
More information about DISTINCT
may be found here.
Functions:
The following graph is used for the examples below:
N0 [ label = "{Person|name = \'A\'\lage = 13\l}" ] N0 -> N1 [ color = "#2e3436" fontcolor = "#2e3436" label = "KNOWS\n" ] N0 -> N2 [ color = "#2e3436" fontcolor = "#2e3436" label = "KNOWS\n" ] N0 -> N3 [ color = "#2e3436" fontcolor = "#2e3436" label = "KNOWS\n" ] N1 [ label = "{Person|name = \'B\'\lage = 33\leyes = \'blue\'\l}" ] N1 -> N4 [ color = "#2e3436" fontcolor = "#2e3436" label = "KNOWS\n" ] N2 [ label = "{Person|name = \'C\'\lage = 44\leyes = \'blue\'\l}" ] N2 -> N4 [ color = "#2e3436" fontcolor = "#2e3436" label = "KNOWS\n" ] N3 [ label = "{Person|name = \'D\'\leyes = \'brown\'\l}" ] N4 [ label = "{Person|name = \'D\'\l}" ]
avg() - Numeric values
avg()
returns the average of a set of numeric values.
Syntax: avg(expression)
Returns:
Either an Integer or a Float, depending on the values returned by |
Arguments:
Name | Description |
---|---|
|
An expression returning a set of numeric values. |
Considerations:
Any |
|
MATCH (n:Person)
RETURN avg(n.age)
The average of all the values in the property age
is returned.
avg(n.age) |
---|
|
1 row |
avg() - Durations
avg()
returns the average of a set of Durations.
Syntax: avg(expression)
Returns:
A Duration. |
Arguments:
Name | Description |
---|---|
|
An expression returning a set of Durations. |
Considerations:
Any |
|
UNWIND [duration('P2DT3H'), duration('PT1H45S')] AS dur
RETURN avg(dur)
The average of the two supplied Durations is returned.
avg(dur) |
---|
|
1 row |
collect()
collect()
returns a list containing the values returned by an expression.
Using this function aggregates data by amalgamating multiple records or values into a single list.
Syntax: collect(expression)
Returns:
A list containing heterogeneous elements; the types of the elements are determined by the values returned by |
Arguments:
Name | Description |
---|---|
|
An expression returning a set of values. |
Considerations:
Any |
|
MATCH (n:Person)
RETURN collect(n.age)
All the values are collected and returned in a single list.
collect(n.age) |
---|
|
1 row |
count()
count()
returns the number of values or rows, and appears in two variants:
-
count(*)
returns the number of matching rows, and -
count(expr)
returns the number of non-null
values returned by an expression.
Syntax: count(expression)
Returns:
An Integer. |
Arguments:
Name | Description |
---|---|
|
An expression. |
Considerations:
|
|
|
Using count(*)
to return the number of nodes
count(*)
can be used to return the number of nodes; for example, the number of nodes connected to some node n
.
MATCH (n { name: 'A' })-->(x)
RETURN labels(n), n.age, count(*)
The labels and age
property of the start node n
and the number of nodes related to n
are returned.
labels(n) | n.age | count(*) |
---|---|---|
|
|
|
1 row |
Using count(*)
to group and count relationship types
count(*)
can be used to group relationship types and return the number.
MATCH (n { name: 'A' })-[r]->()
RETURN type(r), count(*)
The relationship types and their group count are returned.
type(r) | count(*) |
---|---|
|
|
1 row |
Using count(expression)
to return the number of values
Instead of simply returning the number of rows with count(*)
, it may be more useful to return the actual number of values returned by an expression.
MATCH (n { name: 'A' })-->(x)
RETURN count(x)
The number of nodes connected to the start node is returned.
count(x) |
---|
|
1 row |
Counting non-null
values
count(expression)
can be used to return the number of non-null
values returned by the expression.
MATCH (n:Person)
RETURN count(n.age)
The number of :Person
nodes having an age
property is returned.
count(n.age) |
---|
|
1 row |
Counting with and without duplicates
In this example we are trying to find all our friends of friends, and count them:
-
The first aggregate function,
count(DISTINCT friend_of_friend)
, will only count afriend_of_friend
once, asDISTINCT
removes the duplicates. -
The second aggregate function,
count(friend_of_friend)
, will consider the samefriend_of_friend
multiple times.
MATCH (me:Person)-->(friend:Person)-->(friend_of_friend:Person)
WHERE me.name = 'A'
RETURN count(DISTINCT friend_of_friend), count(friend_of_friend)
Both B
and C
know D
and thus D
will get counted twice when not using DISTINCT
.
count(DISTINCT friend_of_friend) | count(friend_of_friend) |
---|---|
|
|
1 row |
max()
max()
returns the maximum value in a set of values.
Syntax: max(expression)
Returns:
A property type, or a list, depending on the values returned by |
Arguments:
Name | Description |
---|---|
|
An expression returning a set containing any combination of property types and lists thereof. |
Considerations:
Any |
In a mixed set, any numeric value is always considered to be higher than any string value, and any string value is always considered to be higher than any list. |
Lists are compared in dictionary order, i.e. list elements are compared pairwise in ascending order from the start of the list to the end. |
|
UNWIND [1, 'a', NULL , 0.2, 'b', '1', '99'] AS val
RETURN max(val)
The highest of all the values in the mixed set — in this case, the numeric value 1
— is returned.
Note that the (string) value "99"
, which may appear at first glance to be the highest value in the list, is considered to be a lower value than 1
as the latter is a string.
max(val) |
---|
|
1 row |
UNWIND [[1, 'a', 89],[1, 2]] AS val
RETURN max(val)
The highest of all the lists in the set — in this case, the list [1, 2]
— is returned, as the number 2
is considered to be a higher value than the string "a"
, even though the list [1, 'a', 89]
contains more elements.
max(val) |
---|
|
1 row |
MATCH (n:Person)
RETURN max(n.age)
The highest of all the values in the property age
is returned.
max(n.age) |
---|
|
1 row |
min()
min()
returns the minimum value in a set of values.
Syntax: min(expression)
Returns:
A property type, or a list, depending on the values returned by |
Arguments:
Name | Description |
---|---|
|
An expression returning a set containing any combination of property types and lists thereof. |
Considerations:
Any |
In a mixed set, any string value is always considered to be lower than any numeric value, and any list is always considered to be lower than any string. |
Lists are compared in dictionary order, i.e. list elements are compared pairwise in ascending order from the start of the list to the end. |
|
UNWIND [1, 'a', NULL , 0.2, 'b', '1', '99'] AS val
RETURN min(val)
The lowest of all the values in the mixed set — in this case, the string value "1"
— is returned.
Note that the (numeric) value 0.2
, which may appear at first glance to be the lowest value in the list, is considered to be a higher value than "1"
as the latter is a string.
min(val) |
---|
|
1 row |
UNWIND ['d',[1, 2],['a', 'c', 23]] AS val
RETURN min(val)
The lowest of all the values in the set — in this case, the list ['a', 'c', 23]
— is returned, as (i) the two lists are considered to be lower values than the string "d"
, and (ii) the string "a"
is considered to be a lower value than the numerical value 1
.
min(val) |
---|
|
1 row |
MATCH (n:Person)
RETURN min(n.age)
The lowest of all the values in the property age
is returned.
min(n.age) |
---|
|
1 row |
percentileCont()
percentileCont()
returns the percentile of the given value over a group, with a percentile from 0.0 to 1.0.
It uses a linear interpolation method, calculating a weighted average between two values if the desired percentile lies between them.
For nearest values using a rounding method, see percentileDisc
.
Syntax: percentileCont(expression, percentile)
Returns:
A Float. |
Arguments:
Name | Description |
---|---|
|
A numeric expression. |
|
A numeric value between 0.0 and 1.0 |
Considerations:
Any |
|
MATCH (n:Person)
RETURN percentileCont(n.age, 0.4)
The 40th percentile of the values in the property age
is returned, calculated with a weighted average. In this case, 0.4 is the median, or 40th percentile.
percentileCont(n.age, 0.4) |
---|
|
1 row |
percentileDisc()
percentileDisc()
returns the percentile of the given value over a group, with a percentile from 0.0 to 1.0.
It uses a rounding method and calculates the nearest value to the percentile.
For interpolated values, see percentileCont
.
Syntax: percentileDisc(expression, percentile)
Returns:
Either an Integer or a Float, depending on the values returned by |
Arguments:
Name | Description |
---|---|
|
A numeric expression. |
|
A numeric value between 0.0 and 1.0 |
Considerations:
Any |
|
MATCH (n:Person)
RETURN percentileDisc(n.age, 0.5)
The 50th percentile of the values in the property age
is returned.
percentileDisc(n.age, 0.5) |
---|
|
1 row |
stDev()
stDev()
returns the standard deviation for the given value over a group.
It uses a standard two-pass method, with N - 1
as the denominator, and should be used when taking a sample of the population for an unbiased estimate.
When the standard variation of the entire population is being calculated, stdDevP
should be used.
Syntax: stDev(expression)
Returns:
A Float. |
Arguments:
Name | Description |
---|---|
|
A numeric expression. |
Considerations:
Any |
|
MATCH (n)
WHERE n.name IN ['A', 'B', 'C']
RETURN stDev(n.age)
The standard deviation of the values in the property age
is returned.
stDev(n.age) |
---|
|
1 row |
stDevP()
stDevP()
returns the standard deviation for the given value over a group.
It uses a standard two-pass method, with N
as the denominator, and should be used when calculating the standard deviation for an entire population.
When the standard variation of only a sample of the population is being calculated, stDev
should be used.
Syntax: stDevP(expression)
Returns:
A Float. |
Arguments:
Name | Description |
---|---|
|
A numeric expression. |
Considerations:
Any |
|
MATCH (n)
WHERE n.name IN ['A', 'B', 'C']
RETURN stDevP(n.age)
The population standard deviation of the values in the property age
is returned.
stDevP(n.age) |
---|
|
1 row |
sum() - Numeric values
sum()
returns the sum of a set of numeric values.
Syntax: sum(expression)
Returns:
Either an Integer or a Float, depending on the values returned by |
Arguments:
Name | Description |
---|---|
|
An expression returning a set of numeric values. |
Considerations:
Any |
|
MATCH (n:Person)
RETURN sum(n.age)
The sum of all the values in the property age
is returned.
sum(n.age) |
---|
|
1 row |
sum() - Durations
sum()
returns the sum of a set of Durations.
Syntax: sum(expression)
Returns:
A Duration. |
Arguments:
Name | Description |
---|---|
|
An expression returning a set of Durations. |
Considerations:
Any |
UNWIND [duration('P2DT3H'), duration('PT1H45S')] AS dur
RETURN sum(dur)
The sum of the two supplied Durations is returned.
sum(dur) |
---|
|
1 row |