Skip to content

max

Computes the maximum of all grouped values.

max(xs:list) -> number

The max function returns the largest numeric value in xs.

The values to evaluate.

from {x: 1}, {x: 2}, {x: 3}
summarize max_value=max(x)
{max_value: 3}

min, mean, sum