Skip to content

Commit

Permalink
update window
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianOuslis committed Feb 4, 2025
1 parent 6684f34 commit 568d518
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions pandas/core/groupby/groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -3605,10 +3605,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

0 comments on commit 568d518

Please sign in to comment.