- Python Data Analysis(Second Edition)
- Armando Fandango
- 182字
- 2021-07-09 19:04:07
Chapter 3. The Pandas Primer
The Pandas is named after panel data (an econometric term) and Python data analysis, and is a popular open source Python library. We shall learn about basic Pandas functionalities, data structures, and operations in this chapter.
The official Pandas documentation insists on naming the project pandas in all lowercase letters. The other convention the Pandas project insists on is the import pandas as pd
import statement.
We will follow these conventions in this text.
In this chapter, we will install and explore Pandas. Then, we will acquaint ourselves with the two central Pandas data structures--DataFrame and Series. After that, you will learn how to perform SQL-like operations on the data contained in these data structures. Pandas has statistical utilities, including time-series routines, some of which will be demonstrated. The topics we will look at are as follows:
- Installing and exploring Pandas
- The Panda DataFrames
- The Panda Series
- Querying data in Pandas
- Statistics with Pandas DataFrames
- Data aggregation with Pandas DataFrames
- Concatenating and appending DataFrames
- Joining DataFrames
- Handling missing values
- Dealing with dates
- Pivot tables
- GitLab Cookbook
- Spring 5.0 By Example
- 區塊鏈架構與實現:Cosmos詳解
- Visual Basic程序設計(第3版):學習指導與練習
- OpenCV 3和Qt5計算機視覺應用開發
- Bootstrap Essentials
- Nginx Essentials
- PhoneGap:Beginner's Guide(Third Edition)
- 批調度與網絡問題的組合算法
- ExtJS高級程序設計
- 搞定J2EE:Struts+Spring+Hibernate整合詳解與典型案例
- INSTANT Silverlight 5 Animation
- Android Game Programming by Example
- Mudbox 2013 Cookbook
- Python 快速入門(第3版)