import streamlit as st import eda import prediction navigation = st.sidebar.selectbox('Pilih Halaman : ', ('eda','Predict Death')) if navigation == 'eda': eda.run() else: prediction.run()