1. Preparing ML Features
Data ScientistBackground
A dataset contains 'Age' and 'Salary' columns with vastly different ranges, which is causing bias in a K-Nearest Neighbors model.
Problem
The model is dominated by the 'Salary' feature due to its larger numerical scale.
How to use
Upload the CSV, select 'Age' and 'Salary' as target columns, and apply standard Z-Score normalization.
standardizationType: zscore, targetColumns: age, salaryOutcome
Both features are transformed to a mean of 0 and std of 1, allowing the model to weigh both variables equally.