python – 在pandas数据框中将索引从一列移动到另一列

我从一个已经设置为其中一个数据列的索引的库中获取了一个DataFrame.将它设置为另一列的最简单方法是什么,保留原始索引列.

输入:

df = pd.DataFrame([[1,2,3],[4,5,6],[7,8,9]],columns=['a','b','c'])
df = df.set_index('a')

   b  c
a      
1  2  3
4  5  6
7  8  9

输出:( f.e.将索引从a列改为b列)

   a  c
b      
2  1  3
5  4  6
8  7  9

解决方法:

链reset_index然后set_index:

df = df.reset_index().set_index('b')

或单独:

df.reset_index(inplace=True)
df.set_index('b', inplace=True)

结果df

   a  c
b      
2  1  3
5  4  6
8  7  9
上一篇:ORACLE EBS常用表及查询语句(最终整理版)


下一篇:REINDEX - 重建索引