Pandas中DateFrame修改列名 Post author:xfxia Post published:2023年10月7日 Post category:其他 Pandas中DateFrame修改列名 数据如下: >>>import pandas as pd >>>a = pd.DataFrame({'A':[1,2,3], 'B':[4,5,6], 'C':[7,8,9]}) >>> a A B C 0 1 4 7 1 2 5 8 2 3 6 9 1 2 3 4 5 6 7 1 2 3 4 5 6 7 方法一:暴力方法 >>>a.columns = ['a','b','c'] >>>a a b c 0 1 4 7 1 2 5 8 2 3 6 9 1 2 3 4 5 6 1 2 3 4 5 6 但是缺点是必须写三个,要不报错。 方法二:较好的方法 >>>a.rename(columns={'A':'a', 'B':'b', 'C':'c'}, inplace = True) >>>a a b c 0 1 4 7 1 2 5 8 2 3 6 9 1 2 3 4 5 6 1 2 3 4 5 6 你可能也喜欢 客户端与服务器端的认证方式(cookie,token,session) Dcoker入门,小白也学得懂! oracle分配内存参数,Oracle 内存参数调整 SQL server数据库如何设置自动备份 Requested setting DATABASES, but settings are not configured. You must either define the environment angular 模块使用index.ts adb 常用指令 领域驱动设计系列文章(3)——有选择性的使用领域驱动设计 Spring中bean标签的作用和属性的详解 Webpack5优化之提高代码运行性能—Code Split antd 复杂table的实现 springcloud微服务项目解析与服务拆分 常见概念:反射,IOC,AOP VLAN的基础知识 Springboot项目如何设计接口中敏感数据的脱敏展示? 【JS高级程序设计4】5.基本引用类型-单例内置对象 uni-app input标签之间的焦点(Focus属性)切换无效问题 腾讯位置服务 web获取当前地址及跨域问题 mac安装brew C/C++:字符串大小写转换的几种方式