Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 765 Bytes

File metadata and controls

18 lines (10 loc) · 765 Bytes

House Price Prediction Linear Regression

Estimating the sale prices of houses is one of the basic projects to start with the Machine Learning. After implementing this we will be able to predict continuous variables using Linear regression algorithm.

Why linear regression? Linear regression is an algorithm used to predict values that are continuous in nature. It became more popular because it is the best algorithm to start with if you are a newbie to ML.

Steps Involved

  1. Importing the required packages into our python environment

  2. Importing the house price dataset

  3. Feature Selection & Data Split

  4. Modeling the data using the Linear Regression algorithm

  5. Evaluating the built model using the evaluation metrics

  6. Visualization of results