U.S. Airbnb Open Data
Airbnb listings and metrics of regions in the U.S.
@kaggle.kritikseth_us_airbnb_open_data
Airbnb listings and metrics of regions in the U.S.
@kaggle.kritikseth_us_airbnb_open_data
Since its inception in 2008, Airbnb has disrupted the traditional hospitality industry as more travellers decide to use Airbnb as their primary means of accommodation. Airbnb offers travellers a more unique and personalized way of accommodation and experience.
I had compiled this dataset for a project of mine on 20th October 2020. The project can be seen here- wherebnb.
Dataset was recompiled and updated in the same format on 14th April 2023
This dataset has one file- AB_US_2023.csv which has columns describing features such as host id, hostname, listing id, listing name, latitude and longitude of listing, the neighbourhood, price, room type, minimum number of nights, number of reviews, last review date, reviews per month, availability, host listings and city.
This dataset is a compilation of multiple datasets found on Inside Airbnb.
CREATE TABLE ab_us_2020 (
"id" BIGINT,
"name" VARCHAR,
"host_id" BIGINT,
"host_name" VARCHAR,
"neighbourhood_group" VARCHAR,
"neighbourhood" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"room_type" VARCHAR,
"price" BIGINT,
"minimum_nights" BIGINT,
"number_of_reviews" BIGINT,
"last_review" VARCHAR,
"reviews_per_month" DOUBLE,
"calculated_host_listings_count" BIGINT,
"availability_365" BIGINT,
"city" VARCHAR
);CREATE TABLE ab_us_2023 (
"id" BIGINT,
"name" VARCHAR,
"host_id" BIGINT,
"host_name" VARCHAR,
"neighbourhood_group" VARCHAR,
"neighbourhood" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"room_type" VARCHAR,
"price" BIGINT,
"minimum_nights" BIGINT,
"number_of_reviews" BIGINT,
"last_review" TIMESTAMP,
"reviews_per_month" DOUBLE,
"calculated_host_listings_count" BIGINT,
"availability_365" BIGINT,
"number_of_reviews_ltm" BIGINT,
"city" VARCHAR
);Anyone who has the link will be able to view this.