Simple Linear Regression Example in Python Machine Learning

This script is a simple demonstration of machine learning in python. This uses Linear Regression to predict pizza prices vs diameter
The LinearRegression class is an estimator. Estimators predict a value based onobserved data. In scikit-learn, all estimators implement the fit methods (used to learn the model) and predict (used to predict the value of a response variable).
Simple linear regression assumes that a linear relationship exists between the responsevariable and the explanatory variable; it models this relationship with a linear surface calleda hyperplane. A hyperplane is a subspace that has one dimension less than the ambientspace that contains it. In simple linear regression, there is one dimension for the responsevariable and another dimension for the explanatory variable, for a total of two dimensions.The regression hyperplane thus has one dimension; a hyperplane with one dimension is aline.

Linear Regression Equation

No comments:

Post a Comment

Unleashing the Power of NumPy Arrays: A Guide for Data Wranglers

Ever feel like wrestling with data in Python using clunky loops? NumPy comes to the rescue! This blog post will unveil the magic of NumPy a...