-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f24548
commit 0ead22d
Showing
1 changed file
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,15 @@ | ||
# Linear-Regression-Model-for-House-Price-Prediction | ||
Linear Regression Model for Real State House Price Prediction | ||
|
||
In this tutorial you will learn how to create Machine Learning Linear Regression Model. You will be analyzing a house price predication dataset for finding out price of house on different parameters. You will do Exploratory Data Analysis, split the training and testing data, Model Evaluation and Predictions. | ||
|
||
Problem Statement - A real state agents want the help to predict the house price for regions in the USA. He gave you the dataset to work on and you decided to use Linear Regressioon Model. Create a model which will help him to estimate of what the house would sell for. | ||
|
||
Dataset contains 7 columns and 5000 rows with CSV extension. The data contains the following columns : | ||
|
||
'Avg. Area Income': Avg. Income of householder of the city house is located in. | ||
'Avg. Area House Age': Avg. Age of Houses in same city. | ||
'Avg. Area Number of Rooms': Avg. Number of Rooms for Houses in same city. | ||
'Avg. Area Number of Bedrooms': Avg. Number of Bedrooms for Houses in same city. | ||
'Area Population': Population of city. | ||
'Price': Price that the house sold at. | ||
'Address': Address of the houses. |