- Helps cleaning data
- Pandas is a Python library used for working with data sets.
- It has functions for analyzing, cleaning, exploring, and manipulating data.
- The name Pandas has a reference to both Panel Data, and Python Data Analysis and was created by Wes McKinney in 2008.
- https://github.com/pandas-dev
Import Pandas
Install pandas:
conda install pandas
pip install pandas
Import: import pandas as pd
Check Version: print(pd.__version__)
Data Structures in Pandas
-Series — 1D
-DataFrame — 2D
-Panel — 3D
