You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/computation.rst
+2-9
Original file line number
Diff line number
Diff line change
@@ -209,19 +209,12 @@ Window Functions
209
209
210
210
.. currentmodule:: pandas.core.window
211
211
212
-
.. warning::
213
-
214
-
Prior to version 0.18.0, ``pd.rolling_*``, ``pd.expanding_*``, and ``pd.ewm*`` were module level
215
-
functions and are now deprecated. These are replaced by using the :class:`~pandas.core.window.Rolling`, :class:`~pandas.core.window.Expanding` and :class:`~pandas.core.window.EWM`. objects and a corresponding method call.
216
-
217
-
The deprecation warning will show the new syntax, see an example :ref:`here <whatsnew_0180.window_deprecations>`.
218
-
219
-
For working with data, a number of windows functions are provided for
212
+
For working with data, a number of window functions are provided for
220
213
computing common *window* or *rolling* statistics. Among these are count, sum,
221
214
mean, median, correlation, variance, covariance, standard deviation, skewness,
222
215
and kurtosis.
223
216
224
-
Starting in version 0.18.1, the ``rolling()`` and ``expanding()``
217
+
The ``rolling()`` and ``expanding()``
225
218
functions can be used directly from DataFrameGroupBy objects,
226
219
see the :ref:`groupby docs <groupby.transform.window_resample>`.
0 commit comments