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