Skip to content

Commit d3ef094

Browse files
Fix parameter types
1 parent d5a262a commit d3ef094

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/frame.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5162,11 +5162,11 @@ def stack(self, level=-1, dropna=True):
51625162
51635163
Parameters
51645164
----------
5165-
level : int, string, list, default last level
5165+
level : int, str, list, default -1
51665166
Level(s) to stack from the column axis onto the index
51675167
axis, defined as one index or label, or a list of indices
51685168
or labels.
5169-
dropna : boolean, default True
5169+
dropna : bool, default True
51705170
Whether to drop rows in the resulting Frame/Series with
51715171
missing values. Stacking a column level onto the index
51725172
axis can create combinations of index and column values

0 commit comments

Comments
 (0)