File size: 199 Bytes
69d2e5c
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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()