Pandas is a package which is built on top of Numpy and provides efficient implementation of DataFrame. These dataframes are multidimensional arrays with attached row and column labels and often with heterogenous types.In this post we will focus on Series, DataFrame and related structure effectively.
Installing and Using Pandas Once pandas is installed you can import and check the version.
import pandas as pd pd.__version__ ## '0.24.2' Pandas Objects There are three fundamental pandas objects or structures : the Series, DataFrame and Index.