File size: 187 Bytes
0855a17
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import streamlit as st
import eda1
import prediction

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

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