Destri2000's picture
Upload
843fde4 verified
raw
history blame
No virus
182 Bytes
import streamlit as st
import eda
import prediction
page = st.sidebar.selectbox('Pilih Halaman: ', ('EDA', 'Prediction'))
if page == 'EDA':
eda.run()
else:
prediction.run()