Skip to content

Latest commit

 

History

History
64 lines (39 loc) · 2.42 KB

File metadata and controls

64 lines (39 loc) · 2.42 KB

Classification project

Will this booking for hotel will be canceled?

Question/Need:

  • What is the question behind your analysis? What is the purpose of the model/system you plan to build?
This Analysis predict if a booking for hotel will be canceled or not. The purpose of the project is help hotels to identify the bookings with potential of cancelation through classification models, explore the relationship between cancelation and features of booking, provide insight or suggestions for hotels to adopt measurement to decrease cancelation rate, so that to improve operating profit.
  • Who benefits from exploring this question or building this model/system?
Any hotel in the hotel industry will be able to benefits from building this model, given that it is able to collect pertinent data。

Data Description:

  • What dataset(s) do you plan to use, and how will you obtain the data?
This dataset contains 119390 observations for a City Hotel and a Resort Hotel. Each observation represents a hotel booking between the 1st of July 2015 and 31st of August 2017, including booking that effectively arrived and booking that were canceled.
  • What is an individual sample/unit of analysis in this project? What characteristics/features do you expect to work with?
Each row of the dataset is a booking record with target "is_canceled" and tens of features with detail information, like booking time/date/duration, guest numbers, room type and etc.
  • If modeling, what will you predict as your target?
In the modeling, the target will be "is_canceled", 1 represents "canceled", while "0" represents not.

Tools:

  • How do you intend to meet the tools requirement of the project?
  1. python
  2. numpy, pandas for data manipulating
  3. seaborn, matplotlib for data visualization
  4. sklean for classification modeling
  • Are you planning in advance to need or use additional tools beyond those required?
Tableau might be used for EDA visualization.

MVP Goal:

What would a minimum viable product (MVP) look like for this project?

The MVP for the project will provide a baseline classification model to predict if a booking will be canceled.