File size: 233 Bytes
c6d1ba2
 
86b3cfb
c6d1ba2
86b3cfb
c6d1ba2
 
 
86b3cfb
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import streamlit as st 
import prediction
import eda

page = st.sidebar.selectbox('Pilih Halaman :', ('Prediction', 'EDA'))
# if page == 'EDA':
#     eda.run()
# else:
if page == 'Prediction':
    prediction.run()
else:
    eda.run()