Pandas has 2 primary data structures:
Pandas Series
A Series is 1D labeled homogeneously-typed array. You can think of a DataFrame as a mix between a List and a Dictionary.

Pandas DataFrame
A DataFrame is a 2D labeled, size-mutable tabular structure
with potentially heterogeneously-typed column. You can think of DataFrames almost like an Excel Table.
