numpy.argsort
numpy.sort_complex
numpy.
msort
Return a copy of an array sorted along the first axis.
a : array_like
Array to be sorted.
sorted_array : ndarray
Array of the same type and shape as a.
See also
sort
Notes
np.msort(a) is equivalent to np.sort(a, axis=0).
np.msort(a)
np.sort(a, axis=0)