polars.Expr.sin#

Expr.sin() Expr[source]#

Compute the element-wise value for the sine.

Returns:
Expr

Expression of data type Float64.

Notes

The argument must be in radians. To convert from degrees to radians, call .radians().

Examples

>>> from math import pi
>>> df = pl.DataFrame({"a": [0.0, pi / 2]})
>>> df.select(pl.col("a").sin())
shape: (2, 1)
┌─────┐
│ a   │
│ --- │
│ f64 │
╞═════╡
│ 0.0 │
│ 1.0 │
└─────┘
>>> df = pl.DataFrame({"a": [0.0, 90]})
>>> df.select(pl.col("a").radians().sin())
shape: (2, 1)
┌─────┐
│ a   │
│ --- │
│ f64 │
╞═════╡
│ 0.0 │
│ 1.0 │
└─────┘