【跟着stackoverflow学Pandas】 - Adding new column to existing DataFrame in Python pandas - Pandas 添加列
最近做一个系列博客,跟着stackoverflow学Pandas。
以 pandas作为关键词,在stackoverflow中进行搜索,随后安照 votes 数目进行排序:
https://stackoverflow.com/questions/tagged/pandas?sort=votes&pageSize=15
Adding new column to existing DataFrame in Python pandas - Pandas 添加列
pandas官方给出了对列的操作, 可以参考:
http://pandas.pydata.org/pandas-docs/stable/dsintro.html#column-selection-addition-deletion
- 数据准备
随机生成8*3的DataFrame df1,筛选 a 列大于0.5的行组成df2,作为我们的初始数据。
import numpy as np
import pandas as pd
print pd.__version__
#0.19.2
np.random.seed(0)
df1 = pd.DataFrame(np.random.randn(8, 3), columns=['a', 'b', 'c'])
print df1
a b c
# 0 1.764052 0.400157 0.978738
# 1 2.240893 1.867558 -0.977278
# 2 0.950088 -0.151357 -0.103219
# 3 0.410599 0.144044 1.454274
# 4 0.761038 0.121675 0.443863
# 5 0.333674 1.494079 -0.205158
# 6 0.313068 -0.854096 -2.552990
# 7 0.653619 0.864436 -0.742165
df2 = df1[df1['a']> 0.5]
df3 = df2
sLength = len(df2['a'])
d = pd.Series(np.random.randn(sLength))
直接赋值
采用 df2['d'] = d 或者 df2.loc[:, 'd'] = d 直接进行赋值。
print df2
# a b c
# 0 1.764052 0.400157 0.978738
# 1 2.240893 1.867558 -0.977278
# 2 0.950088 -0.151357 -0.103219
# 4 0.761038 0.121675 0.443863
# 7 0.653619 0.864436 -0.742165
print d
# 0 2.269755
# 1 -1.454366
# 2 0.045759
# 3 -0.187184
# 4 1.532779
print type(d)
#<class 'pandas.core.series.Series'>
# 下面的方法可以,但是会有SettingWithCopyWarning警告
df2['d'] = d
# /Library/Python/2.7/site-packages/ipykernel/__main__.py:1: SettingWithCopyWarning:
# A value is trying to be set on a copy of a slice from a DataFrame.
# Try using .loc[row_indexer,col_indexer] = value instead
# See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy
# if __name__ == '__main__':
# 为了避免警告我们可以采用这种方式来进行直接赋值
df2.loc[:, 'd'] = d
print df2
a b c d
# 0 1.764052 0.400157 0.978738 2.269755
# 1 2.240893 1.867558 -0.977278 -1.454366
# 2 0.950088 -0.151357 -0.103219 0.045759
# 4 0.761038 0.121675 0.443863 1.532779
# 7 0.653619 0.864436 -0.742165 NaN
df2.loc[:, 'd1'] = d.tolist() # 或者 d.values()
# d.tolist() 返回list
# d.values 返回 numpy.ndarray
print df2
# a b c d d1
# 0 1.764052 0.400157 0.978738 2.269755 2.269755
# 1 2.240893 1.867558 -0.977278 -1.454366 -1.454366
# 2 0.950088 -0.151357 -0.103219 0.045759 0.045759
# 4 0.761038 0.121675 0.443863 1.532779 -0.187184
# 7 0.653619 0.864436 -0.742165 NaN 1.532779
我们可以发现,df2是5行数据, d 也是5个数据,但是赋值之后d列仅有4个值,深究发现,d是Series类型,df2['d'] = d 是根据index对其进行赋值,只有 0 1 2 4 等4个index在d中有对应, 7 没有对应所以为NaN.
如果忽略index影响,我们可以采用d.tolist() 或者 d.values()
同时,在 pandas 0.19.2 中,采用 df2['d'] = d, 提示SettingWithCopyWarning,尽量避免这种方式,采用df2.loc[:, 'd'] = d的方式进行列的增加。
assign 赋值
官方推荐,assign 为DataFrame增加新列。
pandas官方参考:
http://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.assign.html
print df3
# a b c
# 0 1.764052 0.400157 0.978738
# 1 2.240893 1.867558 -0.977278
# 2 0.950088 -0.151357 -0.103219
# 4 0.761038 0.121675 0.443863
# 7 0.653619 0.864436 -0.742165
print d
# 0 2.269755
# 1 -1.454366
# 2 0.045759
# 3 -0.187184
# 4 1.532779
# 对 d.values (numpy.ndarray)进行赋值
df3 = df3.assign(d = d.values)
print df3
# a b c d
# 0 1.764052 0.400157 0.978738 2.269755
# 1 2.240893 1.867558 -0.977278 -1.454366
# 2 0.950088 -0.151357 -0.103219 0.045759
# 4 0.761038 0.121675 0.443863 -0.187184
# 7 0.653619 0.864436 -0.742165 1.532779
# 对 d(Series) 进行赋值
df4 = df3.assign(d = d)
print df4
a b c d
# 0 1.764052 0.400157 0.978738 2.269755
# 1 2.240893 1.867558 -0.977278 -1.454366
# 2 0.950088 -0.151357 -0.103219 0.045759
# 4 0.761038 0.121675 0.443863 1.532779
# 7 0.653619 0.864436 -0.742165 NaN
可以发现 df3 采用 assign 进行赋值,可以得到跟loc直接赋值相同的结果, 区别在于赋值的类型是 Series还是 numpy.ndarray 或者是list。
同时,assign还可以进行多种操作,比如:
df4 = df3.assign(ln_A = lambda x: np.log(x['a']))
print df4
# a b c d ln_A
# 0 1.764052 0.400157 0.978738 2.269755 0.567614
# 1 2.240893 1.867558 -0.977278 -1.454366 0.806875
# 2 0.950088 -0.151357 -0.103219 0.045759 -0.051200
# 4 0.761038 0.121675 0.443863 -0.187184 -0.273072
# 7 0.653619 0.864436 -0.742165 1.532779 -0.425231
【跟着stackoverflow学Pandas】 - Adding new column to existing DataFrame in Python pandas - Pandas 添加列的更多相关文章
- 【跟着stackoverflow学Pandas】 -Get list from pandas DataFrame column headers - Pandas 获取列名
最近做一个系列博客,跟着stackoverflow学Pandas. 以 pandas作为关键词,在stackoverflow中进行搜索,随后安照 votes 数目进行排序: https://stack ...
- 【跟着stackoverflow学Pandas】Select rows from a DataFrame based on values in a column -pandas 筛选
最近做一个系列博客,跟着stackoverflow学Pandas. 以 pandas作为关键词,在stackoverflow中进行搜索,随后安照 votes 数目进行排序: https://stack ...
- 【跟着stackoverflow学Pandas】Delete column from pandas DataFrame-删除列
最近做一个系列博客,跟着stackoverflow学Pandas. 以 pandas作为关键词,在stackoverflow中进行搜索,随后安照 votes 数目进行排序: https://stack ...
- 【跟着stackoverflow学Pandas】add one row in a pandas.DataFrame -DataFrame添加行
最近做一个系列博客,跟着stackoverflow学Pandas. 以 pandas作为关键词,在stackoverflow中进行搜索,随后安照 votes 数目进行排序: https://stack ...
- 【跟着stackoverflow学Pandas】How to iterate over rows in a DataFrame in Pandas-DataFrame按行迭代
最近做一个系列博客,跟着stackoverflow学Pandas. 以 pandas作为关键词,在stackoverflow中进行搜索,随后安照 votes 数目进行排序: https://stack ...
- 【跟着stackoverflow学Pandas】“Large data” work flows using pandas-pandas大数据处理流程
最近做一个系列博客,跟着stackoverflow学Pandas. 以 pandas作为关键词,在stackoverflow中进行搜索,随后安照 votes 数目进行排序: https://stack ...
- 【跟着stackoverflow学Pandas】Renaming columns in pandas-列的重命名
最近做一个系列博客,跟着stackoverflow学Pandas. 以 pandas作为关键词,在stackoverflow中进行搜索,随后安照 votes 数目进行排序: https://stack ...
- 学机器学习,不会数据处理怎么行?—— 二、Pandas详解
在上篇文章学机器学习,不会数据处理怎么行?—— 一.NumPy详解中,介绍了NumPy的一些基本内容,以及使用方法,在这篇文章中,将接着介绍另一模块——Pandas.(本文所用代码在这里) Panda ...
- 跟着百度学PHP[14]-PDO之Mysql的事务处理2
前面所将仅仅是在纯mysql下的讲解,这节就是要将其搬到PDO台面上来了. 将自动提交关闭. SetAttribute下有一个PDO::ATTR_AUTOCOMMIT 将其设置为0即可关闭,如:$pd ...
随机推荐
- Could NOT find SDL (missing: SDL_LIBRARY SDL_INCLUDE_DIR)
sudo apt-get install libsdl-dev或 sudo apt-get install libsdl1.2-dev
- jenkins 工作空间的目录
/usr/share/tomcat7/.jenkins/workspace/
- C++异常及捕获_01
ZC: Win7x64 + qt-opensource-windows-x86-msvc2010_opengl-5.3.2.exe 1. class AA { public: void A() { & ...
- c++ primer plus 第五章 课后题答案
#include <iostream> using namespace std; int main() { ; cout << "Please enter two n ...
- JSON自定义排序
var json=[{ Name:'张三', Addr:'重庆', Age:'20' },{ Name:'张三3', Addr:'重庆2', Age:'25' },{ Name:'张三2', Addr ...
- sql一些语句性能及开销优化
1.应用程序中,保证在实现功能的基础上,尽量减少对数据库的访问次数:通过搜索参数,尽量减少对表的访问行数,最小化结果集,从而减轻网络负担:能够分开的操作尽量分开处理,提高每次的响应速度:在数据窗口使用 ...
- English trip -- VC(情景课)2 D Reading
Xu言: 业精于勤,荒于嬉:行成于思,毁于随 Before you read 阅读准备 Talk about the picture, what do you see?看图说话,你看到了什么? Lis ...
- 我的Java学习笔记-语法
Java的语法与C#的语法基本都一样,毕竟都是面向对象编程语言.下面记录下Java独有的和我在C#中学习不熟的语法知识 一.Java是解释型语言 二.Java修饰符 1. 访问控制修饰符 defaul ...
- linux安装mysqlclient报错
错误信息 Collecting mysqlclient Using cached mysqlclient-1.3.12.tar.gz Complete output from command pyth ...
- Hololens 开发环境配置(转)
转自 Vangos Pterneas, 4 Apr 2016 CPOL 5.00 (1 vote) vote 1vote 2vote 3vote 4vote 5 The past few days h ...