python 按索引号对列重新排序

ldioqlga  于 2023-05-16  发布在  Python
关注(0)|答案(1)|浏览(149)

我有下面的一列,每一行有一个值,左边的数字是索引。我想从1到337重新排序。

[('oxcondol', 201    1340.629275
305     607.424072
21      344.110115
60      415.400203
248     785.634119
          ...     
8       620.842246
73      430.414746
118     909.090909
189    1097.222222
206    1492.734478
Name: oxcondol, Length: 337, dtype: float64)]

我试着查看排序方法,但似乎不起作用

57hvy0tb

57hvy0tb1#

尝试sort_index()

import pandas as pd
df = ... # your dataframe

df.sort_index(inplace=True)
print(df.head())

相关问题