mnurbani's picture
Upload 7 files
1989cb1 verified
raw
history blame
No virus
197 Bytes
import streamlit as st
import eda
import prediction
page = st.sidebar.selectbox('Pilih Halaman : ', ('Dashboard', 'Prediction'))
if page == 'Dashboard' :
eda.run()
else:
prediction.run()