From ea487fc9b197285f25b066450c46fc456db09e2a Mon Sep 17 00:00:00 2001 From: gfyoung Date: Sun, 16 Jul 2017 23:19:27 -0700 Subject: [PATCH] DOC: Clarify 'it' in aggregate doc (#16989) Closes gh-16988. --- pandas/core/generic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/generic.py b/pandas/core/generic.py index e4e2e0093b1a6..f12592feaa4c3 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -3152,7 +3152,7 @@ def pipe(self, func, *args, **kwargs): (e.g., np.mean(arr_2d, axis=0)) as opposed to mimicking the default Numpy behavior (e.g., np.mean(arr_2d)). - agg is an alias for aggregate. Use it. + `agg` is an alias for `aggregate`. Use the alias. Returns -------