Data Normalization in R

Data Science with R Programming 6 min min read Updated: Mar 07, 2026 Beginner
Data Normalization in R
Beginner Topic 3 of 10

Normalization

Normalization transforms values into a standard range such as 0 to 1.

r normalize <- function(x) { (x - min(x)) / (max(x) - min(x)) }

Next Tutorial: Feature Transformation

Get Newsletter

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