VOOZH about

URL: https://www.geeksforgeeks.org/machine-learning/house-price-prediction-using-machine-learning-in-python/

⇱ House Price Prediction using Machine Learning in Python - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

House Price Prediction using Machine Learning in Python

Last Updated : 19 Jan, 2026

Predicting house prices is a key challenge in the real estate industry, helping buyers, sellers and investors make informed decisions. By using machine learning algorithms, we can estimate the price of a house based on various features such as location, size, number of bedrooms and other relevant factors.

We will use the House Price Prediction Dataset, which can be downloaded from the provided link. The dataset contains 13 key features:

  • Id: Unique identifier for each record.
  • MSSubClass: Type of dwelling involved in the sale.
  • MSZoning: General zoning classification of the property.
  • LotArea: Lot size in square feet.
  • LotConfig: Configuration of the lot.
  • BldgType: Type of dwelling.
  • OverallCond: Overall condition rating of the house.
  • YearBuilt: Original construction year.
  • YearRemodAdd: Remodel year (same as construction year if no remodeling).
  • Exterior1st: Exterior covering of the house.
  • BsmtFinSF2: Type 2 finished square feet of the basement.
  • TotalBsmtSF: Total basement area in square feet.
  • SalePrice: The target variable we aim to predict.

Step 1: Importing Libraries and Dataset

In the first step we load the libraries which is needed for Prediction:

  • Import Pandas to load the Dataframe
  • Import Matplotlib to visualize the data features
  • Import Seaborn to see the correlation between features using heatmap

You can download full dataset from here

Output:

πŸ‘ Image

As we have imported the data. So shape method will show us the dimension of the dataset. 

Output: 

(2919,13)

Step 2: Data Preprocessing

Here we categorize the features based on their data types (integer, float, or object) and count the number of features in each category.

Output: 

Categorical variables: 4
Integer variables: 6
Float variables: 3

Step 3: Exploratory Data Analysis

Exploratory Data Analysis involves examining the dataset in depth to uncover patterns, detect anomalies and understand the underlying structure. Before drawing any conclusions, it’s important to analyze all variables carefully.

Here we will create a heatmap using the Seaborn library to visualize correlations between features.

Output:

πŸ‘ heatmap1
Heatmap

To examine the categorical features, we will create a bar plot to visualize their distributions

Output:

πŸ‘ hpp1
Barplot

The plot shows that Exterior1st has around 16 unique categories and other features have around  6 unique categories. To findout the actual count of each category we can plot the bargraph of each four features separately.

Output:

πŸ‘ hdu66
Bar Plot for each category

Step 4: Data Cleaning

Data Cleaning is the way to improvise the data or remove incorrect, corrupted or irrelevant data. As in our dataset there are some columns that are not important and irrelevant for the model training. So we can drop that column before training. There are 2 approaches to dealing with empty/null values

  • We can easily delete the column/row (if the feature or record is not much important).
  • Filling the empty slots with mean/mode/0/NA/etc. (depending on the dataset requirement).

As Id Column will not be participating in any prediction. So we can Drop it.

Replacing SalePrice empty values with their mean values to make the data distribution symmetric.

Drop records with null values (as the empty records are very less).

Checking features which have null values in the new dataframe (if there are still any).

Output:

πŸ‘ null1
Sum of null values in each columns

Step 5: OneHotEncoder - For Label categorical features

One hot Encoding is the best way to convert categorical data into binary vectors. This maps the values to integer values. By using OneHotEncoder, we can easily convert object data into int. So for that firstly we have to collect all the features which have the object datatype. To do so, we will make a loop.

Output:

πŸ‘ ohe1
Categorical Variables

Then once we have a list of all the features. We can apply OneHotEncoding to the whole list.

Step 6: Splitting Dataset into Training and Testing

X and Y splitting (i.e. Y is the SalePrice column and the rest of the other columns are X)

Step 7: Model Training and Accuracy

As we have to train the model to determine the continuous values, so we will be using these regression models.

  • SVM-Support Vector Machine
  • Random Forest Regressor
  • Linear Regressor

And To calculate loss we will be using the mean_absolute_percentage_error module. It can easily be imported by using sklearn library. The formula for Mean Absolute Error is:

1. SVM - Support vector Machine

Support vector Machine is a supervised machine learning algorithm primarily used for classification tasks though it can also be used for regression. It works by finding the hyperplane that best divides a dataset into classes. The goal is to maximize the margin between the data points and the hyperplane.

Output : 

0.1870512931870423

2. Random Forest Regression

Random Forest is an ensemble learning algorithm used for both classification and regression tasks. It constructs multiple decision trees during training where each tree in the forest is built on a random subset of the data and features, ensuring diversity in the model. The final output is determined by averaging the outputs of individual trees (for regression) or by majority voting (for classification).

Output : 

0.18602695581046166

3. Linear Regression

Linear Regression is a statistical method used for modeling the relationship between a dependent variable and one or more independent variables. The goal is to find the line that best fits the data. This is done by minimizing the sum of the squared differences between the observed and predicted values. Linear regression assumes that the relationship between variables is linear.

Output : 

0.1874168384159986

Clearly SVM model is giving better accuracy as the mean absolute error is the least among all the other regressor models i.e. 0.18 approx. To get much better results ensemble learning techniques like Bagging and Boosting can also be used.

You can download full code from here

Comment
Article Tags: