File size: 184 Bytes
1598b9a
 
 
 
 
 
 
 
 
d1ccda1
1
2
3
4
5
6
7
8
9
10
import streamlit as st
import eda 
import deployment

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

if page == 'EDA':
    eda.run()
else:
    deployment.main()