Skip to content

daft.functions.sqrt#

sqrt #

sqrt(expr: Expression) -> Expression

The square root of a numeric expression.

Source code in daft/functions/numeric.py
65
66
67
def sqrt(expr: Expression) -> Expression:
    """The square root of a numeric expression."""
    return Expression._call_builtin_scalar_fn("sqrt", expr)