polars
polars copied to clipboard
Add expression to mirror `math.isclose` and `numpy.isclose`
Problem description
Python's math library defines
math.isclose(a, b, *, rel_tol=1e-09, abs_tol=0.0)
to test whether two floating points values are within a given tolerance of each other. Numpy also implements this operator.