File size: 207 Bytes
56d9941
 
 
 
 
 
 
 
 
 
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 Heart Failure'))

if navigation == 'EDA':
    EDA.run()
else:
    prediction.run()