Say I have a dataframe like this:
Date A B C D E H
1/28/2013 56 51 35 44 08 18
1/25/2013 38 56 28 39 23 32
1/21/2013 36 51 45 25 40 08
what I want to do is sort each row's ABCDE column by their values. So I can get is:
Date A B C D E H
1/28/2013 08 35 44 51 56 18
1/25/2013 23 28 38 39 56 32
1/21/2013 25 36 40 45 51 08