惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
Last Week in AI
Last Week in AI
T
Tailwind CSS Blog
WordPress大学
WordPress大学
B
Blog RSS Feed
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
C
Check Point Blog
P
Proofpoint News Feed
H
Help Net Security
月光博客
月光博客
博客园_首页
Stack Overflow Blog
Stack Overflow Blog
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
U
Unit 42
美团技术团队
I
InfoQ
A
About on SuperTechFans

老董笔记

尚硅谷机构在哪?尚硅谷培训怎么样?靠谱吗-互联网IT百科 韩顺平介绍,传智讲师,开办泰牛,入尚硅谷等一系列-互联网IT百科 pandas多重索引标准样式(写入excel有空行)-互联网IT百科 cannot join with no overlapping index names-互联网IT百科 pandas多列变多行(即宽表变长表)melt和stack函数-互联网IT百科 pandas多行转多列(长表变宽表)pivot和unstack-互联网IT百科 Index contains duplicate entries, cannot reshape完美解决-互联网IT百科 single positional indexer is out-of-bounds-互联网IT百科 Can only compare identically-labeled Series objects-互联网IT百科 pandas transform用法详解(多个案例)-互联网IT百科 python四舍五入精确实现-互联网IT百科 pandas的groupby使用apply分组排序-互联网IT百科 index 0 is out of bounds for axis 0 with size 0-互联网IT百科 pandas分组过滤filter函数-互联网IT百科 联想Win10系统如何禁用触摸屏关闭触摸-互联网IT百科 groupby分组计算transform转换返回相同长度序列-互联网IT百科 brooks seo教程python教程,brooks seo教程网盘,布鲁seo资源-互联网IT百科 电脑右键文件夹一直转圈电卡死怎么回事-互联网IT百科 施琪嘉的心理成长课(荐)-互联网IT百科 百度SEO公司_SEO推广公司哪家好_SEO外包服务如何选-老董笔记 groupby后agg同1列用多个聚合函数、不同列用不同函数、自定义函数-互联网IT百科 pandas的groupby单列多列分组聚合运算-互联网IT百科 DataFrameGroupBy对象及分组个数、分组大小、组名索引、组数据详解-互联网IT百科 pandas中groupby之Grouper and axis must be same length-互联网IT百科 pandas中groupby的分组原理-互联网IT百科 pandas的groupby的使用详解大全-互联网IT百科 openpyxl单元格自动换行强制换行Alignment(wrapText=True)-互联网IT百科 python教程全套(可就业)-互联网IT百科 联想win10系统CPU显示100%,电脑呼呼响怎么回事-互联网IT百科 如何自制CPU,CPU原理是怎么样的?-互联网IT百科
DataFrame添加插入列(赋值法、apply()、assign()、条件筛选、...
2020-06-28 · via 老董笔记

  在DataFrame添加一列常用4种方法,分别是1、直接赋值法; 2、apply函数;3、assign函数; 4、条件筛选,此外,concat函数也可以灵活的添加列,insert函数可以插入列,后续专门讲解这些函数。

  1、赋值方法

  推荐使用.loc的方式来赋值一列,直接df[xxx]=的方式在一些场景下会有警告,SettingWithCopyWarning: value is trying to be set on a copy of a slice,查看>>SettingWithCopyWarning

# -*- coding: utf-8 -*-
import pandas as pd

df = pd.read_excel('test.xlsx')
print(df)
print('------------------')

# 数据清洗
df.loc[:,'高温'] = df['高温'].str.replace('度','').astype('int32')
df.loc[:,'低温'] = df['低温'].str.replace('度','').astype('int32')

# 新增列-直接赋值
df.loc[:,'温差'] = df['高温'] - df['低温']
# 新增列-直接赋值
s = pd.Series(['3000万','2000万','1500万','800万'],name='人口')
df.loc[:,'人口'] = s
print(df)
   城市   高温   低温
0  北京  28度  10度
1  上海  25度   7度
2  广州  16度   5度
3  深圳  17度  10度
------------------
   城市  高温  低温  温差     人口
0  北京  28  10  18  3000万
1  上海  25   7  18  2000万
2  广州  16   5  11  1500万
3  深圳  17  10   7   800万

  2、apply函数

# -*- coding: utf-8 -*-
import pandas as pd

df = pd.read_excel('test.xlsx')
print(df)
print('------------------')

# 数据清洗
df.loc[:,'高温'] = df['高温'].str.replace('度','').astype('int32')
df.loc[:,'低温'] = df['低温'].str.replace('度','').astype('int32')

# axis=1代表对列操作,0则会把'高温'、'低温'当做行索引
df['温差'] = df.apply(lambda x:x['高温'] - x['低温'],axis=1)
print(df)
   城市   高温   低温
0  北京  28度  10度
1  上海  25度   7度
2  广州  16度   5度
3  深圳  17度  10度
------------------
   城市  高温  低温  温差
0  北京  28  10  18
1  上海  25   7  18
2  广州  16   5  11
3  深圳  17  10   7

  3、assign函数

  DataFrame.assign(self, **kwargs),返回一个新的df,可以添加一个或者多个列

# -*- coding: utf-8 -*-
import pandas as pd

df = pd.read_excel('test.xlsx')
print(df)
print('------------------')

# 数据清洗
df.loc[:,'高温'] = df['高温'].str.replace('度','').astype('int32')
df.loc[:,'低温'] = df['低温'].str.replace('度','').astype('int32')

df2 = df.assign(cha = lambda x:x['高温'] - x['低温'],
                 sum=lambda x:x['高温'] + x['低温'])
print(df2)
   城市   高温   低温
0  北京  28度  10度
1  上海  25度   7度
2  广州  16度   5度
3  深圳  17度  10度
------------------
   城市  高温  低温  cha  sum
0  北京  28  10   18   38
1  上海  25   7   18   32
2  广州  16   5   11   21
3  深圳  17  10    7   27

  4、条件筛选

  条件筛选用法大全可参考:DataFrame的[],loc,iloc多条件判断筛选

# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*-
import pandas as pd

df = pd.read_excel('test.xlsx')
print(df)
print('------------------')

# 数据清洗
df.loc[:,'高温'] = df['高温'].str.replace('度','').astype('int32')
df.loc[:,'低温'] = df['低温'].str.replace('度','').astype('int32')

df.loc[df['高温'] - df['低温'] >=15,'type'] = '高温差'
df.loc[df['高温'] - df['低温'] <15,'type'] = '低温差'
print(df)
   城市   高温   低温
0  北京  28度  10度
1  上海  25度   7度
2  广州  16度   5度
3  深圳  17度  10度
------------------
   城市  高温  低温 type
0  北京  28  10  高温差
1  上海  25   7  高温差
2  广州  16   5  低温差
3  深圳  17  10  低温差

  6、insert插入1列

# -*- coding:UTF-8 -*-
import pandas as pd   

df = pd.DataFrame({'col1': [1, 2], 'col2': [3, 4]})
col_new = pd.Series(['a','b'])
df.insert(0,'py66',col_new)
print(df)
  py66  col1  col2
0    a     1     3
1    b     2     4

很赞哦!

python编程网提示:转载请注明来源www.python66.com。
有宝贵意见可添加站长微信(底部),获取技术资料请到公众号(底部)。同行交流请加群 python学习会