Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Linear Regression With Two Features
course content

Course Content

Linear Regression with Python

Linear Regression With Two FeaturesLinear Regression With Two Features

So far, we have looked at linear regression with only one feature. It is called simple linear regression. But in reality, most of the time target depends on multiple features. Linear regression with more than one feature is called Multiple Linear Regression

Two-feature Linear Regression Equation

In our example with heights, adding the mother's height as a feature to the model would likely improve our predictions. But how do we add a new feature to the model? An equation defines linear regression, so we just need to add a new feature to an equation:

Visualization

When we discussed the simple regression model, we built the 2D plot where one axis is the feature, and the other is the target. Now that we have two features, we need two axes for features and the third one for the target. So we are moving from a 2D space to a 3D one, which is much harder to visualize. The video shows a 3D scatterplot of the dataset in our example.

But now, our equation is not an equation of a line. It is an equation of a plane. Here is a scatterplot along with the predicted plane.

You may have noticed that mathematically our equation hasn't become much harder. But unfortunately, the visualization has.

Everything was clear?

Section 2. Chapter 1
some-alt