top of page
Writer's pictureDanielle Costa Nakano

Linear Regression (Machine Learning Algorithm)

Updated: Dec 14

Description: It is used to estimate real values (cost of houses, number of calls, total sales etc.) based on continuous variable(s). Here, we establish relationship between independent and dependent variables by fitting a best line. 

Linear Regression is of mainly two types: Simple Linear Regression and Multiple Linear Regression.

  • Simple Linear Regression is characterized by one independent variable.

  • Multiple Linear Regression(as the name suggests) is characterized by multiple (more than 1) independent variables.

  • While finding best fit line, you can fit a polynomial or curvilinear regression. And these are known as polynomial or curvilinear regression.


Algorithm: This best fit line is known as regression line and represented by a linear equation Y= a *X + b. n this equation: Y – Dependent Variable, a – Slope, X – Independent variable, b – Intercept.  

These coefficients a and b are derived based on minimizing the sum of squared difference of distance between data points and regression line.


17 views0 comments

Recent Posts

See All

Data Science: Case Studies to build trust

If you are productizing predictive analytics or just trying to get buy-in around a model, try a case study to keep the momentum building...

Data Science: Too good to be true

If you are productizing a predictive model at work or playing around with MLE in R for the first time, always check the data. Roles When...

Comments


bottom of page