-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
20 lines (16 loc) · 845 Bytes
/
app.py
File metadata and controls
20 lines (16 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import streamlit as st
from multiapp import MultiApp
from apps import dataset_display,home_page,insight,predict_query,prediction_display # import your app modules here
app = MultiApp()
st.sidebar.markdown('# **Pharmaceutical Sales forcasting**')
st.sidebar.markdown("""
The aim of this project is to predict the sales six weeks ahead across all the stores of the Rossman Pharmaceutical company using Machine and Deep Learning. The different factors affecting the sales are: promotions, competitions, school-state holiday, seasonality, and locality.
""")
# Add all your application here
app.add_app("Home page", home_page.app)
app.add_app("Data sets", dataset_display.app)
app.add_app("Insights", insight.app)
app.add_app("Predicting page", predict_query.app)
app.add_app("Prediction display", prediction_display.app)
# The main app
app.run()