mnurbani's picture
first deploy
32f44b9
raw
history blame
185 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()