1. If we create a DataFrame, each of the column inside of it is already a set of Series. Does not necessary to change them into a one-column Dataframe ...
分类:
其他好文 时间:
2016-10-15 07:42:25
阅读次数:
137
Visualize Geographic Data: To deal with mutiple DataFrame 1. How to install a library into the Anaconda: In Jupyter Notebook, under tag Conda, we can ...
分类:
其他好文 时间:
2016-10-15 07:35:47
阅读次数:
174
Pandas包对数据的常用探索功能,方便了解数据描述性属性。 Pandas数据格式 Series DataFrame:每个column就是一个Series 基础属性 shape 返回行列数 index columns values dtype/dtypes 返回行列数 基础方法 unique() 返 ...
分类:
其他好文 时间:
2016-10-11 11:23:03
阅读次数:
162
1. For searching certain row in certain column. We use name["column_name"][row_index] to locate the certain data in the DataFrame. ...
分类:
其他好文 时间:
2016-10-07 07:40:06
阅读次数:
108
1. pandas.csv_read() to read the .csv file. After read, it is automatically convert DataFrame 2.The DataFrame is the frame for Pandas. It is not a mat ...
分类:
其他好文 时间:
2016-10-06 15:03:17
阅读次数:
154
pandas是基于numpy包扩展而来的,因而numpy的绝大多数方法在pandas中都能适用。 pandas中我们要熟悉两个数据结构Series 和DataFrame Series是类似于数组的对象,它有一组数据和与之相关的标签组成。 import pandas as pd object=pd.S ...
分类:
编程语言 时间:
2016-10-03 00:14:41
阅读次数:
973
现在正在写一个122个品种的实时风险分析的程序,能够提取最佳的交易品种以及他们的持仓周期等信息。由于指标比较多,所以决定用DataFrame结构。 我使用以下代码生成新的df结构时 结果为空。 替代方法: 也可以使用 相应的,也有: 由于在实际操作中并不会频繁变换主要交易品种,所以短期的排名变化不会 ...
分类:
编程语言 时间:
2016-09-27 17:44:23
阅读次数:
442
DataFrame 类型类似于数据库表结构的数据结构,其含有行索引和列索引,可以将DataFrame 想成是由相同索引的Series组成的Dict类型。在其底层是通过二维以及一维的数据块实现。 1. DataFrame 对象的构建 1.1 用包含等长的列表或者是NumPy数组的字典创建DataFra ...
分类:
其他好文 时间:
2016-09-24 20:20:02
阅读次数:
181
从数据库中读取数据,具体操作为: 画图的代码为: 参考链接为http://jingyan.baidu.com/article/425e69e6e28aacbe15fc1694.html 使用plt.bar()去画图 首先是数据是dataframe格式的。 也就是两个变量,即两列 例如: type n ...
分类:
其他好文 时间:
2016-09-20 11:42:30
阅读次数:
642
摘要如果要想真正的掌握sparkSQL编程,首先要对sparkSQL的整体框架以及sparkSQL到底能帮助我们解决什么问题有一个整体的认识,然后就是对各个层级关系有一个清晰的认识后,才能真正的掌握它,对于sparkSQL整体框架这一块,在前一个博客已经进行过了一些介绍,如果对这块还有疑..
分类:
数据库 时间:
2016-09-12 07:29:11
阅读次数:
643