Skip to content

ManoharManu1999/AtliQ-Hotels-Data-Analysis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

4 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Banner

๐Ÿจ AtliQ Hotels โ€“ Data Analysis & Business Insights Project

๐Ÿš€ Executive Summary

AtliQ Hotels, a multi-city hospitality chain operating luxury and business properties, faced challenges in revenue optimization, occupancy performance, and booking efficiency.

This project delivers a comprehensive Exploratory Data Analysis (EDA) to uncover:

  • ๐Ÿ“‰ Revenue leakage due to cancellations & no-shows
  • ๐Ÿ™๏ธ City-level performance gaps
  • ๐Ÿ›๏ธ High vs. low-performing room categories
  • ๐Ÿ“… Seasonal revenue patterns
  • ๐Ÿ“Š Channel dependency and booking behavior

The analysis transforms raw booking data into clear, actionable business recommendations aimed at improving occupancy, revenue, and strategic decision-making.

A presentation deck summarizing the insights is provided alongside the notebook.

๐Ÿ“Š Key Business Metrics

  • Cancellation rate: ~24.8% of total bookings
  • No-show rate: ~5%
  • Average occupancy: 63% overall, 74% weekends vs 52% weekdays
  • Top revenue city: Mumbai (โ‰ˆ35% of total)
  • Peak season revenue: Mayโ€“July

These KPIs highlight where the business is losing share and where focus should go.


๐Ÿ“Œ Key Business Findings

1๏ธโƒฃ Revenue Leakage Identified

  • ~24.8% bookings were cancelled
  • ~5% were no-shows
  • Significant revenue loss due to booking inefficiencies

Impact: Stronger cancellation policies and direct booking incentives are needed.


2๏ธโƒฃ City-Level Revenue Leaders

  • ๐Ÿฅ‡ Mumbai generated the highest revenue
  • Followed by Bangalore and Hyderabad
  • Delhi had high occupancy but comparatively lower revenue

Insight: Pricing strategy and room mix vary by city.


3๏ธโƒฃ Room Category Performance

  • RT2 (Elite) is the most booked category across cities
  • Presidential rooms generate highest revenue per booking but have lower demand
  • Standard rooms consistently rank second

Opportunity: Reposition or bundle premium rooms to increase utilization.


4๏ธโƒฃ Weekend vs Weekday Behavior

  • Weekend occupancy: ~74%
  • Weekday occupancy: ~52%

Opportunity: Introduce weekday corporate packages to stabilize revenue.


5๏ธโƒฃ Seasonal Revenue Trends

  • Mayโ€“July: Peak revenue months
  • December & January: Revenue dip

Opportunity: Launch off-season campaigns and dynamic pricing models.


๐ŸŽฏ Business Recommendations

  • Implement dynamic pricing strategies for low-demand periods
  • Promote underutilized premium rooms via bundled offers
  • Reduce reliance on third-party platforms by incentivizing direct bookings
  • Improve cancellation policies to minimize revenue leakage
  • Replicate strategies from high-performing properties (e.g., Exotica) across portfolio

๐Ÿ› ๏ธ Tools & Technologies

Category Tools Used
Programming Python
Data Manipulation pandas, numpy
Visualization matplotlib, seaborn
Environment Jupyter Notebook
Version Control Git & GitHub

๐Ÿงฎ Example Code Snippet

import pandas as pd

# load booking data
df = pd.read_csv('datasets/fact_bookings.csv', parse_dates=['booking_date', 'checkin_date'])

# compute cancellation rate
cancel_rate = df['status'].eq('Cancelled').mean()
print(f'Cancellation rate: {cancel_rate:.1%}')

# revenue by city
revenue_city = df.groupby('city')['revenue'].sum().sort_values(ascending=False)
print(revenue_city.head())

This snippet demonstrates typical data loading and KPI calculations using pandas.


๐Ÿ“‚ Datasets Used

Dataset Description
dim_date.csv Date dimension data
dim_hotels.csv Hotel metadata (city, type)
dim_rooms.csv Room categories
fact_bookings.csv Detailed booking transactions
fact_aggregated_bookings.csv Pre-aggregated KPIs

๐Ÿงน Data Preparation Process

  • Standardized date formats
  • Handled missing values using contextual logic
  • Removed duplicate records
  • Treated outliers using IQR method
  • Merged dimension & fact tables ensuring referential integrity

๐Ÿ“Š Analytical Approach

