darly9991's picture
Upload 35 files
103a864 verified
raw
history blame contribute delete
190 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()