Python Data Processing Expansion pack: Introduction to NumPy and Pandas modules

Source: Internet
Author: User

One, NumPy module

The NumPy (Numeric python) module is an open-source computational extension of Python. This tool can be used to store and manipulate large matrices, which is much more efficient than Python's own nested list (nested list structure) structure, which is also useful for representing matrices (matrix). It is said that NumPy Python is the equivalent of becoming a free, more powerful MATLAB system.

The NumPy module provides a number of advanced numerical programming tools, such as matrix data types, vector processing, and sophisticated operational libraries.

1), a powerful n-dimensional array object;

2), more mature (broadcast) function library;

3), a toolkit for consolidating C/C + + and Fortran code;

4), Practical linear algebra, Fourier transform and random number generation function.

Second, Pandas module

The Pandas (Python data Analysis Library) is a numpy-based tool that is created to solve data analytics tasks. Pandas incorporates a number of libraries and a number of standard data models, providing the tools needed to efficiently manipulate large datasets. Pandas provides a number of functions and methods that enable us to process data quickly and easily.

There are several data structures in the pandas:

1, Series: one-dimensional arrays, similar to one-dimensional array in NumPy.   The two are similar to the Python basic data Structure list, the difference is that the elements in the list can be different data types, and the array and series only allow the same data types to be stored, so that more efficient use of memory, improve the efficiency of operations.   2, Time-series: Time-indexed Series. 3, DataFrame: two-dimensional tabular data structure. Many functions are similar to the Data.frame in R.   Dataframe can be understood as a container of series. 4, Panel: three-dimensional array, can be understood as dataframe container.

  

Python Data Processing Expansion pack: Introduction to NumPy and Pandas modules

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.