Data Structures in Pandas#

pandas has two main data structures: Series and DataFrame.
“A
Seriesis a one-dimensional, array-like object containing a sequence of values…and an associated array of data labels, called its index” (McKinney, 126)A
DataFrameincludes a tabular data structure “and contains an ordered collection of columns, each of which can be a different value type” (McKinney, 130).