1、pandas对行列的基本操作命令: 2、对列的操作实战 3、对行的操作实战 ...
分类:
其他好文 时间:
2017-06-22 21:47:19
阅读次数:
310
Pandas的使用(1) 1.绘图 运行结果为: 2.idioms 3.if-then.. 其中较为复杂的操作,根据一个dataframe的标记操作另外一个dataframe: 运行结果为: 结合numpy的where()方法来使用: 运行结果为: ...
分类:
其他好文 时间:
2017-06-22 10:03:47
阅读次数:
176
importpandasaspd1、定义一个字典data={‘sales_volume‘:[100,123,446,233,456],‘month‘:[‘1月‘,‘2月‘,‘3月‘,‘4月‘,‘5月‘],‘product_id‘:[‘1112‘,‘1113‘,‘1114‘,‘1115‘,‘1116‘],‘color‘:[‘red‘,‘red‘,‘black‘,‘green‘,‘black‘]}2、将字典放入dataframe数据结构,自动生成一列数..
分类:
其他好文 时间:
2017-06-20 21:05:32
阅读次数:
208
对一个DF r1 r2 r3 c1 c2 c3 选行: df['r1'] df['r2':'r2'] #包含r2 df[df['c1']>5] #按条件选 选列: df['c1'] df[['c2','c3']] df['c4']=5 #新列 任意区域: df.ix[df.c1>5,['c2','c... ...
分类:
其他好文 时间:
2017-06-18 23:40:41
阅读次数:
209
DataFrame API 1、collect与collectAsList 、 collect返回一个数组,包含DataFrame中的全部Rows collectAsList返回一个Java List,包含DataFrame中包含的全部Rows 2、count 返回DataFrame的rows的个数 ...
分类:
Windows程序 时间:
2017-06-17 19:38:50
阅读次数:
4054
本文首发于微信公众号“Python数据之道”(ID:PyDataRoad) 前言 写这篇文章的起由是有一天微信上一位朋友问到一个问题,问题大体意思概述如下: 现在有一个pandas的Series和一个python的list,想让Series按指定的list进行排序,如何实现? 这个问题的需求用流程图 ...
分类:
编程语言 时间:
2017-06-14 02:33:23
阅读次数:
378
如图:busy=0 or 1,求出busy=1时los的平均,同样对busy=0时也求出los的平均 Python dataframe中如何使y列按x列进行统计? >> pyth... ...
分类:
编程语言 时间:
2017-06-11 14:59:46
阅读次数:
164
本周群主用了两天时间为浙师大的《旅游大数据分析师——Pandas数据清洗》课程备课,和Pandas来了一次深度亲密接触。现在做梦都是DataFrame变形:stack,unstack,pivot table……对Pandas有了全新的认识:原来它不只是提供类似表格的数据结构DataFrame这么简单 ...
分类:
其他好文 时间:
2017-06-04 21:13:11
阅读次数:
217
>>> df one two three mouse 1 2 3 rabbit 4 5 6 >>> # select columns by name >>> df.filter(items=['one', 'three']) one three mouse 1 3 rabbit 4 6 >>> # ... ...
分类:
其他好文 时间:
2017-06-01 00:22:44
阅读次数:
441
使用chardet模块来判断数据的编码;输入参数为str类型。 pd.DataFrame数据类型转换 当然方法还有很多。。。 ...
分类:
编程语言 时间:
2017-05-25 01:19:44
阅读次数:
207