Spaces:
Sleeping
Sleeping
import EDA_finpro | |
import Predict_finpro | |
from Introduction import introduction | |
import streamlit as st | |
st.set_page_config( | |
page_title="SalesBoost | Sales Forecast & Customer Insights", | |
layout="wide", | |
initial_sidebar_state="expanded" | |
) | |
# --- Halaman Navigasi --- | |
page = st.sidebar.selectbox('Pilih Halaman', ('π Introduction', 'π Predict', 'π EDA')) | |
# --- Routing berdasarkan pilihan user --- | |
if page == 'π EDA': | |
EDA_finpro.run() | |
elif page == 'π Predict': | |
Predict_finpro.run() | |
else: | |
introduction() |