mukhlishr's picture
Upload 6 files
e0f4c21
raw
history blame
No virus
205 Bytes
import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('pilih halaman : ', ('EDA', 'Predict Cancelation'))
if navigation == 'EDA':
eda.run()
else:
prediction.run()