Skip to content

Commit

Permalink
Added note on dtypes from moving_quantile
Browse files Browse the repository at this point in the history
  • Loading branch information
javiber committed Jun 5, 2024
1 parent 8b9fb1d commit 5d5f05f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions temporian/core/event_set_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -3247,6 +3247,10 @@ def moving_quantile(
The quantile calculated in each window is equivalent to numpy's
`"averaged_inverted_cdf"` method.
This operation only accepts numeric dtypes in the input.
For `float64` the output will be `float64` but for
`float32`, `int64`, and `int32` output will be `float32`.
Example:
```python
>>> a = tp.event_set(
Expand Down

0 comments on commit 5d5f05f

Please sign in to comment.