Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.clickml.app/llms.txt

Use this file to discover all available pages before exploring further.

The Scaling component brings all selected numerical features onto the same scale, which improves the performance of distance-based and gradient-based models.

Configuration

OptionDescription
MethodScaling algorithm to apply (see table below).
FeaturesNumerical columns to scale.

Methods

MethodHow it worksBest for
Standard ScalingSubtracts mean, divides by std dev. Output has mean=0, std=1.Most models — SVM, Logistic Regression, KNN
MinMax ScalingRescales values to the [0, 1] range.Neural networks, algorithms sensitive to magnitude
Robust ScalingUses median and IQR instead of mean and std dev.Data with significant outliers

Input / Output

Type
InputDataFrame
OutputDataFrame
Tree-based models (Random Forest, Decision Tree, Gradient Boosting) do not require scaling. Apply scaling before SVM, KNN, Logistic Regression, and Linear Regression.