File size: 536 Bytes
db5ee4c
 
 
9bd6125
 
db5ee4c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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()