hammammahdy's picture
first commit
72ca364
raw
history blame contribute delete
182 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()