Chapter3: Linear Regression
Linear Regression Linear regression is a very simple supervised learning methods, though still very useful.
Simple Linear Regression Simple linear regression is a straightforward approach for predicting a quantitative response $Y$ on the basis of a single predictor variable $X$. It assumes that there is approximately a linear relationship between $X$ and $Y$.
$$ Y \approx \beta_{0} + \beta_{1}X $$ In the equation, $\beta_0$ and $\beta_1$ are two unknown constants that represetn the intercept and slope termes in the linear model.
[Read More]