22.2.15

Python Data Analysis Library — pandas: Python Data Analysis Library

重要概念:

  • axis是指用于排序的轴,可选的值有0和1,默认为0即行标签(Y轴),1为按照列标签排序。




Python Data Analysis Library

pandas is an open source, BSD-licensed library providing high-performance, easy-to-use data structures and data analysis tools for the Python programming language.

0.15.2 final (December 12, 2014)

This is a minor release from 0.15.1 and includes a small number of API changes, several new features, enhancements, and performance improvements along with a large number of bug fixes.
See the Whatsnew for an extensive list of all API changes, enhancements and bugs that have been fixed in 0.15.2


DataFrame 是二维的数据结构,其本制裁是Series的容器,因此,DataFrame可以包含一个索引以及与这些索引联合在一起的Series(什么是Seris??)。

由于一个Series中的数据类型是相同的,而不同的Series的数据结构可以不同。因此对于DataFrame来说,每一列的数据结构都是相同的,而不同列之间则可以是不同的数据结构。

或者以数据库进行类比,DataFrame中的每一行是一个记录,名称为Index的一个元素,而每一列则为一个字段,是这个记录的一个属性。

创建DataFrame有多种方式


No comments: