Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 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
6 changes: 3 additions & 3 deletions pandas/core/groupby/groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -3659,10 +3659,10 @@ def rolling(
Parameters
----------
window : int, timedelta, str, offset, or BaseIndexer subclass
Size of the moving window.
Interval of the moving window.

If an integer, the fixed number of observations used for
each window.
If an integer, the delta between the start and end of each window.
Example: window = 3 interval from 1 -> 4

If a timedelta, str, or offset, the time period of each window. Each
window will be a variable sized based on the observations included in
Expand Down
6 changes: 3 additions & 3 deletions pandas/core/window/rolling.py
Original file line number Diff line number Diff line change
Expand Up @@ -881,10 +881,10 @@ class Window(BaseWindow):
Parameters
----------
window : int, timedelta, str, offset, or BaseIndexer subclass
Size of the moving window.
Interval of the moving window.

If an integer, the fixed number of observations used for
each window.
If an integer, the delta between the start and end of each window.
Example: window = 3 interval from 1 -> 4

If a timedelta, str, or offset, the time period of each window. Each
window will be a variable sized based on the observations included in
Expand Down
Loading