What is Regression ?

You'll learn about Regression in this lesson. It is a concept that has been borrowed from Inferential Statistics and involves predicting a real-valued output.

What is Regression?

Regression comes under supervised learning and it involves predicting a real-valued output. Classification predicts a discrete-valued output.

Key terms

Input column or Independent features

The columns that are used to predict the output column are called the input columns or independent features. These are denoted as x1x_1, x2x_2, x3x_3, … xnx_n where x1x_1 is the first feature and so on. Note that nn denotes the total number of features or dimensions.

Output column or dependent feature

The column that is to be predicted is called the output column or dependent feature. It is denoted as yy ...