Skip to content

Commit

Permalink
Update generic.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gurukiran07 committed Jul 21, 2020
1 parent d50bbc9 commit 15ecaf7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -5075,9 +5075,8 @@ def pipe(self, func, *args, **kwargs):
Notes
-----
- `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.
- Pandas operations generally exclude NaNs. For example, `agg(np.nanmedian)`,
`agg(np.median)`, and `agg('median') will return the same result.
A passed user-defined-function will be passed a Series for evaluation.
{examples}"""
Expand Down

0 comments on commit 15ecaf7

Please sign in to comment.