Introduction to Pandas
Chapter 3: DataFrame
DataFrame
The other important component of pandas is the DataFrame class.
A DataFrame represents a two-dimensional table.
It consists of a collection of Series.
Each row in the table represents the values of an instance, and each row has an Index.
The columns are ‘tied together’ by the Index.