Hotel Booking Cancel
This dataset information about hotel bookings, including cancellations.
@kaggle.willianoliveiragibin_hotel_booking_cancel
This dataset information about hotel bookings, including cancellations.
@kaggle.willianoliveiragibin_hotel_booking_cancel
this graph was created in R:
This dataset provides comprehensive details about hotel bookings, specifically focusing on cancellations. It includes various attributes such as the booking date, cancellation status, lead time, customer type, and the type of hotel (city or resort). The dataset is especially valuable for understanding patterns and trends in hotel booking cancellations, as well as for gaining insights into customer behavior. Analysts and data scientists can use this data to develop predictive models, helping to identify potential cancellations and improve booking strategies. The dataset is ideal for data science projects involving classification, time series analysis, or predictive modeling to minimize hotel cancellations and maximize booking efficiency.
CREATE TABLE hotel_booking_new (
"hotel" VARCHAR,
"is_canceled" BIGINT,
"lead_time" BIGINT,
"arrival_date_year" BIGINT,
"arrival_date_month" VARCHAR,
"arrival_date_week_number" BIGINT,
"arrival_date_day_of_month" BIGINT,
"stays_in_weekend_nights" BIGINT,
"stays_in_week_nights" BIGINT,
"adults" BIGINT,
"children" DOUBLE,
"babies" BIGINT,
"meal" VARCHAR,
"country" VARCHAR,
"market_segment" VARCHAR,
"distribution_channel" VARCHAR,
"is_repeated_guest" BIGINT,
"previous_cancellations" BIGINT,
"previous_bookings_not_canceled" BIGINT,
"reserved_room_type" VARCHAR,
"assigned_room_type" VARCHAR,
"booking_changes" BIGINT,
"deposit_type" VARCHAR,
"days_in_waiting_list" BIGINT,
"customer_type" VARCHAR,
"adr" DOUBLE,
"required_car_parking_spaces" BIGINT,
"total_of_special_requests" BIGINT,
"reservation_status" VARCHAR,
"reservation_status_date" TIMESTAMP,
"name" VARCHAR,
"phone_number" VARCHAR,
"credit_card" VARCHAR
);Anyone who has the link will be able to view this.