Skip to content

Commit a499071

Browse files
MarcoGorelliim-vinicius
authored and
im-vinicius
committed
CI: ignore experimental warnings from numba (pandas-dev#53726)
1 parent ba2f0ae commit a499071

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

doc/source/user_guide/window.rst

+2
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ For example, a `weighted mean <https://en.wikipedia.org/wiki/Weighted_arithmetic
8989
be calculated with :meth:`~Rolling.apply` by specifying a separate column of weights.
9090

9191
.. ipython:: python
92+
:okwarning:
9293
9394
def weighted_mean(x):
9495
arr = np.ones((1, x.shape[1]))
@@ -114,6 +115,7 @@ the ``update`` argument to continue the windowing calculation.
114115
df.ewm(0.5).mean()
115116
116117
.. ipython:: python
118+
:okwarning:
117119
118120
online_ewm = df.head(2).ewm(0.5).online()
119121
online_ewm.mean()

0 commit comments

Comments
 (0)