From a3298742c54d481e479be630613a71ad1970014f Mon Sep 17 00:00:00 2001 From: Kamila Wisniewska Date: Fri, 23 Sep 2022 08:18:10 -0400 Subject: [PATCH] Fixed typo in core/groupby/groupby.py --- pandas/core/groupby/groupby.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/groupby/groupby.py b/pandas/core/groupby/groupby.py index d5151d84e20bb..77b0d2e486bc2 100644 --- a/pandas/core/groupby/groupby.py +++ b/pandas/core/groupby/groupby.py @@ -204,7 +204,7 @@ class providing the base-class of operations. >>> g1 = df.groupby('A', group_keys=False) >>> g2 = df.groupby('A', group_keys=True) - Notice that ``g1`` have ``g2`` have two groups, ``a`` and ``b``, and only + Notice that ``g1`` and ``g2`` have two groups, ``a`` and ``b``, and only differ in their ``group_keys`` argument. Calling `apply` in various ways, we can get different grouping results: