A method that fits a line through data to describe how one variable changes with another and to make predictions.
Visual intuition
Regression picks the line that misses the dots least
The dots are size-vs-rent pairs and the dashed line is the regression: the one straight summary that misses the dots least, used to predict one variable from the other.
Formula
y ≈ intercept + slope * x
Example
If a rent regression for an illustrative city gives rent ≈ 200 + 14 × (square meters), a 60 m² flat is predicted at about 1,040 per month.
How It Works
Scatter apartment sizes against rents and the dots form a drifting cloud. Regression draws the best-fitting line through it — chosen so the dots' misses stay as small as possible — giving you a slope you can read as a rate: roughly how many euros each extra square meter costs. It summarizes trends and predicts new cases, but the line only describes association; fitting it does not prove that x causes y. (The name also appears in 'regression to the ' — a related but distinct idea.)