Getting Started with Pandas
tags: #python/pandas
About Pandas
Pandas is a popular open-source data manipulation and analysis library for Python. It provides data structures for efficiently storing and manipulating large datasets and tools for working with structured data seamlessly. The key data structures in Pandas are the Series and DataFrame.
Operating on Data in Pandas
Pandas is built on top of NumPy.
Therefore, much of the operations applied to data in pandas can be attributed to functions found in the NumPy library.
Installing Pandas
pip install pandas
Importing Pandas
Once Pandas is installed, we can import it:
import pandas as pd