File size: 205 Bytes
e0f4c21
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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()