The project followed a structured EDA framework:

  1. Data Cleaning & Validation
  2. KPI Calculation & Metric Analysis
  3. City-wise & Property-wise Performance Evaluation
  4. Room Category Performance Analysis
  5. Revenue Trend & Seasonality Study
  6. Occupancy Pattern Analysis
  7. Business Recommendation Framework

๐Ÿ“ˆ Selected Visualizations & Strategic Insights

Below are a few of the most illustrative charts from the analysis:

Booking Status Distribution

Cancellation/noโ€‘show rate (~30%) clearly exposes revenue leakage.
Strategic insight: Enforce stricter cancellation policies and promote nonโ€‘refundable rates.

Revenue by City

Mumbai leads revenue; other cities underperform.
Recommendation: Tailor pricing and marketing by city to close the gap.

Elite rooms dominate bookings but bring less revenue per stay than presidential suites.
Strategy: Upsell premium rooms and create value packages.

Monthly Revenue Trend

Revenue peaks in Mayโ€“July, dips in winter months.
Action: Launch offโ€‘season campaigns and use dynamic pricing.

(Full visualizations available in the Jupyter Notebook and presentation deck.)


๐Ÿ’ผ Business Impact & Strategic Value

This project simulates a real-world hospitality analytics scenario and demonstrates how operational booking data can be transformed into strategic decision-making tools.

๐Ÿ” What This Analysis Enables for Leadership:

  • Clear visibility into revenue leakage from cancellations and no-shows
  • City-level performance diagnostics to guide pricing and marketing strategy
  • Room-category level demand analysis for better inventory allocation
  • Seasonal revenue trend insights for dynamic pricing decisions
  • Data-backed recommendations to improve occupancy and profitability

๐ŸŽฏ Why This Matters

In a competitive hospitality market, small inefficiencies compound into significant revenue loss.

By applying structured exploratory data analysis, KPI evaluation, and business reasoning, this project bridges the gap between raw booking data and executive-level strategy.

It showcases the ability to:

  • Translate business problems into analytical questions
  • Quantify operational inefficiencies
  • Extract revenue-driving insights
  • Communicate findings in a structured, executive-ready format

๐Ÿ› ๏ธ How to Run the Project

  1. Clone the repository

    git clone https://github.com/ManoharManu1999/AtliQ-Hotels-EDA.git
    cd AtliQ-Hotels-EDA
  2. Set up Python environment

    python -m venv venv
    venv\\Scripts\\activate  # Windows
    pip install -r requirements.txt  # create this file if needed
  3. Launch the notebook

    jupyter notebook "AtliQ Hotels Data Analysis.ipynb"
  4. View the presentation deck located at AtliQ Hospitality Project Presentation.pdf.

  5. Explore the visuals under the images/ folder or regenerate using the notebook.


๐Ÿ“ Project Structure

๐Ÿ“ฆ AtliQ-Hotels-EDA
โ”œโ”€โ”€ AtliQ Hotels Data Analysis.ipynb
โ”œโ”€โ”€ README.md
โ”œโ”€โ”€ AtliQ Hospitality Project Presentation.pdf
โ”œโ”€โ”€ /data
โ”‚   โ”œโ”€โ”€ dim_date.csv
โ”‚   โ”œโ”€โ”€ dim_hotels.csv
โ”‚   โ”œโ”€โ”€ dim_rooms.csv
โ”‚   โ”œโ”€โ”€ fact_bookings.csv
โ”‚   โ””โ”€โ”€ fact_aggregated_bookings.csv
โ””โ”€โ”€ /images
    โ”œโ”€โ”€ booking_status_distribution.png
    โ”œโ”€โ”€ revenue_by_city.png
    โ”œโ”€โ”€ occupancy_by_room_category.png
    โ”œโ”€โ”€ monthly_revenue_trend.png
    โ””โ”€โ”€ ...

๐Ÿ“ฌ Contact & Professional Profile

If you would like to discuss this project or explore collaboration opportunities:

LinkedIn Email GitHub

Thank you for exploring the AtliQ Hotels EDA project! I hope the insights and recommendations provide value to hospitality professionals and data enthusiasts alike.


๐Ÿ’ผ Career Interest

I am currently seeking opportunities in Data Analyst / Business Analyst roles where I can apply data-driven decision-making to solve real-world business problems.

Open to full-time roles, collaborative projects, and analytics-driven initiatives.

About

Python-based EDA of hotel booking data uncovering revenue leakage, occupancy trends, and city-level performance insights.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors