This is an archived version of the course. Please find the latest version of the course on the main webpage.

Chapter 3: DataFrame

DataFrame

face Josiah Wang

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.

DataFrame