Skip to content

Commit e6991a5

Browse files
anjalis912WillAyd
authored andcommitted
DOC fix truncated documentation for Series.unstack(), Series. (#31260)
1 parent 79f3b4c commit e6991a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas/core/generic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7498,7 +7498,7 @@ def at_time(
74987498
self: FrameOrSeries, time, asof: bool_t = False, axis=None
74997499
) -> FrameOrSeries:
75007500
"""
7501-
Select values at particular time of day (e.g. 9:30AM).
7501+
Select values at particular time of day (e.g., 9:30AM).
75027502
75037503
Parameters
75047504
----------

pandas/core/series.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3484,7 +3484,7 @@ def explode(self) -> "Series":
34843484

34853485
def unstack(self, level=-1, fill_value=None):
34863486
"""
3487-
Unstack, a.k.a. pivot, Series with MultiIndex to produce DataFrame.
3487+
Unstack, also known as pivot, Series with MultiIndex to produce DataFrame.
34883488
The level involved will automatically get sorted.
34893489
34903490
Parameters

0 commit comments

Comments
 (0)