Linear Regression
Contents
Linear Regression#
In this chapter, we discuss linear regression, which is a very widely used method for predicting a real-valued output (also called the dependent variable or target) \(y \in \mathbb{R}\), given a vector of real-valued inputs (also called independent variables, explanatory variables, or covariates) \(\boldsymbol{x} \in \mathbb{R}^D\). The key property of the model is that the expected value of the output is assumed to be a linear function of the input, \(\mathbb{E}[y \mid \boldsymbol{x}]=\boldsymbol{w}^{\top} \boldsymbol{x}\), which makes the model easy to interpret, and easy to fit to data [Murphy, 2019].
Further Readings#
Murphy, Kevin P. “Chapter .” In Probabilistic Machine Learning: An Introduction. MIT Press, 2022.
James, Gareth, Daniela Witten, Trevor Hastie, and Robert Tibshirani. “Chapter .” In An Introduction to Statistical Learning: With Applications in R. Boston: Springer, 2022.
Jung, Alexander. “Chapter ” In Machine Learning: The Basics. Singapore: Springer Nature Singapore, 2023.
Bishop, Christopher M. “Chapter .” In Pattern Recognition and Machine Learning. New York: Springer-Verlag, 2016.
Hal Daumé III. “Chapter .” In A Course in Machine Learning, January 2017.
https://github.com/goodboychan/goodboychan.github.io/tree/main/_notebooks