Standardization Techniques for Machine Learning

Data Science with Python 6 min min read Updated: Mar 07, 2026 Intermediate
Standardization Techniques for Machine Learning
Intermediate Topic 4 of 10

Standardization

Standardization rescales data so that it has a mean of zero and a standard deviation of one.

python from sklearn.preprocessing import StandardScaler scaler = StandardScaler()

Next Tutorial: Encoding Categorical Features

Get Newsletter

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