I have df column consisting of +ve and -ve columns.
A B
0 a 5
1 b -13
2 c 15
3 d -10
And is there a way to sort out +ve values ascending and -ve values descending
A B
0 a 5
1 c 15
2 d -10
3 b -13