Skip to content

Commit 15ecaf7

Browse files
authored
Update generic.py
1 parent d50bbc9 commit 15ecaf7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pandas/core/generic.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -5075,9 +5075,8 @@ 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.
5079-
As pandas operations generally exclude NaNs, for example `.agg(np.nanmedian)`,
5080-
`.agg(np.median)`, and `.agg('median') will return the same result.
5078+
- Pandas operations generally exclude NaNs. For example, `agg(np.nanmedian)`,
5079+
`agg(np.median)`, and `agg('median') will return the same result.
50815080
50825081
A passed user-defined-function will be passed a Series for evaluation.
50835082
{examples}"""

0 commit comments

Comments
 (0)