Search⌘ K

Challenge: Clean the Data

Explore data cleaning techniques by implementing a function to remove rows with missing values and eliminate outliers in key housing data columns using the IQR method. This lesson prepares you to handle real-world data for accurate predictive analysis.

We'll cover the following...

Problem statement

The function clean_data(df) needs to be implemented. The df is the DataFrame on which operations are performed. The data used for this is of different housing societies, and it is made available ...