Skip to main content
Version: 0.9.1

Expr.arcsin

def arcsin() -> Expr

Categories: numeric

Calculate the inverse sine of the element value.

Examples

>>> import tabsdata as td
>>>
>>> tf: td.TableFrame ...
>>>
>>> tf = tf.select(td.col("val"), td.col("val").arcsin().alias("arcsin"))
>>>
┌──────┬──────────┐
│ val ┆ arcsin │
------
│ f64 ┆ f64 │
╞══════╪══════════╡
0.010.01
0.150.150568
0.180.180986
0.60.643501
0.60.643501
0.750.848062
│ null ┆ null │
└──────┴──────────┘