FerdiErs's picture
commit file
69d2e5c
raw
history blame contribute delete
199 Bytes
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()