Skip to content

Commit 7e6ad86

Browse files
benjaminrjschendel
authored andcommitted
DOC: Update Series.argsort documentation #24816 (#24830)
1 parent a07d685 commit 7e6ad86

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pandas/core/series.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -2992,11 +2992,13 @@ def argsort(self, axis=0, kind='quicksort', order=None):
29922992
29932993
Parameters
29942994
----------
2995-
axis : int (can only be zero)
2995+
axis : int
2996+
Has no effect but is accepted for compatibility with numpy.
29962997
kind : {'mergesort', 'quicksort', 'heapsort'}, default 'quicksort'
29972998
Choice of sorting algorithm. See np.sort for more
29982999
information. 'mergesort' is the only stable algorithm
2999-
order : ignored
3000+
order : None
3001+
Has no effect but is accepted for compatibility with numpy.
30003002
30013003
Returns
30023004
-------

0 commit comments

Comments
 (0)