House Price Prediction India
Predicting the house price of Gurgaon
@kaggle.jenilhareshbhaighori_house_price_prediction
Predicting the house price of Gurgaon
@kaggle.jenilhareshbhaighori_house_price_prediction
This data set is basically web scrap from 99acers website using beutifulsoup.
this data have the housing detail to **predict the house price **with regression.
It's a great dataset for evaluating simple regression models.
Please upvote me🥹.
CREATE TABLE house_cleaned (
  "property_name" VARCHAR,
  "property_type" VARCHAR,
  "society" VARCHAR,
  "price" DOUBLE,
  "price_per_sqft" DOUBLE,
  "area" DOUBLE,
  "areawithtype" VARCHAR,
  "bedroom" BIGINT,
  "bathroom" BIGINT,
  "balcony" VARCHAR,
  "additionalroom" VARCHAR,
  "address" VARCHAR,
  "floornum" DOUBLE,
  "facing" VARCHAR,
  "agepossession" VARCHAR,
  "nearbylocations" VARCHAR,
  "description" VARCHAR,
  "furnishdetails" VARCHAR,
  "features" VARCHAR,
  "rating" VARCHAR
);CREATE TABLE houses (
  "property_name" VARCHAR,
  "link" VARCHAR,
  "society" VARCHAR,
  "price" VARCHAR,
  "rate" VARCHAR,
  "area" VARCHAR,
  "areawithtype" VARCHAR,
  "bedroom" VARCHAR,
  "bathroom" VARCHAR,
  "balcony" VARCHAR,
  "additionalroom" VARCHAR,
  "address" VARCHAR,
  "nooffloor" VARCHAR,
  "facing" VARCHAR,
  "agepossession" VARCHAR,
  "nearbylocations" VARCHAR,
  "description" VARCHAR,
  "furnishdetails" VARCHAR,
  "features" VARCHAR,
  "rating" VARCHAR,
  "property_id" VARCHAR
);Anyone who has the link will be able to view this.