|
|
import streamlit as st |
|
|
|
|
|
|
|
|
st.title("Welcome to the Hotel Data Analysis App") |
|
|
st.markdown(""" |
|
|
This application is designed to help analyze hotel data, uncover insights, and build predictive models. |
|
|
Navigate through the app using the sidebar to explore various functionalities. |
|
|
|
|
|
### Features: |
|
|
- **Introduction and About Data**: Learn about the dataset and download a sample file. |
|
|
- **EDA and Feature Engineering**: Upload and analyze your dataset to uncover patterns and relationships. |
|
|
- **Model Creation**: Build and evaluate machine learning models using your data. |
|
|
- **Conclusion**: Summarize findings and key insights. |
|
|
|
|
|
### Purpose: |
|
|
This app is tailored for exploring relationships between features like price, ratings, discounts, cashback, and hotel categories, ultimately enabling data-driven decision-making. |
|
|
|
|
|
**Get started by selecting a page from the sidebar!** |
|
|
""") |
|
|
|