8000 DOC: Fix docstrings with the sections in the wrong order #24280 by benjaminr · Pull Request #24288 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DOC: Fix docstrings with the sections in the wrong order #24280 #24288

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Dec 19, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Removal of whitespace to satisfy flak8 checks.
  • Loading branch information
benjaminr committed Dec 14, 2018
commit c73c5f041952d1e6cda384b2d04f728bcdb92871
2 changes: 1 addition & 1 deletion pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -6046,7 +6046,7 @@ def _gotitem(self,
axis=0)``.

`agg` is an alias for `aggregate`. Use the alias.

See Also
--------
DataFrame.apply : Perform any type of operations.
Expand Down
2 changes: 1 addition & 1 deletion pandas/core/groupby/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1252,7 +1252,7 @@ class DataFrameGroupBy(NDFrameGroupBy):
pandas.DataFrame.groupby.apply
pandas.DataFrame.groupby.transform
pandas.DataFrame.aggregate

Examples
--------

Expand Down
4 changes: 2 additions & 2 deletions pandas/core/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -1293,7 +1293,7 @@ def kurt(self, **kwargs):
Series or DataFrame
Returned object type is determined by the caller of the %(name)s
calculation.

See Also
--------
pandas.Series.quantile : Computes value at the given quantile over all data
Expand Down Expand Up @@ -1889,7 +1889,7 @@ def _get_window(self, other=None):
pandas.DataFrame.expanding.aggregate
pandas.DataFrame.rolling.aggregate
pandas.DataFrame.aggregate

Examples
--------

Expand Down
0