I have a series tt=pd.Series([-1,5,4,0,-7,-9])
.Now i want to sort 'tt'.
the positive values sort in assending order and negative values sort in descending order.Positive values is in front of negative values.
I want to get the following result.
4,5,0,-1,-7,-9
Is there a good way to get the result?