Simple Linear Regression is a statistical model that can be used to find linear relationships between two variables in a given data set.
Linear Regression models can be a powerful analytical tool, allowing researchers to predict potential future outcomes.
A typlical linear regression can be modeled with the equation \[ Y = \beta_0 + \beta_1x + \varepsilon \], with the equation in terms of dataset variables being \[ Life Expectancy = \beta_0 + \beta_1(Year) + \varepsilon\]
The linear regression model finds a line of best fit through the provided datapoints, with \(\varepsilon\) = +/- error from the regression line
Using the dataset “Life Expectancy Data” a linear regression model of life expectancy vs. year can be generated.