首页 > 后端开发 > Python教程 > 如何重命名 Pandas DataFrame 中的列?

如何重命名 Pandas DataFrame 中的列?

Mary-Kate Olsen
发布: 2024-12-20 13:47:09
原创
201 人浏览过

How Can I Rename Columns in a Pandas DataFrame?

重命名 Pandas 中的列名称

要更改 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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板