We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d6f4d4 commit 510c4d0Copy full SHA for 510c4d0
python/datafusion/functions.py
@@ -586,7 +586,6 @@ def atan2(y: Expr, x: Expr) -> Expr:
586
>>> df = ctx.from_pydict({"y": [0.0], "x": [1.0]})
587
>>> result = df.select(
588
... dfn.functions.atan2(dfn.col("y"), dfn.col("x")).alias("atan2"))
589
- >>> result = result
590
>>> result.collect_column("atan2")[0].as_py()
591
0.0
592
"""
0 commit comments