2018年06月15 - 函数应用映射 numpy 的ufuncs 元素级数组方法 也可以用来操作pandas对象 frame DataFrame np.arange . .reshape , , columns list bde , index one , two , three , four print np.abs frame b d e one . . . two . . . three . . . four .
2018年06月13 - 综合学习分析 索引对象 pandas 中的索引对象负责管理轴标签和其他元数据 比如轴名称 from pandas import Series obj Series range , index a , b , c index obj.index print index Index a , b , c , dtype object print index : Index b , c , dtype
2017年09月05 - 从tushare平台获取一个股票的DataFrame格式的数据这里的d和data都是DataFrame格式,具体如下:如果要选择其中一列 Series 如open这一列,有两种写法data.open或者data open ,通过print 打印结果如下:用type data.open 或者type data open 可知数据类型为Series,另外Series.tolist 函数可以将Serie
2018年05月20 - 如无必要,本篇笔记均在已导入pandas库下进行,即在程序第一行加入:import pandas as pd .声明series对象 data pd.Series , , , ,index a , b , c , d 输出: dtype: int .指定左侧的index data pd.Series , , , ,index a , b , c , d 输出: a b c d dtype: in