Aggregation
Total, average, median, smallest and largest
| Function | What it does |
|---|---|
max | The largest element. Takes one array, where math.Max takes two numbers |
mean | The average of the elements, always a decimal |
median | The middle value; the average of the middle two when the count is even |
min | The smallest element. Takes one array, where math.Min takes two numbers |
sum | The total of the elements; stays an integer when they all are |