SIMPLE LINEAR REGRESSION
About Linear Regression
Linear regression is an effective and commonly used machine learning algorithm that can be used to predict a continuous target variable based on one or more input features. This method assumes that there is a linear relationship between the input and output variables, and the goal of linear regression is to find a best-fit line that accurately represents this relationship. This line is determined by an intercept term and a slope coefficient, which are derived from the data.
There are two types of linear regression: simple and multiple. Simple linear regression predicts a target variable with only one input feature, while multiple linear regression uses multiple input features. The performance of the model is assessed by metrics such as mean squared error, mean absolute error, and R-squared.
It is a basic and commonly used type of predictive analysis. These regression estimates are used to explain the relationship between one dependent variable and one or more independent variables.
Y = a + bX
where.
- Y – Dependent Variable
- a – intercept - Bise
- X – Independent variable
- b – Slope -Weights
Example Notebook
Let's consider the following notebook for simple Linear regression.
Conclusion
Related Posts
Thank You So Much for Reading Simple Linear Regression - Machine Learning Article.