Skip to content

temporian.EventSet.arcsin #

arcsin() -> EventSetOrNode

Calculates the inverse sine of an EventSet's features.

Can only be used on floating point features.

Example
>>> a = tp.event_set(
...     timestamps=[1, 2, 3],
...     features={"M": [0, 0.5, -0.5]},
... )
>>> a.arcsin()
indexes: ...
        timestamps: [1. 2. 3.]
        'M': [ 0.      0.5236 -0.5236]
...

Returns:

Type Description
EventSetOrNode

EventSetOrNode with inverse sine of input features.