Baselight

Machine Hack Housing Price Prediction

Housing Price Regression Problem

@kaggle.ishandutta_machine_hack_housing_price_prediction

Loading...
Loading...

About this Dataset

Machine Hack Housing Price Prediction

Overview

The House Price Prediction Challenge, will test your regression skills by designing an algorithm to accurately predict the house prices in India. Accurately predicting house prices can be a daunting task. The buyers are just not concerned about the size(square feet) of the house and there are various other factors that play a key role to decide the price of a house/property. It can be extremely difficult to figure out the right set of attributes that are contributing to understanding the buyer's behavior as such. This dataset has been collected across various property aggregators across India. The dataset provides the 12 influencing factors your role as a data scientist is to predict the prices as accurately as possible.

You will get a lot of room for feature engineering and mastering advanced regression techniques such as Random Forest, Deep Neural Nets, and various other ensembling techniques.

Data Description:

Train.csv - 29451 rows x 12 columns
Test.csv - 68720 rows x 11 columns
Sample Submission - Acceptable submission format. (.csv/.xlsx file with 68720 rows)

Tables

Sample Submission

@kaggle.ishandutta_machine_hack_housing_price_prediction.sample_submission
  • 2.53 KB
  • 68720 rows
  • 3 columns
Loading...

CREATE TABLE sample_submission (
  "target_price" DOUBLE,
  "in" VARCHAR,
  "lacs" VARCHAR
);

Test

@kaggle.ishandutta_machine_hack_housing_price_prediction.test
  • 1.09 MB
  • 68720 rows
  • 11 columns
Loading...

CREATE TABLE test (
  "posted_by" VARCHAR,
  "under_construction" BIGINT,
  "rera" BIGINT,
  "bhk_no" BIGINT,
  "bhk_or_rk" VARCHAR,
  "square_ft" DOUBLE,
  "ready_to_move" BIGINT,
  "resale" BIGINT,
  "address" VARCHAR,
  "longitude" DOUBLE,
  "latitude" DOUBLE
);

Train

@kaggle.ishandutta_machine_hack_housing_price_prediction.train
  • 589.01 KB
  • 29451 rows
  • 12 columns
Loading...

CREATE TABLE train (
  "posted_by" VARCHAR,
  "under_construction" BIGINT,
  "rera" BIGINT,
  "bhk_no" BIGINT,
  "bhk_or_rk" VARCHAR,
  "square_ft" DOUBLE,
  "ready_to_move" BIGINT,
  "resale" BIGINT,
  "address" VARCHAR,
  "longitude" DOUBLE,
  "latitude" DOUBLE,
  "target_price_in_lacs" DOUBLE
);

Share link

Anyone who has the link will be able to view this.