Regression
Regression
Focusing on Equations
Your Name
What is Linear Regression?
y = β0 + β1 x + ε
where:
y = dependent variable
x = independent variable
β0 = y-intercept (value of y when x = 0)
β1 = slope (change in y for a unit change in x)
ε = error term (captures unexplained variation)
Estimating the Regression Line
ŷ = b0 + b1 x
where:
ŷ = predicted value of y
b0 = estimate of β0
b1 = estimate of β1
y = β0 + β1 x1 + β2 x2 + ... + βk xk + ε
where:
y = dependent variable
x1 , x2 , ..., xk = independent variables
β0 , β1 , ..., βk = coefficients to be estimated
ε = error term
Assumptions of Linear Regression