Aggregate refers to the process of summarizing grouped data, commonly used in Statistics.
Aggregate refers to the process of summarizing grouped data, commonly used in Statistics. Typically this involves replacing groups of data with single values (e.g. sum, mean, standard deviation, etc.). In SQL databases and data manipulation libraries such as pandas in python, this is accomplished with the use of GROUP BY
and aggregate functions.
Documentation: