fadyabila's picture
Submission
6fc1ba0
raw
history blame contribute delete
No virus
209 Bytes
import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('Choose Page : ', ('EDA', 'Quantity Sales Forecasting'))
if navigation == 'EDA':
eda.run()
else:
prediction.run()