Skip to content

daft.functions.cbrt#

cbrt #

cbrt(expr: Expression) -> Expression

The cube root of a numeric expression.

Source code in daft/functions/numeric.py
70
71
72
def cbrt(expr: Expression) -> Expression:
    """The cube root of a numeric expression."""
    return Expression._call_builtin_scalar_fn("cbrt", expr)