...

/

Fundamental Data Structures in pandas

Fundamental Data Structures in pandas

Let's start with two fundamental data structures in pandas: Series and DataFrame.

We'll cover the following...

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 ...