File size: 193 Bytes
0c7270f
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import eda
import prediction
import streamlit as st


page = st.sidebar.selectbox('Pilih Halaman: ', ('EDA', 'Prediction'))

if page == 'EDA':
    eda.run()
else:
    prediction.run()