最佳答案
我正在寻找一种优雅的方法来更改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'
感激地接受任何提示。