File size: 201 Bytes
ccad2f4
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import streamlit as st 
import eda 
import predict

navigation = st.sidebar.selectbox('Pilih Halaman:', {'EDA':'eda','Prediction':'pred'})

if navigation == 'EDA':
    eda.run()
else:
    predict.run()