Different features live on different scales: Age in years, Salary in thousands. But algorithms like KNN and SVM don't know this. Watch what happens when you scale.
Sign in to track progress
Click two points to compare distances across scaling methods
Raw (No Scaling)
Features retain their original units: Age in years, Salary in dollars. Distance-based algorithms will be dominated by whichever feature has the largest absolute range.
Pros
Cons
Common algorithms
Applied Formula
x_raw = x (no transformation) y_raw = y
No transformation applied; features remain on their original scales.
Distance Between Two Points
Click two points on the scatter plot to compare Euclidean distances across scaling methods.
d = √((x₁−x₂)² + (y₁−y₂)²)
When to Use Which