pyarrow.compute.atan#

pyarrow.compute.atan(x, /, *, memory_pool=None)#

Compute the inverse tangent of x.

The return value is in the range [-pi/2, pi/2]; for a full return range [-pi, pi], see “atan2”.

Parameters:
xArray-like or scalar-like

Argument to compute function.

memory_poolpyarrow.MemoryPool, optional

If not passed, will allocate memory from the default memory pool.