<aside> 🟪

Why is data preprocessing important in Machine Learning?

</aside>

Preprocessing prepares and cleans data so the model can learn important patterns and avoid mistakes.

<aside> 🟪

What is Feature Engineering?

</aside>

Feature engineering transform raw data into meaningful features to improve model performance.

<aside> 🟪

How do you handle missing values?

</aside>

<aside> 🟪

What is the purpose of feature scaling, and when should it be applied?

</aside>

Purpose: Feature scaling makes all data features have similar ranges, so no feature dominates others. This improves model performance.

When to Apply:

  1. Use it with models like Logistic Regression, SVM, or KNN
  2. When features have different units or ranges.