sort(a[, axis, kind, order])
sort
Return a sorted copy of an array.
lexsort(keys[, axis])
lexsort
Perform an indirect stable sort using a sequence of keys.
argsort(a[, axis, kind, order])
argsort
Returns the indices that would sort an array.
ndarray.sort([axis, kind, order])
ndarray.sort
Sort an array in-place.
msort(a)
msort
Return a copy of an array sorted along the first axis.
sort_complex(a)
sort_complex
Sort a complex array using the real part first, then the imaginary part.
partition(a, kth[, axis, kind, order])
partition
Return a partitioned copy of an array.
argpartition(a, kth[, axis, kind, order])
argpartition
Perform an indirect partition along the given axis using the algorithm specified by the kind keyword.
argmax(a[, axis, out])
argmax
Returns the indices of the maximum values along an axis.
nanargmax(a[, axis])
nanargmax
Return the indices of the maximum values in the specified axis ignoring NaNs.
argmin(a[, axis, out])
argmin
Returns the indices of the minimum values along an axis.
nanargmin(a[, axis])
nanargmin
Return the indices of the minimum values in the specified axis ignoring NaNs.
argwhere(a)
argwhere
Find the indices of array elements that are non-zero, grouped by element.
nonzero(a)
nonzero
Return the indices of the elements that are non-zero.
flatnonzero(a)
flatnonzero
Return indices that are non-zero in the flattened version of a.
where(condition, [x, y])
where
Return elements chosen from x or y depending on condition.
searchsorted(a, v[, side, sorter])
searchsorted
Find indices where elements should be inserted to maintain order.
extract(condition, arr)
extract
Return the elements of an array that satisfy some condition.
count_nonzero(a[, axis, keepdims])
count_nonzero
Counts the number of non-zero values in the array a.
a