Real Estate Property Transactions Dataset
Property transaction details: dates,locations,prices,characteristics,tax rate
@kaggle.subhiarjaria09_real_estate_property_transactions_dataset
Property transaction details: dates,locations,prices,characteristics,tax rate
@kaggle.subhiarjaria09_real_estate_property_transactions_dataset
Description:
Features:
Date: The date when the property transaction occurred.
Year: The year of the property transaction.
Locality: The locality or area where the property is located.
Estimated Value: The estimated value of the property.
Sale Price: The actual sale price of the property.
Property: The type of property (e.g., Single Family).
Residential: Indicates whether the property is residential or not.
Num_rooms: The number of rooms in the property.
Num_bathrooms: The number of bathrooms in the property.
Carpet Area: The carpet area of the property.
Property Tax Rate: The property tax rate applicable to the property.
Face: The facing direction of the property (e.g., North, South, East).
CREATE TABLE v3 (
"date" TIMESTAMP,
"year" BIGINT,
"locality" VARCHAR,
"estimated_value" DOUBLE,
"sale_price" DOUBLE,
"property" VARCHAR,
"residential" VARCHAR,
"num_rooms" BIGINT,
"num_bathrooms" BIGINT,
"carpet_area" DOUBLE,
"property_tax_rate" DOUBLE,
"face" VARCHAR
);Anyone who has the link will be able to view this.