Skip to content

Commit

Permalink
python docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Jan 23, 2022
1 parent d39e8c4 commit fc200dc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions py-polars/polars/internals/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -2380,7 +2380,7 @@ def groupby_rolling(
.. seealso::
groupby_rolling
groupby_dynamic
The `period` and `offset` arguments are created with
Expand All @@ -2403,8 +2403,8 @@ def groupby_rolling(
In case of a groupby_rolling on an integer column, the windows are defined by:
- "1i" # length 1
- "10i" # length 2
- **"1i" # length 1**
- **"10i" # length 10**
.. warning::
This API is experimental and may change without it being considered a breaking change.
Expand Down Expand Up @@ -2523,7 +2523,7 @@ def groupby_dynamic(
In case of a groupby_dynamic on an integer column, the windows are defined by:
- "1i" # length 1
- "10i" # length 2
- "10i" # length 10
.. warning::
This API is experimental and may change without it being considered a breaking change.
Expand Down
6 changes: 3 additions & 3 deletions py-polars/polars/internals/lazy_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ def groupby_rolling(
.. seealso::
groupby_rolling
groupby_dynamic
The `period` and `offset` arguments are created with
Expand All @@ -570,7 +570,7 @@ def groupby_rolling(
In case of a groupby_rolling on an integer column, the windows are defined by:
- "1i" # length 1
- "10i" # length 2
- "10i" # length 10
.. warning::
This API is experimental and may change without it being considered a breaking change.
Expand Down Expand Up @@ -697,7 +697,7 @@ def groupby_dynamic(
In case of a groupby_dynamic on an integer column, the windows are defined by:
- "1i" # length 1
- "10i" # length 2
- "10i" # length 10
.. warning::
This API is experimental and may change without it being considered a breaking change.
Expand Down

0 comments on commit fc200dc

Please sign in to comment.