SuryaR4421's picture
Upload 3 files
4f371bf verified
Raw
History Blame Contribute Delete
226 Bytes
import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('Choose Page', ('Prediction', 'EDA'))
if navigation == 'Prediction':
prediction.run()
elif navigation == 'EDA':
eda.run()