Multiple Linear Regression

Multiple Linear Regression

Extends the Simple Linear Regression to accommodate multiple predictors.

In general, suppose that we have p distinct predictors. Then the multiple linear regression model takes the form:

Y=β0+β1X1+β2X2+⋯+βpXp+ϵ

where Xj represents the jth predictor and βj quantifies the association between that variable and the response. We interpret βj as the average effect on Y of a one unit increase in Xj, holding all other predictors fixed.

Estimating Coefficients

Given estimates β0^,β1^,⋯,βp^, we can make predictions using the formula:

y^=β0^+β1^x1+β2^x2+⋯+βp^xp

We choose β0^,β1^,⋯,βp^ to minimize:

RSS=∑i=1n(yi−y^)2=∑i=1n(yi−β0^−β1^xi1−β2^xi2−⋯−βp^xip)2

The coefficient estimates are best represented using matrix algebra.

Assess Coefficient Accuracy

Assess Model Accuracy

Sources: 1

Connect With Me!