Category: Transform / Advanced
This action appends to a dataset a new column that contains an aggregated value for the selected column, or for groupings in that column. The aggregation options are: Sum, Count, Average, Min, or Max.
Create a "total" column to calculate a total or group sum to be used to calculate a percentage value (e.g. total value/ group value).
Setting | Description |
---|---|
New column | Enter a name for the new total/subtotal column. |
Target column | Select the numeric column used to generate the aggregate values. |
Mode | Select the aggregation mode. Options: Sum, Count, Average, Min, and Max. |
Groups | Select whether to derive the total/subtotal value across all rows in the dataset or grouped by selected columns. Options: Column total or Subtotal inside groups (and select the columns to subtotal by). |
The new column will appear as the rightmost column in the dataset, by default.
The grouping aspect of the Subtotal inside groups option is case-sensitive. Values in the grouping column(s) having different cases will be calculated as unique values (e.g. not combined).
Calculate the total of sales across all regions.
Region | Sales |
---|---|
North | 100 |
East | 200 |
North | 150 |
East | 125 |
Region | Sales | Total Sales |
---|---|---|
North | 100 | 250 |
East | 200 | 325 |
North | 150 | 250 |
East | 125 | 325 |
New column: Total Sales
Target column: Sales
Mode: Sum
Groups: Column region
Calculate the average number of points scored by each team across all games.
Game ID | Team | Goals Scored |
---|---|---|
G01 | Maple Leafs | 4 |
G01 | Canucks | 3 |
G02 | Maple Leafs | 2 |
G02 | Canadiens | 5 |
G03 | Oilers | 6 |
G03 | Flames | 4 |
G04 | Oilers | 3 |
G04 | Canucks | 5 |
G05 | Canadiens | 2 |
G05 | Flames | 3 |
Game ID | Team | Goals Scored | Average Goals |
---|---|---|---|
G01 | Maple Leafs | 4 | 3 |
G01 | Canucks | 3 | 4 |
G02 | Maple Leafs | 2 | 3 |
G02 | Canadiens | 5 | 3.5 |
G03 | Oilers | 6 | 4.5 |
G03 | Flames | 4 | 3.5 |
G04 | Oilers | 3 | 4.5 |
G04 | Canucks | 5 | 4 |
G05 | Canadiens | 2 | 3.5 |
G05 | Flames | 3 | 3.5 |
New column: Average Goals
Target column: Goals Scored
Mode: Average
Groups: Subtotal inside groups (Team)