File size: 190 Bytes
103a864
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import streamlit as st
import eda
import prediction

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

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