Skip to content

daft.functions.min#

min #

min(expr: Expression) -> Expression

Calculates the minimum of the values in the expression.

Source code in daft/functions/agg.py
198
199
200
def min(expr: Expression) -> Expression:
    """Calculates the minimum of the values in the expression."""
    return Expression._from_pyexpr(expr._expr.min())