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

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

if navigation == 'Predict':
    prediction.run()
else:
    eda.run()