xyncz's picture
First Deploy
d8dd47d
raw
history blame contribute delete
187 Bytes
import streamlit as st
import eda
import prediction
page = st.sidebar.selectbox('Pilih Halaman: ', ('EDA', 'Prediction'))
if page == 'EDA':
eda.app()
else:
prediction.app()