Skip to main content
Version: 1.3.0

Expr.sinh

def sinh() -> Expr

Categories: numeric

Calculate the hyperbolic sine of the element value.

Examples

>>> import tabsdata as td
>>>
>>> tf: td.TableFrame ...
>>>
>>> tf.select(td.col("val"), td.col("val").sinh().alias("sinh"))
>>>
┌─────┬───────────┐
│ val ┆ sinh │
------
│ i64 ┆ f64 │
╞═════╪═══════════╡
00.0
305.3432e12
605.7100e25
906.1020e38
└─────┴───────────┘