- Simple Linear Regression is a statistical method used to model the relationship between two continuous variables.
- It assumes a linear relationship: \(Y = \beta_0 + \beta_1 X + \epsilon\), where:
- \(Y\) is the dependent variable (response variable).
- \(X\) is the independent variable (predictor variable).
- \(\beta_0\) is the intercept, \(\beta_1\) is the slope, and \(\epsilon\) represents error.
- It is commonly used for predictive modeling, trend analysis, and understanding relationships between variables.