Skip to content

Commit c2fade1

Browse files
authored
Fixed typo (#48731)
Fixed type (have -> and on line 207)
1 parent 7d852a9 commit c2fade1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/groupby/groupby.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ class providing the base-class of operations.
204204
>>> g1 = df.groupby('A', group_keys=False)
205205
>>> g2 = df.groupby('A', group_keys=True)
206206
207-
Notice that ``g1`` have ``g2`` have two groups, ``a`` and ``b``, and only
207+
Notice that ``g1`` and ``g2`` have two groups, ``a`` and ``b``, and only
208208
differ in their ``group_keys`` argument. Calling `apply` in various ways,
209209
we can get different grouping results:
210210

0 commit comments

Comments
 (0)