featurebyte.atan2¶
atan2(
y: Series,
x: Series
) -> SeriesDescription¶
Construct a Series that contains the two-argument arctangent (atan2) values. Returns the angle in radians between the positive x-axis of a plane and the point given by the coordinates (x, y) on it.
Parameters¶
- y: Series
Series representing the y-coordinate - x: Series
Series representing the x-coordinate
Returns¶
- Series