mnurbani's picture
Upload 12 files
02794f7 verified
raw
history blame contribute delete
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()