House Prices 2023 Dataset
This dataset is about Pakistan Houses. The dataset is from Zameen.com website.
@kaggle.howisusmanali_house_prices_2023_dataset
This dataset is about Pakistan Houses. The dataset is from Zameen.com website.
@kaggle.howisusmanali_house_prices_2023_dataset
CREATE TABLE cleaned_data_for_model (
"unnamed_0" BIGINT -- Unnamed: 0,
"property_type" VARCHAR,
"price" BIGINT,
"location" VARCHAR,
"city" VARCHAR,
"baths" BIGINT,
"purpose" VARCHAR,
"bedrooms" BIGINT,
"area_in_marla" DOUBLE
);
CREATE TABLE for_eda_dataset (
"unnamed_0" BIGINT -- Unnamed: 0,
"property_type" VARCHAR,
"price" BIGINT,
"location" VARCHAR,
"city" VARCHAR,
"province_name" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"baths" BIGINT,
"purpose" VARCHAR,
"bedrooms" BIGINT,
"date_added" TIMESTAMP,
"agency" VARCHAR,
"agent" VARCHAR,
"area_in_marla" DOUBLE
);
CREATE TABLE house_price_dataset (
"property_id" BIGINT,
"location_id" BIGINT,
"page_url" VARCHAR,
"property_type" VARCHAR,
"price" BIGINT,
"location" VARCHAR,
"city" VARCHAR,
"province_name" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"baths" BIGINT,
"area" VARCHAR,
"purpose" VARCHAR,
"bedrooms" BIGINT,
"date_added" VARCHAR,
"agency" VARCHAR,
"agent" VARCHAR,
"area_type" VARCHAR,
"area_size" DOUBLE,
"area_category" VARCHAR
);
Anyone who has the link will be able to view this.