naufalbudianto28's picture
Upload 9 files
1598b9a verified
raw
history blame
183 Bytes
import streamlit as st
import eda
import deployment
page = st.sidebar.selectbox('Pilih Halaman: ', ('EDA', 'Prediction'))
if page == 'EDA':
eda.run()
else:
deployment.run()