We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ac7f9d commit dbac892Copy full SHA for dbac892
pandas/core/series.py
@@ -4154,9 +4154,13 @@ def drop(
4154
Index labels to drop.
4155
axis : 0, default 0
4156
Redundant for application on Series.
4157
- index, columns : None
4158
- Redundant for application on Series, but index can be used instead
4159
- of labels.
+ index : single label or list-like
+ Redundant for application on Series, but 'index' can be used instead
+ of 'labels'.
4160
+
4161
+ .. versionadded:: 0.21.0
4162
+ columns : single label or list-like
4163
+ No change is made to the Series; use 'index' or 'labels' instead.
4164
4165
.. versionadded:: 0.21.0
4166
level : int or level name, optional
0 commit comments