3.Introduction to pandas
Introduction to Pandas
Pandas is a library/tool that we use for data analysis. It is built on the Python programming language.
Why Pandas?
Pandas is less heavy compared to Excel.
Pandas is super fast in processing.
Pandas gives you more freedom for analysis, as it is an analytical tool only.
Pandas can handle complex analysis easily.
How to install pandas?
Run this command in your terminal:
pip install pandasImport Pandas
Once you have installed pandas, import it in your Python script or interactive session:
import pandas as pd