javier

Results 16 comments of javier
trafficstars

Yes, the `max_timestamps` is the `min(config.display_max_events, num_timestamps)` so when we fixed the ellipsis for `display_max_events == 1` we broke it when `num_timestamps == 1` Adding that check would fix it,...

you can install jupyter bypassing the pyproject.toml with `poetry run pip install jupyter` and then `poetry run jupyter notebook`. For vscode, I always set `poetry config virtualenvs.path .venv` and `poetry...

Hi @akshatvishu I think that we can implement this one using numpy's `mean` and `std` whiteout going down to c++. Scipy's implementation for future reference: https://github.com/scipy/scipy/blob/v1.13.0/scipy/stats/_stats_py.py#L3021

Hi @akshatvishu, All yours!

hi @SchadtJ Sorry for the late response, this issue flew under my radar after the handoff from Ian. We discussed this internally and we think it's a better solution to...

We decided to change the names to `global_min` and `global_max` to contrast moving min/max even more. The implementation would be done with the `moving_min` and `moving_max`, sampling the end of...