Overview
Pandas objects
Two major pandas objects are
Series
DataFrame
Series:
Pandas series is a 1 D array of any type. In other words pandas series are like any column in a table.
Series consists of
Value: It is provided by the developer
Index: It is assigned to that value and is automatically generated.
Data Type: It is data type of that value and is assigned automatically.
DataFrame:
Pandas DataFrame is a 2D structure of data consisting of row and columns.
DataFrame is essentially multiple series working together.
Note:
Each column in a DataFrame is a series.
Each row of a DataFrame is a series.