From a2e6120bc21ccdd23d95ce813023692426180b39 Mon Sep 17 00:00:00 2001 From: Mingxi Wu Date: Sun, 19 Jan 2025 20:05:02 -0800 Subject: [PATCH] Update Cypher.md --- demos/guru_scripts/docker/tutorial/4.x/Cypher.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/demos/guru_scripts/docker/tutorial/4.x/Cypher.md b/demos/guru_scripts/docker/tutorial/4.x/Cypher.md index ee235995..593b115f 100644 --- a/demos/guru_scripts/docker/tutorial/4.x/Cypher.md +++ b/demos/guru_scripts/docker/tutorial/4.x/Cypher.md @@ -661,14 +661,14 @@ The result is shown in [c19.out](https://github.com/tigergraph/ecosys/blob/maste Aggregation functions in OpenCypher allow you to perform calculations over a set of values, summarizing or transforming the data into a single result. These functions are typically used in combination with the WITH or RETURN clauses to compute aggregate values based on certain criteria. ### Common Aggregation Functions: -***COUNT()***: Counts the number of items in a given set. e.g. COUNT(*), COUNT(1), COUNT(DISTINCT columnName). -***SUM()***: Computes the sum of numeric values. It is often used to calculate totals, such as the total amount transferred. -***AVG()***: Calculates the average of numeric values. -***MIN()***: Finds the smallest value in a set. Often used to determine the minimum amount or value. -***MAX()***: Finds the largest value in a set. This is useful for identifying the highest value. -***COLLECT()***: Aggregates values into a list. Can be used to collect nodes or relationships into a list for further processing. -***STDEV()***: Computes the standard deviation of values. -***STDEVP()***: Computes the population standard deviation of values. +- ***COUNT()***: Counts the number of items in a given set. e.g. COUNT(*), COUNT(1), COUNT(DISTINCT columnName). +- ***SUM()***: Computes the sum of numeric values. It is often used to calculate totals, such as the total amount transferred. +- ***AVG()***: Calculates the average of numeric values. +- ***MIN()***: Finds the smallest value in a set. Often used to determine the minimum amount or value. +- ***MAX()***: Finds the largest value in a set. This is useful for identifying the highest value. +- ***COLLECT()***: Aggregates values into a list. Can be used to collect nodes or relationships into a list for further processing. +- ***STDEV()***: Computes the standard deviation of values. +- ***STDEVP()***: Computes the population standard deviation of values. # Support