File size: 197 Bytes
1989cb1
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import streamlit as st
import eda
import prediction

page = st.sidebar.selectbox('Pilih Halaman : ', ('Dashboard', 'Prediction'))

if page == 'Dashboard' : 
    eda.run()
else:
    prediction.run()