New York City Airbnb Open Data
Airbnb listings and metrics in NYC, NY, USA (2019)
@kaggle.dgomonov_new_york_city_airbnb_open_data
Airbnb listings and metrics in NYC, NY, USA (2019)
@kaggle.dgomonov_new_york_city_airbnb_open_data
Since 2008, guests and hosts have used Airbnb to expand on traveling possibilities and present more unique, personalized way of experiencing the world. This dataset describes the listing activity and metrics in NYC, NY for 2019.
This data file includes all needed information to find out more about hosts, geographical availability, necessary metrics to make predictions and draw conclusions.
This public dataset is part of Airbnb, and the original source can be found on this website.
CREATE TABLE ab_nyc_2019 (
  "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
);Anyone who has the link will be able to view this.