我正在尝试按以特定顺序排序的另一个系列对 DataFrame(轴 = 0)进行排序。
示例:DataFrame 包含 CountryCodes 的索引:'AUS'、'BWA' ....(按字母顺序排序)系列包含 CountryCodes 列表及其相关的 GDP(按 GDP 排序)
我可以使用 DataFrame.join(Series) 没问题,然后对列 'GDP' 进行排序,然后对 del DF['GDP'] 进行排序,但是有没有办法直接这样做而不加入结构?
您可以reindex
通过(排序)系列的索引:
In [1]: df = pd.DataFrame([[1, 2], [3, 4]], index=list('ab'))
In [2]: s = pd.Series([2,1], index=list('ab'))
In [3]: s
Out[3]:
a 2
b 1
In [4]: s.sort()
In [5]: df.reindex(s.index)
Out[5]:
0 1
b 3 4
a 1 2