darly9991's picture
Upload 11 files
ae32b31 verified
raw
history blame contribute delete
181 Bytes
import streamlit as st
import eda
import prediction
page = st.sidebar.selectbox('Pilih halaman ', ('EDA', 'Prediction'))
if page == 'EDA':
eda.run()
else:
prediction.run()