要更改 Pandas DataFrame 的列标签,可以使用多种方法。
使用 df.rename() 函数指定要更改的列重命名:
df = df.rename(columns={'oldName1': 'newName1', 'oldName2': 'newName2'}) # Or rename the existing DataFrame df.rename(columns={'oldName1': 'newName1', 'oldName2': 'newName2'}, inplace=True)
使用 df.set_axis() 和 axis=1 重新分配列标题:
df2 = df.set_axis(['V', 'W', 'X', 'Y', 'Z'], axis=1)
也可以分配标题直接:
df.columns = ['V', 'W', 'X', 'Y', 'Z']
最少代码示例
将 DataFrame 的列从 ['a', '$b', '$c', '$d', '$e'] 重命名为 ['a', ' b', 'c', 'd', 'e']:
import pandas as pd df = pd.DataFrame('x', index=range(3), columns=list('abcde')) df2 = df.rename(columns={'$b': 'b', '$c': 'c', '$d': 'd', '$e': 'e'}) print(df2)
输出:
a b c d e 0 x x x x x 1 x x x x x 2 x x x x x
以上是如何重命名 Pandas DataFrame 中的列?的详细内容。更多信息请关注PHP中文网其他相关文章!