Promptles
Data & Transformation

Aggregation

beginner

Definition

Combining many individual data points into a summary. Aggregations answer questions like 'how many,' 'what's the total,' or 'what's the average' by collapsing a list of values into a single result.

In the wild

Given order amounts [25, 50, 75, 100], you can aggregate them: sum is 250, average is 62.50, count is 4, max is 100. A dashboard might show 'Total Revenue: $250': that's an aggregation of every order.

More from Data & Transformation