top of page
  • Writer's pictureDanielle Costa Nakano

Machine Learning Algorithm - Linear Regression

Updated: Nov 9, 2019

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.


0 comments

Recent Posts

See All

Data Science Products: Building trust with Case Studies

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 and project moving forward. Partner with revenue teams and clie

Data Science Products: 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 working on a predictive model at work, everyone has a role. Pr

Post: Blog2_Post
bottom of page