What are the types of Scaling and How to apply it using Python: Real-World Examples

Scaling is a crucial step in machine learning that involves transforming data to bring all features into the same range. This helps the model perform better and converge faster when training. In this article, we’ll explore what scaling is, why it is needed, the different types of scaling, and how to implement each one using Python with simple examples.


1. What is Scaling?

In machine learning, data can come in various ranges. For example, let’s say you have two features: Age (in years) and Salary (in thousands). Age might vary between 20 and 60, while Salary might range from 30,000 to 120,000. These different ranges can confuse some machine learning models, especially algorithms like Gradient Descent or k-Nearest Neighbors, which depend on the distances between data points. Scaling is the process of converting all features into the same range so that no feature dominates the learning process.


2. Why is Scaling Needed?

Scaling is important for several reasons:

  • Improves model performance: Some algorithms perform better when the data is in the same range.
  • Faster convergence: Models like neural networks train faster when features are scaled.
  • Prevents dominance: Larger ranges in features like Salary might dominate smaller ranges like Age, leading to biased results.

In summary, scaling ensures all features contribute equally to the learning process.


3. Types of Scaling

There are four common ways to scale data:

  1. Min-Max Scaling (Normalization)
  2. Z-Score Scaling (Standardization)
  3. Max-Abs Scaling
  4. Robust Scaling

Let’s explore each of these step by step with a simple example.


4. Example: Age and Salary

Consider the following example data:

AgeSalary
2530,000
3550,000
4570,000
5090,000
23120,000

We’ll apply each of the four scaling techniques on this data.


5. Step-by-Step: Applying Scaling Methods

6. When to Use Which Scaling Method?

  • Min-Max Scaling: Use when you know your data falls within a fixed range (e.g., 0 to 1). It’s ideal when the data doesn’t have outliers.
  • Z-Score Scaling: Use when you want your data to have a normal distribution (bell curve) with a mean of 0 and a standard deviation of 1. This is good when data contains outliers.
  • Max-Abs Scaling: Use when the data is already centered around 0 or when you need to preserve the sign of the original data.
  • Robust Scaling: Use when your data has outliers, as this method is not affected by extreme values.

7. Python Code for Scaling Methods

Here’s how you can implement all the scaling techniques in Python using sklearn:

import pandas as pd
from sklearn.preprocessing import MinMaxScaler, StandardScaler, MaxAbsScaler, RobustScaler

# Sample data for Age and Salary
data = {'Age': [25, 35, 45, 50, 23],
        'Salary': [30000, 50000, 70000, 90000, 120000]}

# Creating a DataFrame with sample records
df_sample = pd.DataFrame(data)

# Initializing scalers
min_max_scaler = MinMaxScaler()
standard_scaler = StandardScaler()
max_abs_scaler = MaxAbsScaler()
robust_scaler = RobustScaler()

# Applying Min-Max Scaling
df_min_max_scaled = pd.DataFrame(min_max_scaler.fit_transform(df_sample), columns=['Age', 'Salary'])

# Applying Z-Score Scaling
df_standard_scaled = pd.DataFrame(standard_scaler.fit_transform(df_sample), columns=['Age', 'Salary'])

# Applying Max-Abs Scaling
df_max_abs_scaled = pd.DataFrame(max_abs_scaler.fit_transform(df_sample), columns=['Age', 'Salary'])

# Applying Robust Scaling
df_robust_scaled = pd.DataFrame(robust_scaler.fit_transform(df_sample), columns=['Age', 'Salary'])

print("\nOriginal Data:\n", df_sample)
# Display the scaled data
print("\nMin-Max Scaled Data:\n", df_min_max_scaled)
print("\nZ-Score Scaled Data:\n", df_standard_scaled)
print("\nMax-Abs Scaled Data:\n", df_max_abs_scaled)
print("\nRobust Scaled Data:\n", df_robust_scaled)

Conclusion

Scaling is an essential step in preparing data for machine learning models. Depending on the distribution and nature of the data, different scaling methods like Min-Max, Z-Score, Max-Abs, and Robust Scaling are applied. Understanding these methods and knowing when to use them can improve your model’s performance and efficiency.

Now you’re ready to apply scaling in your own projects!

Leave a Reply