Skip to content
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

DOC: Updated aggregate docstring #35042

Merged
merged 14 commits into from
Aug 24, 2020
5 changes: 4 additions & 1 deletion pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -5074,7 +5074,10 @@ def pipe(self, func, *args, **kwargs):
{see_also}
Notes
-----
`agg` is an alias for `aggregate`. Use the alias.
- `agg` is an alias for `aggregate`. Use the alias.
- Some NumPy functions resolve to their corresponding internal Cython function.
As pandas operations generally exclude NaNs, for example `.agg(np.nanmedian)`,
`.agg(np.median)`, and `.agg('median') will return the same result.
gurukiran07 marked this conversation as resolved.
Show resolved Hide resolved

A passed user-defined-function will be passed a Series for evaluation.
{examples}"""
Expand Down