@@ -110,22 +110,26 @@ def argsort(
110
110
axis : {None, int}, optional
111
111
Axis along which to sort. If ``None``, the array is flattened before
112
112
sorting. The default is ``-1``, which sorts along the last axis.
113
+
113
114
Default: ``-1``.
114
115
kind : {None, "stable", "mergesort", "radixsort"}, optional
115
116
Sorting algorithm. The default is ``None``, which uses parallel
116
117
merge-sort or parallel radix-sort algorithms depending on the array
117
118
data type.
119
+
118
120
Default: ``None``.
119
121
descending : bool, optional
120
122
Sort order. If ``True``, the array must be sorted in descending order
121
123
(by value). If ``False``, the array must be sorted in ascending order
122
124
(by value).
125
+
123
126
Default: ``False``.
124
127
stable : {None, bool}, optional
125
128
Sort stability. If ``True``, the returned array will maintain the
126
129
relative order of `a` values which compare as equal. The same behavior
127
130
applies when set to ``False`` or ``None``.
128
131
Internally, this option selects ``kind="stable"``.
132
+
129
133
Default: ``None``.
130
134
131
135
Returns
@@ -251,22 +255,26 @@ def sort(a, axis=-1, kind=None, order=None, *, descending=False, stable=None):
251
255
axis : {None, int}, optional
252
256
Axis along which to sort. If ``None``, the array is flattened before
253
257
sorting. The default is ``-1``, which sorts along the last axis.
258
+
254
259
Default: ``-1``.
255
260
kind : {None, "stable", "mergesort", "radixsort"}, optional
256
261
Sorting algorithm. The default is ``None``, which uses parallel
257
262
merge-sort or parallel radix-sort algorithms depending on the array
258
263
data type.
264
+
259
265
Default: ``None``.
260
266
descending : bool, optional
261
267
Sort order. If ``True``, the array must be sorted in descending order
262
268
(by value). If ``False``, the array must be sorted in ascending order
263
269
(by value).
270
+
264
271
Default: ``False``.
265
272
stable : {None, bool}, optional
266
273
Sort stability. If ``True``, the returned array will maintain the
267
274
relative order of `a` values which compare as equal. The same behavior
268
275
applies when set to ``False`` or ``None``.
269
276
Internally, this option selects ``kind="stable"``.
277
+
270
278
Default: ``None``.
271
279
272
280
Returns
0 commit comments