Hotel Reservations Dataset
Can you predict if customer is going to cancel the reservation ?
@kaggle.ahsan81_hotel_reservations_classification_dataset
Can you predict if customer is going to cancel the reservation ?
@kaggle.ahsan81_hotel_reservations_classification_dataset
CREATE TABLE hotel_reservations (
"booking_id" VARCHAR,
"no_of_adults" BIGINT,
"no_of_children" BIGINT,
"no_of_weekend_nights" BIGINT,
"no_of_week_nights" BIGINT,
"type_of_meal_plan" VARCHAR,
"required_car_parking_space" BIGINT,
"room_type_reserved" VARCHAR,
"lead_time" BIGINT,
"arrival_year" BIGINT,
"arrival_month" BIGINT,
"arrival_date" BIGINT,
"market_segment_type" VARCHAR,
"repeated_guest" BIGINT,
"no_of_previous_cancellations" BIGINT,
"no_of_previous_bookings_not_canceled" BIGINT,
"avg_price_per_room" DOUBLE,
"no_of_special_requests" BIGINT,
"booking_status" VARCHAR
);
Anyone who has the link will be able to view this.