polars.Series.sin#
- Series.sin() Series[source]#
Compute the element-wise value for the sine.
Notes
Input values are interpreted as radians. To convert from degrees to radians, call
.radians().Examples
>>> import math >>> s = pl.Series("a", [0.0, math.pi / 2.0, math.pi]) >>> s.sin() shape: (3,) Series: 'a' [f64] [ 0.0 1.0 1.2246e-16 ]