pandas.Series.sort

Series.sort(axis=0, kind='quicksort', order=None)

Sort values and index labels by value, in place. For compatibility with ndarray API. No return value

axis : int (can only be zero) kind : {‘mergesort’, ‘quicksort’, ‘heapsort’}, default ‘quicksort’

Choice of sorting algorithm. See np.sort for more information. ‘mergesort’ is the only stable algorithm

order : ignored