Skip to content

Commit ccf060c

Browse files
committed
fix(comment): #61455 (comment)
1 parent a95127b commit ccf060c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

pandas/core/frame.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9177,11 +9177,11 @@ def groupby(
91779177
91789178
Parameters
91799179
----------%s
9180-
columns : label or a sequence of the previous
9180+
columns : Hashable or a sequence of the previous
91819181
Column to use to make new frame's columns.
9182-
index : label or a sequence of the previous, optional
9182+
index : Hashable or a sequence of the previous, optional
91839183
Column to use to make new frame's index. If not given, uses existing index.
9184-
values : label or a sequence of the previous, optional
9184+
values : Hashable or a sequence of the previous, optional
91859185
Column(s) to use for populating new frame's values. If not
91869186
specified, all remaining columns will be used and the result will
91879187
have hierarchically indexed columns.

pandas/core/reshape/pivot.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -708,11 +708,11 @@ def pivot(
708708
----------
709709
data : DataFrame
710710
Input pandas DataFrame object.
711-
columns : label or a sequence of the previous
711+
columns : Hashable or a sequence of the previous
712712
Column to use to make new frame's columns.
713-
index : label or a sequence of the previous, optional
713+
index : Hashable or a sequence of the previous, optional
714714
Column to use to make new frame's index. If not given, uses existing index.
715-
values : label or a sequence of the previous, optional
715+
values : Hashable or a sequence of the previous, optional
716716
Column(s) to use for populating new frame's values. If not
717717
specified, all remaining columns will be used and the result will
718718
have hierarchically indexed columns.

0 commit comments

Comments
 (0)