Important resources to Pandas
Introduction to Pandas
- Column oriented data analysis API.
- It is supported by many ML Libraries in the python environment.
Pandas has two main structures to be discussed, one is the DataFrame and the other is the Series.
Pandas Series
- Series in pandas is a single column.
Pandas DataFrame
- A collection of series is called as a Dataframe.
- Consider it as a relational datatable, that has rows and named columns
- Each Series in a dataframe has a name.
Usage of Pandas