我有一个带有10列的大DataFrame。我只想为特定的列(两列)对所有行进行排序。例如,如果这是我的数据框

      A  B  C
   0  5  1  8
   1  8  2  2
   2  9  3  3


我希望它仅对A和B进行排序,但对行进行排序,因此答案应类似于:

  A  B  C
0 1  5  8
1 2  8  2
2 3  9  3


谢谢。

最佳答案

我正在使用sort

s=df[['A','B']]
s.values.sort()
df.update(s)
df
   A  B  C
0  1  5  8
1  2  8  2
2  3  9  3

关于python - 如何对DataFrame中特定列的行进行排序?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56502440/

10-16 00:59