P1G3_Hilal / app.py
hilalrd's picture
Upload 9 files
56d9941
raw
history blame
207 Bytes
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()