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() | |
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() | |