- 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
- Web應用系統開發實踐(C#)
- 基于粒計算模型的圖像處理
- 程序員面試白皮書
- C語言程序設計習題解析與上機指導(第4版)
- Learning Selenium Testing Tools(Third Edition)
- Oracle從入門到精通(第5版)
- 從Excel到Python:用Python輕松處理Excel數據(第2版)
- Keras深度學習實戰
- Corona SDK Mobile Game Development:Beginner's Guide(Second Edition)
- Qt 4開發實踐
- 人人都能開發RPA機器人:UiPath從入門到實戰
- Hands-On Dependency Injection in Go
- C語言程序設計教程
- Web前端測試與集成:Jasmine/Selenium/Protractor/Jenkins的最佳實踐
- Puppet Cookbook(Third Edition)