Home → Data → Feature Engineering
Reading
0%

1 · Signal vs Noise

📖
Textbook Definition

"Feature engineering means coming up with better features to help your ML model learn the underlying structure of the data. Successful models are often 80% data preparation." — Aurélien Géron

2 · Return Value: Log Transform

🔁 Return Value

Performing np.log1p() on a Series returns a new Series where skewed values are compressed into a more normal distribution, which is essential for many linear algorithms.

📚 See Also