1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
{{ header }}
.. _api.window:
======
Window
======
Rolling objects are returned by ``.rolling`` calls: :func:`pandas.DataFrame.rolling`, :func:`pandas.Series.rolling`, etc.
Expanding objects are returned by ``.expanding`` calls: :func:`pandas.DataFrame.expanding`, :func:`pandas.Series.expanding`, etc.
ExponentialMovingWindow objects are returned by ``.ewm`` calls: :func:`pandas.DataFrame.ewm`, :func:`pandas.Series.ewm`, etc.
.. _api.functions_rolling:
Rolling window functions
------------------------
.. currentmodule:: pandas.core.window.rolling
.. autosummary::
:toctree: api/
Rolling.count
Rolling.sum
Rolling.mean
Rolling.median
Rolling.var
Rolling.std
Rolling.min
Rolling.max
Rolling.corr
Rolling.cov
Rolling.skew
Rolling.kurt
Rolling.apply
Rolling.aggregate
Rolling.quantile
Rolling.sem
Rolling.rank
.. _api.functions_window:
Weighted window functions
-------------------------
.. currentmodule:: pandas.core.window.rolling
.. autosummary::
:toctree: api/
Window.mean
Window.sum
Window.var
Window.std
.. _api.functions_expanding:
Expanding window functions
--------------------------
.. currentmodule:: pandas.core.window.expanding
.. autosummary::
:toctree: api/
Expanding.count
Expanding.sum
Expanding.mean
Expanding.median
Expanding.var
Expanding.std
Expanding.min
Expanding.max
Expanding.corr
Expanding.cov
Expanding.skew
Expanding.kurt
Expanding.apply
Expanding.aggregate
Expanding.quantile
Expanding.sem
Expanding.rank
.. _api.functions_ewm:
Exponentially-weighted window functions
---------------------------------------
.. currentmodule:: pandas.core.window.ewm
.. autosummary::
:toctree: api/
ExponentialMovingWindow.mean
ExponentialMovingWindow.sum
ExponentialMovingWindow.std
ExponentialMovingWindow.var
ExponentialMovingWindow.corr
ExponentialMovingWindow.cov
.. _api.indexers_window:
Window indexer
--------------
.. currentmodule:: pandas
Base class for defining custom window boundaries.
.. autosummary::
:toctree: api/
api.indexers.BaseIndexer
api.indexers.FixedForwardWindowIndexer
api.indexers.VariableOffsetWindowIndexer
|