我一直在寻找一种优雅的方法来更改中的指定列名称DataFrame
。
播放数据...
import pandas as pd
d = {
'one': [1, 2, 3, 4, 5],
'two': [9, 8, 7, 6, 5],
'three': ['a', 'b', 'c', 'd', 'e']
}
df = pd.DataFrame(d)
到目前为止,我发现的最优雅的解决方案...
names = df.columns.tolist()
names[names.index('two')] = 'new_name'
df.columns = names
我希望有一个简单的单线...此尝试失败了...
df.columns[df.columns.tolist().index('one')] = 'another_name'
非常感谢收到的任何提示。