专栏名称: 蚂蚁学Python
分享Python领域的编程技术,包含网络爬虫、数据分析、大数据、人工智能、办公自动化等领域技术
目录
相关文章推荐
今天看啥  ›  专栏  ›  蚂蚁学Python

Pandas怎样实现数据列的重命名?

蚂蚁学Python  · 公众号  ·  · 2024-07-31 14:54
    

文章预览

Pandas实现数据列的重命名 知识点: rename 单个标签、多个标签的字典 使用 df.columns=list 的方式全量替换 rename 使用自定义函数做替换 1、读取数据 import  pandas  as  pd df = pd.read_excel( "./datas/员工数据表.xlsx" , engine= "openpyxl" ) df.head() 2、使用 df.rename 和 columns 映射关系重命名 df.rename(columns = {      "生日" :  "birthday" ,      "薪资" :  "salary" ,      "部门" :  "department" }).head() rename 默认返回一个新df,如果要直接生效需要加 inplace=True 参数 df.rename(columns = {      "生日" :  "birthday" ,      "薪资" :  "salary" ,      "部门" :  "department" }, inplace= True ) df.head() 3、直接替换所有的列名 df.columns Index(['编号', '姓名', '性别', '年龄', 'birthday', 'department', 'salary', '爱好'], dtype='object') df.columns = [ "sno" ,  "name" ,  "gender" ,  "age" ,  "birthday" ,  "department" ,  "salary" ,  "l ………………………………

原文地址:访问原文地址
快照地址: 访问文章快照
总结与预览地址:访问总结与预览
推荐文章