Fish Touching🐟🎣

Python Pandas

Apr 3, 2023

Python Numpy
Docs

# Series

Numpy 中的一维数组没有索引,而 Series 对象具有索引。创建 Series 时可以不指定索引,系统添加自动索引,其值从 0 开始至元素个数减 1。

# DataFrame

Docs
Data structure also contains labeled axes (rows and columns). Arithmetic operations align on both row and column labels. Can be thought of as a dict-like container for Series objects. The primary pandas data structure.