File size: 192 Bytes
4a965b7
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import streamlit as st
import Prediction
import eda

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

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