House Data
King County house price prediction
@kaggle.arathipraj_house_data
King County house price prediction
@kaggle.arathipraj_house_data
The dataset consists of Price of Houses in King County , Washington from sales between May 2014 and May 2015. Along with house price it consists of information on 18 house features, date of sale and ID of sale.
CREATE TABLE house_data (
"id" BIGINT,
"date" TIMESTAMP,
"price" BIGINT,
"bedrooms" BIGINT,
"bathrooms" DOUBLE,
"sqft_living" BIGINT,
"sqft_lot" BIGINT,
"floors" DOUBLE,
"waterfront" BIGINT,
"view" BIGINT,
"condition" BIGINT,
"grade" BIGINT,
"sqft_above" BIGINT,
"sqft_basement" BIGINT,
"yr_built" BIGINT,
"yr_renovated" BIGINT,
"zipcode" BIGINT,
"lat" DOUBLE,
"long" DOUBLE,
"sqft_living15" BIGINT,
"sqft_lot15" BIGINT
);Anyone who has the link will be able to view this.