divyanshugit / Avid-Algorithms

Basic knowledge of Data Structure and Algorithms and LeetCode solution in Python & C++.
MIT License
11 stars 20 forks source link

Linear Regression Algorithm #31

Open ankitajais20 opened 2 years ago

ankitajais20 commented 2 years ago

Implementation of Linear Regression model in python. Linear regression is a statistical method for modeling relationships between a dependent variable with a given set of independent variables.To create a model, we must estimate the values of regression coefficients. And once we’ve estimated the coefficients, we can use the model to predict responses.

divyanshugit commented 2 years ago

Give it a description about Linear Regression

ankitajais20 commented 2 years ago

@divyanshugit I have added the Linear Regression Algorithm. Please check PR #37