File size: 196 Bytes
bbb165e
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import streamlit as st
import eda
import prediction

navigation =st.sidebar.radio('Pilih halaman : ', ('EDA','Prediction'),index=0)
if navigation == 'EDA':
    eda.run()
else:
    prediction.run()