Difference between revisions of "Linear Regression"
m |
|||
| Line 1: | Line 1: | ||
[http://www.youtube.com/results?search_query=Linear+Regression+artificial+intelligence YouTube search...] | [http://www.youtube.com/results?search_query=Linear+Regression+artificial+intelligence YouTube search...] | ||
| + | [http://www.google.com/search?q=Linear+Regression+machine+learning+ML ...Google search] | ||
* [[AI Solver]] | * [[AI Solver]] | ||
| Line 6: | Line 7: | ||
* [http://medium.com/simple-ai/linear-regression-intro-to-machine-learning-6-6e320dbdaf06 Linear Regression — Intro To Machine Learning | Simple AI] | * [http://medium.com/simple-ai/linear-regression-intro-to-machine-learning-6-6e320dbdaf06 Linear Regression — Intro To Machine Learning | Simple AI] | ||
* [http://docs.microsoft.com/en-us/azure/machine-learning/studio-module-reference/linear-regression Linear Regression | Microsoft] | * [http://docs.microsoft.com/en-us/azure/machine-learning/studio-module-reference/linear-regression Linear Regression | Microsoft] | ||
| − | * [[Logistic Regression]] | + | * [[Logistic Regression (LR)]] |
A method to find pattern with a “Best Fit Line” ( therefore, “Linear” get it ?) in your data. [http://towardsdatascience.com/linear-regression-the-easier-way-6f941aa471ea Linear Regression: The Easier Way | Towards Data Science] | A method to find pattern with a “Best Fit Line” ( therefore, “Linear” get it ?) in your data. [http://towardsdatascience.com/linear-regression-the-easier-way-6f941aa471ea Linear Regression: The Easier Way | Towards Data Science] | ||
Revision as of 00:48, 6 January 2019
YouTube search... ...Google search
- AI Solver
- Capabilities
- Linear Regression — Intro To Machine Learning | Simple AI
- Linear Regression | Microsoft
- Logistic Regression (LR)
A method to find pattern with a “Best Fit Line” ( therefore, “Linear” get it ?) in your data. Linear Regression: The Easier Way | Towards Data Science
Linear regression is a common statistical method, which has been adopted in machine learning and enhanced with many new methods for fitting the line and measuring error. In the most basic sense, regression refers to prediction of a numeric target. Linear regression is still a good choice when you want a very simple model for a basic predictive task. Linear regression also tends to work well on high-dimensional, sparse data sets lacking complexity. Azure Machine Learning Studio supports a variety of regression models, in addition to linear regression. However, the term "regression" can be interpreted loosely, and some types of regression provided in other tools are not supported in Studio.
Linear Regression algorithm will use the data points to find the best fit line to model the data. A line can be represented by the equation, y = m*x + c where y is the dependent variable and x is the independent variable. Basic calculus theories are applied to find the values for m and c using the given data set. Linear Regression has 2 types as Simple Linear Regression where only 1 independent variable is used and Multiple Linear Regression where multiple independent variables are defined. 10 Machine Learning Algorithms You need to Know | Sidath Asir @ Medium