Skip to content

daft.functions.arctan#

arctan #

arctan(expr: Expression) -> Expression

The elementwise arc tangent of a numeric expression.

Source code in daft/functions/numeric.py
130
131
132
def arctan(expr: Expression) -> Expression:
    """The elementwise arc tangent of a numeric expression."""
    return Expression._call_builtin_scalar_fn("arctan", expr)