...

/

Pandas Core Components - The DataFrame Object

Pandas Core Components - The DataFrame Object

We'll cover the following...

The DataFrame Object

In the previous lesson, we learned about Series. The next fundamental structure in Pandas that we will learn about is the DataFrame. While a Series is essentially a column, a DataFrame is a multi-dimensional table made up of a collection of Series. Dataframes allow us to store and manipulate tabular data where rows consist of observations and columns represent variables. ...