Skip to content

CI: ignore experimental warnings from numba #53726

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions doc/source/user_guide/window.rst
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ For example, a `weighted mean <https://en.wikipedia.org/wiki/Weighted_arithmetic
be calculated with :meth:`~Rolling.apply` by specifying a separate column of weights.

.. ipython:: python
:okwarning:

def weighted_mean(x):
arr = np.ones((1, x.shape[1]))
Expand All @@ -114,6 +115,7 @@ the ``update`` argument to continue the windowing calculation.
df.ewm(0.5).mean()

.. ipython:: python
:okwarning:

online_ewm = df.head(2).ewm(0.5).online()
online_ewm.mean()
Expand Down