India House Data
predict the house price
@kaggle.saipavansaketh_pune_house_data
predict the house price
@kaggle.saipavansaketh_pune_house_data
Welcome to the House Price Prediction Challenge, you 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.
CREATE TABLE bangalore_house_data (
"area_type" VARCHAR,
"availability" VARCHAR,
"location" VARCHAR,
"size" VARCHAR,
"society" VARCHAR,
"total_sqft" VARCHAR,
"bath" DOUBLE,
"balcony" DOUBLE,
"price" DOUBLE
);
CREATE TABLE delhi_house_data (
"area" DOUBLE,
"bhk" BIGINT,
"bathroom" DOUBLE,
"furnishing" VARCHAR,
"locality" VARCHAR,
"parking" DOUBLE,
"price" BIGINT,
"status" VARCHAR,
"transaction" VARCHAR,
"type" VARCHAR,
"per_sqft" DOUBLE
);
CREATE TABLE pune_house_data (
"area_type" VARCHAR,
"availability" VARCHAR,
"size" VARCHAR,
"society" VARCHAR,
"total_sqft" VARCHAR,
"bath" DOUBLE,
"balcony" DOUBLE,
"price" DOUBLE,
"site_location" VARCHAR
);
Anyone who has the link will be able to view this.