Exploring the outliers for age

PHOTO EMBED

Tue May 21 2024 08:43:36 GMT+0000 (Coordinated Universal Time)

Saved by @Uncoverit #python

# Exploring the outliers for age 
customers_over_100 = df[df['Age'] > 100]
num_customers_over_100 = len(customers_over_100)

print('N of customers over the age of 100:', num_customers_over_100)
content_copyCOPY