Skip to content

Predicting house price with linear regression and feature selection

License

Notifications You must be signed in to change notification settings

AsadiAhmad/House-Price-Prediction

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

House-Price-Prediction

Predicting house price with linear regression and with feature selection

Tech 🛠️ Languages and Tools :

Python  Jupyter Notebook  Google Colab  Numpy  Pandas  Sci-kit Learn 

Run the Notebook on Google Colab

You can easily run this code on google colab by just clicking this badge Open In Colab

Algorithms used

  • Pearson Correlation : for features selection
  • Mutual Information : for feature seletion
  • Linear Regression algorithm : for training model

About the Dataset

Download Dataset

you can use this Dataset with clicking this badges :

Train set : Static Badge

Test Set : Static Badge

Using Dataset on jupyter notebook

on the step 3 of the code file you can easily use the dataset like importing this code:

train_set_url = "https://raw.githubusercontent.com/AsadiAhmad/House-Price-Prediction/refs/heads/main/Dataset/train.csv"
test_set_url = "https://raw.githubusercontent.com/AsadiAhmad/House-Price-Prediction/refs/heads/main/Dataset/test.csv"

pd.set_option('display.max_rows', None)

train_set = pd.read_csv(train_set_url)
test_set = pd.read_csv(test_set_url)

License

This project is licensed under the MIT License.

About

Predicting house price with linear regression and feature selection

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published