max
Computes the maximum of all grouped values.
max(xs:list) -> number
Description
Section titled “Description”The max
function returns the largest numeric value in xs
.
xs: list
Section titled “xs: list”The values to evaluate.
Examples
Section titled “Examples”Find the maximum value
Section titled “Find the maximum value”from {x: 1}, {x: 2}, {x: 3}summarize max_value=max(x)
{max_value: 3}