Housing Prices Dataset
Housing Prices Prediction - Regression Problem
@kaggle.yasserh_housing_prices_dataset
Housing Prices Prediction - Regression Problem
@kaggle.yasserh_housing_prices_dataset
A simple yet challenging project, to predict the housing price based on certain factors like house area, bedrooms, furnished, nearness to mainroad, etc. The dataset is small yet, it's complexity arises due to the fact that it has strong multicollinearity. Can you overcome these obstacles & build a decent predictive model?
Harrison, D. and Rubinfeld, D.L. (1978) Hedonic prices and the demand for clean air. J. Environ. Economics and Management 5, 81–102.
Belsley D.A., Kuh, E. and Welsch, R.E. (1980) Regression Diagnostics. Identifying Influential Data and Sources of Collinearity. New York: Wiley.
CREATE TABLE housing (
  "price" BIGINT,
  "area" BIGINT,
  "bedrooms" BIGINT,
  "bathrooms" BIGINT,
  "stories" BIGINT,
  "mainroad" VARCHAR,
  "guestroom" VARCHAR,
  "basement" VARCHAR,
  "hotwaterheating" VARCHAR,
  "airconditioning" VARCHAR,
  "parking" BIGINT,
  "prefarea" VARCHAR,
  "furnishingstatus" VARCHAR
);Anyone who has the link will be able to view this.