In this exercise, you will analyze the "Gender" and "Age" columns from the dataset. Follow the instructions below to complete the tasks:

Instructions:

  1. Find Unique Values:

  2. Calculate Summary Statistics:

Python Code:


# 1. Find unique values in the 'Gender' column

import pandas as pd

unique_genders = df['Gender'].unique()

print("Unique Genders:", unique_genders)


# 2. Display summary statistics for the 'Age' column

import pandas as pd

age_stats = df['Age'].describe()

print("Age Statistics:\n", age_stats)