fadyabila's picture
submission
b5ecc2f
import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('Choose Page : ', ('EDA', 'Death Prediction'))
if navigation == 'EDA':
eda.run()
else:
prediction.run()