Real Estate Dataset
Explore Spatial dynamics, Price, and Quality of Apartments in Slovakia (11/23)
@kaggle.arnoldkakas_real_estate_dataset
Explore Spatial dynamics, Price, and Quality of Apartments in Slovakia (11/23)
@kaggle.arnoldkakas_real_estate_dataset
The dataset comprises scraped advertising data from the nehnutelnosti.sk page in mid-November 2023. Nehnutelnosti specializes in real estate listings and services. In adherence to ethical scraping principles, the robots.txt protocol was respected, among other precautions.
All data is related to apartment listings; no houses or any other types of real estate are included. The data structure includes the following columns:
This dataset has not undergone cleaning processes and is intentionally left raw. It is meant to serve as a practical resource for learning essential data science skills such as data cleaning, exploratory data analysis (EDA), and training predictive models. Embrace the opportunity to enhance your skills while exploring the nuances of real-world data.
Feedback Request:
If you find this dataset valuable for your work or studies, I kindly ask you to take a moment to upvote and leave comments. Your feedback is crucial in enhancing the quality and usefulness of this resource for the community.
CREATE TABLE real_estate_dataset (
"name_nsi" VARCHAR,
"price" BIGINT,
"index" DOUBLE,
"environment" DOUBLE,
"quality_of_living" DOUBLE,
"safety" DOUBLE,
"transport" DOUBLE,
"services" DOUBLE,
"relax" DOUBLE,
"condition" VARCHAR,
"area" DOUBLE,
"energy_costs" DOUBLE,
"provision" BIGINT,
"certificate" VARCHAR,
"construction_type" VARCHAR,
"orientation" VARCHAR,
"year_built" DOUBLE,
"last_reconstruction" DOUBLE,
"total_floors" DOUBLE,
"floor" DOUBLE,
"lift" BIGINT,
"balkonies" DOUBLE,
"loggia" DOUBLE,
"cellar" BIGINT,
"type" VARCHAR,
"rooms" BIGINT,
"district" VARCHAR
);
Anyone who has the link will be able to view this.