Lesson 16: Final Review & Comprehensive Practice

Final Review – Data Handling & Visualization

Congratulations! You’ve completed Module 2.

Recap of key concepts:

You can now load, clean, explore, and visualize real datasets — ready for modeling!

Exercise 1

Mixed review:

df.groupby("")[""].() → average per group
sns.(data=df, x="age", hue="survived") → distribution plot

Exercise 2

Match the Pandas/Seaborn tool to its use (drag to first empty zone):

df.describe() Drop here
sns.heatmap() Drop here
df.groupby().mean() Drop here
df.dropna() Drop here
Click / tap any item to place it in the first empty zone:
Statistical summary of numeric columns
Correlation matrix visualization
Average per category
Remove rows with missing values

Exercise 3

Which are true about data handling in ML? (Select all)
← Previous Lesson (15) Next Lesson →