tabsdata.tableframe.expr.expr.Expr.sinh#
- Expr.sinh() Expr [source]#
Calculate the hyperbolic sine of the element value.
Example:
>>> import tabsdata as td >>> >>> tf: td.TableFrame ... >>> >>> tf.select(td.col("val"), td.col("val").sinh().alias("sinh")) >>> ┌─────┬───────────┐ │ val ┆ sinh │ │ --- ┆ --- │ │ i64 ┆ f64 │ ╞═════╪═══════════╡ │ 0 ┆ 0.0 │ │ 30 ┆ 5.3432e12 │ │ 60 ┆ 5.7100e25 │ │ 90 ┆ 6.1020e38 │ └─────┴───────────┘