Skip to content

Commit 26add4a

Browse files
authored
Update generic.py
1 parent fff4b7e commit 26add4a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/core/generic.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5075,9 +5075,9 @@ def pipe(self, func, *args, **kwargs):
50755075
Notes
50765076
-----
50775077
- `agg` is an alias for `aggregate`. Use the alias.
5078-
- Some NumPy functions resolve to their corresponding internal Cython function. As pandas operations
5079-
generally exclude NaNs, this means that `.agg(np.nanmedian)`, `.agg(np.median)`, and `.agg('median')
5080-
will return the same result.
5078+
- Some NumPy functions resolve to their corresponding internal Cython function.
5079+
As pandas operations generally exclude NaNs, for example `.agg(np.nanmedian)`,
5080+
`.agg(np.median)`, and `.agg('median') will return the same result.
50815081
50825082
A passed user-defined-function will be passed a Series for evaluation.
50835083
{examples}"""

0 commit comments

Comments
 (0)