...

/

Min-Max scaling

Min-Max scaling

During this lesson, we will explore the Min-Max Scaling technique while going through a few essential points to keep in mind when working with this method and a code to help you implement it in your projects.

Definition

Scaling to the minimum and maximum values squeezes the values of the variables between 0 and 1.

To implement this scaling technique, we need to subtract the minimum value from all the observations and divide the result by the value range, the difference between the maximum and minimum values. Here is the formula:

x¯=Xmin(X)max(X)min(X)\bar{x} = \frac{X - min ...

Create a free account to access the full course.

By signing up, you agree to Educative's Terms of Service and Privacy Policy