Hotel Booking Analysis
Hotel Booking Analysis
This dataset is from Kaggle - Hotel booking demand.
Have you ever wondered which time of the year has the highest demand of hotel booking? Or are you a hotel/resort owener who wants to know the consumption habit of the guests? This dataset provides us with the data including the time of arriving/leaving, duration of the staying, etc.
We will explore this dataset with Python Numpy/Pandas and visualize the results using Matplotlib/Seaborn/Plotly.
Downloading the Dataset
Download the dataset from Kaggle using opendatasets library
!pip install jovian opendatasets --upgrade --quiet
Let's begin by downloading the data, and listing the files within the dataset.
dataset_url = 'https://www.kaggle.com/datasets/jessemostipak/hotel-booking-demand'
Yi-Hsuan Lai6 months ago