Assignment : Inspecting the Dataset
Goal: Familiarize yourself with dataset size and structure.
Instructions:
Use .shape to determine the number of rows and columns.
View the first 8 rows of the dataset using .head(8).
Run .info() to display the dataset summary.
Python Code:
1. print("Dataset Shape (Rows, Columns):", df.shape)
2. df.head(8)
3.df.info()