Linear Regression Model


Terms

Dependent Variable

Independent Variable

Statistical Significant Effect


Linear Regression

linear regression.webp

Simple Linear Regression

y=β0+β1x+ϵ

Multiple Regression Formula

y=β0+β1x1+β2x2++βpxp+ϵ

Where:
- y is the dependent variable (the outcome you are trying to predict).
- x1,x2,,xp are the independent variables (the predictors).
- β0 is the y-intercept of the regression plane (or hyperplane).
- β1,β2,,βp are the coefficients (slopes) for each predictor.
- ϵ is the error term (the difference between the observed and predicted values).


Linear Regression Estimation

Ordinary Least Squares (OLS)

y=β0+β1x+ϵ


Linear Regression Assumptions (5)

A1 - Linearity
A2 - Random Sample
A3 - Exogeneity
A4 - Homoscedasticity/Homogeneity of Variance
A5 - No Perfect MultiCollinearity
Solution

Pros and Cons of Linear Regression Model

Pros

Cons


Next Lecture:

Lecture 3_Index