Normalization Techniques in Machine Learning

Data Science with Python 6 min min read Updated: Mar 07, 2026 Intermediate
Normalization Techniques in Machine Learning
Intermediate Topic 3 of 10

Normalization

Normalization rescales values into a specific range, usually between 0 and 1.

python from sklearn.preprocessing import MinMaxScaler scaler = MinMaxScaler() scaled_data = scaler.fit_transform([[10],[20],[30]])

Next Tutorial: Standardization Techniques

Get Newsletter

Subscibe to our newsletter and we will notify you about the newest updates on Edugators