Menu

Inspecting the Dataset

Inspecting the Dataset

Before performing any analysis, it is important to inspect the dataset and verify that it has been loaded correctly.

View the First Five Records

matches.head()

View Dataset Dimensions

matches.shape

View Dataset Information

matches.info()

Explanation

These functions help us understand:

  • Number of rows and columns
  • Available features
  • Data types
  • Missing values

This initial inspection is the first step of exploratory data analysis.