Definition
Linear regression is a statistical method to model the relationship between:
- Dependent variable (\(y\)): The outcome or response variable.
- Independent variable(s) (\(x\)): The predictor(s) or explanatory variables.
It assumes that the relationship between \(x\) and \(y\) can be described by a straight line:
[ y = _0 + _1 x + ] — ## Key Terms - \(\beta_0\) (Intercept): The value of \(y\) when \(x = 0\). - \(\beta_1\) (Slope): The change in \(y\) for a one-unit increase in \(x\). - \(\epsilon\) (Error): The difference between the observed \(y\) and the predicted \(y\). —