Spaces:
Sleeping
Sleeping
File size: 191 Bytes
40db5de |
1 2 3 4 5 6 7 8 9 10 11 12 |
import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('Pilih Halaman', ('EDA', 'Predict'))
if navigation == 'EDA':
eda.run()
else:
prediction.run() |