hammammahdy's picture
final commit
86b3cfb
raw
history blame contribute delete
233 Bytes
import streamlit as st
import prediction
import eda
page = st.sidebar.selectbox('Pilih Halaman :', ('Prediction', 'EDA'))
# if page == 'EDA':
# eda.run()
# else:
if page == 'Prediction':
prediction.run()
else:
eda.run()