Fundamental Data Structures in pandas
Let's start with two fundamental data structures in pandas: Series and DataFrame.
Series
Series is a one-dimensional array consisting of elements of multiple data types such as int, float, string, and object.
It’s just like an N-dimensional NumPy array (ndarray
) with an index. You can explicitly specify an index for a Series object, which can be ...