Skip to main content
Ridge Regression adds a penalty proportional to the square of the coefficient magnitudes (L2 regularization). This shrinks all coefficients toward zero, which helps when many features are correlated or the dataset is small.

Configuration

Input / Output

When to use

Preferred over plain Linear Regression when you have many features, multicollinearity, or a small dataset. Does not perform feature selection — all features get non-zero coefficients.