With two predictors the model is a plane. On the left the twenty training points in blue, the plane in green, and the residuals in red: the vertical distances between the plane and the data, which are what least squares makes small. Drag that panel to turn the box, or focus it and use the arrow keys. The loss now depends on three parameters, which is one too many to draw, so on the right are two slices through it: the loss over \(\beta_0\) and \(\beta_1\) with \(\beta_2\) held at the value the slider is on, and the loss over \(\beta_0\) and \(\beta_2\) with \(\beta_1\) held. Moving the third slider does not change the shape of a slice, only where its centre sits.
Let us apply multiple linear regression to the weather dataset. We will use all predictors except the variable we want to predict LUZ_wind_peak (obviously :)), and time (we will come back to why we drop this, when we discuss feature engineering).
With all predictors the error is lower than with pressure alone, on the training set and on the test set.
Note that a coefficient here is the effect of one predictor with all the others held fixed. With correlated predictors, for example the pressure at three different stations, individual coefficients can be large and of surprising sign while the prediction is fine. Do not read them as separate effects.