Skip to content

Commit de38f05

Browse files
benjaminrPingviinituutti
authored andcommitted
DOC: Update Series.argsort documentation pandas-dev#24816 (pandas-dev#24830)
1 parent 113a759 commit de38f05

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)