395dc13 a7b312f 395dc13 a7b312f 395dc13
1
2
3
4
5
6
7
8
9
10
import streamlit as st import eda import prediction page = st.sidebar.selectbox('Pilih Halaman : ', ('Dashboard', 'Prediction')) if page == 'Dashboard' : eda.run() else: prediction.run()