What is the formula of a multiple linear regression model?
y = bo + b1x1 + b2x2 + … + bpxp + e
What is the multiple linear regression model?
It is a model used to fit a relationship between a numerical outcome variable (Y) and a set of predictors (X1, X2, etc).
Which two objectives are there to use multiple linear regression?
What are the four main characteristics of an explanatory multiple regression model?
What are the four main characteristics of a predictive multiple regression model?
Which method can be used to estimate the unknown parameters in a regression model?
Ordinary Least Squares (OLS)
-> It minimizes the errors associated with predicting values for the dependent variable.
Why does the OLS make use a least squares criterion?
You are looking at the deviations between the observed and the predicted values. If you do not square those deviations, you allow the positive and the negative deviations to cancel eachother out.
How do you estimate the error for a single outcome?
Ei = Yhat - Yi (The predicted outcome minus the actual observation)
How do you estimate the total error of a multiple regression model?
sum(Yi - Yhat)^2
Which 4 assumptions do we make when using a multiple linear regression model for prediction?
What are reasons to reduce the number of predictors in your model?