理解difference between Regression Analysis and Machine Learning

  • Overview

    查看Regression Analysis的定义时发现,Regression analysis is a set of statistical processes for estimating the relationship between a dependent variable and one or more independent variables.

    Isn't this just machine learning?

    再看一下Machine Learning的定义,Machine Learning (ML) is the study of computer algorithms that improve automatically through experience and by the use of data.

  • Regression Versus Classification ML

    From a certain perspective, regression is a subcategory of ML, or one of the ML “algorithms”.

    Regression and Classification are categorized under the same umbrella of supervised machine learning.

    The main difference between them is that the output variable in regression is numerical (or continuous) while that for classification is categorical (or discrete).

  • Statistics and Machine Learning

    The major difference between machine learning and statistics is their purpose.

    Machine Learning models are designed to make the most accurate predictions possible.

    Statistical models are designed for inference about the relationships between variabels.

    Statistics is the mathematical study of data; you can’t do statistics unless you have data;

    Statistical model is a model for the data that is used either to infer something about the relationship within the data or to create a model that is able to predict feature values.

  • References

  1. Is Regression Analysis Really Machine Learning?
  2. Regression Versus Classification Machine Learning: What’s the Difference?
  3. The Actual Difference Between Statistics and Machine Learning
  4. Statistics versus machine learning
  5. When should linear regression be called “machine learning”?
  6. Regression vs. Classification in Machine Learning

Guess you like

Origin blog.csdn.net/The_Time_Runner/article/details/115261207