Product Overview
Strengths
Product Features
Use Cases
id | Product | Time | Amount |
1 | Tissue | 2022-01-02 12:10:23 | 10 |
2 | Towel | 2022-01-01 09:50:13 | 3 |
3 | Tissue | 2022-01-01 08:32:41 | 10 |
4 | Water | 2022-01-01 08:32:09 | 1 |



id | Product | Time | Amount |
1 | Tissue | 2022-01-02 12:10:23 | 10 |
2 | Towel | 2022-01-01 09:50:13 | 3 |
3 | Towel | 2022-01-01 08:32:41 | 10 |
4 | Water | 2022-01-01 08:32:09 | 1 |
5 | Water | 2022-01-01 08:32:08 | 1 |
Aggregation Method | Aggregation Description | Example |
No aggregation | Get the value of the first record | The result is 1 (Amount of ID: 5, which needs to be viewed combined with the sorting order) |
Sum | Sum all numeric values | The result is 3+10+1+1 = 15 |
Maximum value | Get the maximum value from all records | The result is 10 (Amount of ID: 3) |
Minimum value | Get the minimum value from all records | The result is 1 (Amount of ID: 4) |
Average value | Get the sum of all record values divided by the number of records | The result is (3+10+1+1)/4 = 3.75 |
Count | Get the number of record occurrences | The result is 4 |
Count after deduplication | Get the number of unique records | The result is 3 (ID: 4 and ID: 5 have duplicate values) |
Median | Get the median value in the current sorting order | The result is 10 (Amount of ID: 3, assuming ID as the dimension and sorting by ID) |
Sample standard deviation | Get the sample standard deviation for the current date | The result is 4 (For details, see related mathematical method descriptions) |
Population standard deviation | Get the standard deviation of the population for the current date | The result is 4 (For details, see related mathematical method descriptions) |
Sample variance | Get the sample variance for the current date | The result is 18 (For details, see related mathematical method descriptions) |
Population variance | Get the population variance for the current date | The result is 14 (For details, see related mathematical method descriptions). |
Mode | Get the most frequently occurring value for the current date | The result is 10 (For details, see related mathematical method descriptions. The amounts 10 and 1 appear twice each, which need to be viewed combined with the ranking order) |
Aggregation Method | Aggregation Description | Example |
Count | Get the number of record occurrences | The result is 4 |
Count after deduplication | Get the number of unique records | The result is 2 (ID: 2 and ID: 3, ID: 4 and ID: 5 have duplicate values) |
Was this page helpful?
You can also Contact sales or Submit a Ticket for help.
Help us improve! Rate your documentation experience in 5 mins.
Feedback